Skip to content

Commit

Permalink
Don't pass benchmark as an export arg.
Browse files Browse the repository at this point in the history
  • Loading branch information
eagarvey-amd committed Jul 19, 2024
1 parent bbcc424 commit 1f19c7f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion models/turbine_models/custom_models/pipeline_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,8 @@ def __init__(
)
for submodel in self.map.keys():
for key, value in map_arguments.items():
self.map = merge_export_arg(self.map, value, key)
if key != "benchmark":
self.map = merge_export_arg(self.map, value, key)
for key, value in self.map[submodel].get("export_args", {}).items():
if key == "hf_model_name":
self.map[submodel]["keywords"].append(
Expand Down

0 comments on commit 1f19c7f

Please sign in to comment.