Is there any way I can download trained model in the form of '.h5' file with keras recipy
kishanakbari21 opened this issue · 3 comments
kishanakbari21 commented
Is there any way I can download trained model in the form of '.h5' file with keras recipy
AlexanderYukhanov commented
Hi, you need to modify the training script to generate the model in required format.
kishanakbari21 commented
Generally I use,
model.save(path_to_save_model)
But with Azure computing I am completely new. So Can you brief about any method where I can save my model in ".h5" format? With that I also want to save tensorboard files. Is it possible?
Thanks.
AlexanderYukhanov commented
Azure doesn't manage models, you need to use framework specific functionality to generate models. I think ttps://machinelearningmastery.com/save-load-keras-deep-learning-models can be useful for you