Hi,
your submissions fail at the ingestion step with the error "ModuleNotFoundError: No module named 'tqdm'".
You can find this information in ingestion error log.
We currently don't have tqdm in the docker. You can perhaps replace it with a for-loop?
Your latest submission failed with:
Traceback (most recent call last):
File "/tmp/codalab/tmp979wxcvk/run/ingestion_program/ingestion.py", line 217, in <module>
measure_val = complexity(model, training_data)
File "/tmp/codalab/tmp979wxcvk/run/program/complexity.py", line 22, in complexity
classifierModel = load_model('./model_tested_34_14.h5')
File "/usr/local/lib/python3.6/dist-packages/tensorflow/python/keras/saving/save.py", line 189, in load_model
loader_impl.parse_saved_model(filepath)
File "/usr/local/lib/python3.6/dist-packages/tensorflow/python/saved_model/loader_impl.py", line 113, in parse_saved_model
constants.SAVED_MODEL_FILENAME_PB))
OSError: SavedModel file does not exist at: ./model_tested_34_14.h5/{saved_model.pbtxt|saved_model.pb}
If you are trying to access files in your directory, please refer to the bottom of https://competitions.codalab.org/competitions/25301#learn_the_details-details
The python program is not run from your directory so relatively pathing won't work. This should show you how to access the absolute path to your submission.