You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on file: flexgen/opt_config.py on func get_opt_config (~line 54)
name = name.split("/")[1]
if the model name is "foder_name/folder_name1/opt-125m" the code will return "folder_name1"
you have to change the code to:
name = name.split("/")[-1]
The text was updated successfully, but these errors were encountered:
on file: flexgen/opt_config.py on func get_opt_config (~line 54)
name = name.split("/")[1]
if the model name is "foder_name/folder_name1/opt-125m" the code will return "folder_name1"
you have to change the code to:
name = name.split("/")[-1]
The text was updated successfully, but these errors were encountered: