Kumaran
Databricks Employee
Databricks Employee

Hi @manupmanoos,

Thank you for posting your question in the Databricks community.

Below is an example of how to load the same saved model back to a Databricks notebook

 

from keras.models import load_model
 
model = load_model('/dbfs/models/model.h5')