Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-15-2023 08:38 AM
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')