Athena75
Results
1
comments of
Athena75
a little hack that I found here : https://stackoverflow.com/questions/67017306/unable-to-save-keras-model-in-databricks save locally in `/tmp` `model.save('/tmp/model.h5')` then copy the model to DBFS `dbutils.fs.cp("file:/tmp/model.h5", "dbfs:/tmp/model.h5") display(dbutils.fs.ls("/tmp/model.h5"))` copy file from DBFS and load it...