Skip to content

Commit

Permalink
Simple fix on extended configs
Browse files Browse the repository at this point in the history
  • Loading branch information
xuzhao9 committed Mar 22, 2024
1 parent 9d64293 commit 38bebdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion torchbenchmark/util/framework/timm/extended_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def is_extended_timm_models(model_name: str) -> bool:
return model_name in TIMM_MODELS

def list_extended_timm_models() -> List[str]:
return TIMM_MODELS.keys()
return list(TIMM_MODELS.keys())

# TODO - Figure out the reason of cold start memory spike
BATCH_SIZE_DIVISORS = {
Expand Down

0 comments on commit 38bebdc

Please sign in to comment.