microsoftarchive / BatchAI

Repo for publishing code Samples and CLI samples for BatchAI service
MIT License
125 stars 62 forks source link

Is there any way I can download trained model in the form of '.h5' file with keras recipy #46

Closed kishanakbari21 closed 6 years ago

AlexanderYukhanov commented 6 years ago

Hi, you need to modify the training script to generate the model in required format.

kishanakbari21 commented 6 years ago

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 6 years ago

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