djstrong commited on
Commit
ebb9458
1 Parent(s): 5a52bb4

show gated

Browse files
Files changed (1) hide show
  1. src/submission/check_validity.py +2 -0
src/submission/check_validity.py CHANGED
@@ -60,6 +60,8 @@ def is_model_on_hub(model_name: str, revision: str, token: str = None, trust_rem
60
  return False, f"raised an OSError: {e}", None
61
 
62
  except Exception as e:
 
 
63
  return False, f"was not found on hub! {e}", None
64
 
65
 
 
60
  return False, f"raised an OSError: {e}", None
61
 
62
  except Exception as e:
63
+ print(model_name)
64
+ print(e)
65
  return False, f"was not found on hub! {e}", None
66
 
67