I trained a model in using Keras on Azure databricks (notebook). I would like to be able to save this model on an .h5 or .pkl file and download it to my local machine.
When I train the model locally I use the following to save the file inside a directory called models, but obviously this path does not exist on Azure.
model.save('models/cnn_w2v.h5')
I am new to Azure so any help will be greatly appreciated