Hi, we got a few problems with subissions: we don't understand if for a "base" submission we have to change model.py and in case we have to change it how to do it
We loaded our saved model in the submission folder (all the files that keras created) and tried to submit it but it didn't worked
You have to change line 7 of model.py:
self.model = tf.keras.models.load_model(os.path.join(path, 'YOUR_FOLDER'))
Instead of YOUR_FOLDER you have to put the name of the folder which contains all the model stuff
Posted by: SamueleMariani @ Nov. 11, 2022, 10:57 a.m.Actually I did it yet, we have a folder called as the one in the starting kit and we loaded all the files created from the keras model.save in that folder
So we have a zip fil with that folder, metadata and model.py