karimouda commited on
Commit
c509560
·
1 Parent(s): f81f755

remove precision

Browse files
Files changed (1) hide show
  1. src/submission/check_validity.py +1 -1
src/submission/check_validity.py CHANGED
@@ -88,7 +88,7 @@ def already_submitted_models(requested_models_dir: str) -> set[str]:
88
  continue
89
  with open(os.path.join(root, file), "r") as f:
90
  info = json.load(f)
91
- file_names.append(f"{info['model']}_{info['revision']}_{info['precision']}")
92
 
93
  # Select organisation
94
  if info["model"].count("/") == 0 or "submitted_time" not in info:
 
88
  continue
89
  with open(os.path.join(root, file), "r") as f:
90
  info = json.load(f)
91
+ file_names.append(f"{info['model']}")#_{info['revision']}_{info['precision']}
92
 
93
  # Select organisation
94
  if info["model"].count("/") == 0 or "submitted_time" not in info: