Replies: 1 comment 1 reply
-
just follow the tutorial here
to save: to load: to use after loading |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
auto-Keras prediction is very good in my data sets.
I trained (tuned) my models for several days and save the best model using
save the best performing model to file
model.save(f'model_auto_keras{max_trials}.h5')
the file is saved without any error.
when I am trying to load the saved file. using

model = tf.keras.models.load_model(model_path)
I am unable to load the model saying Value Error unknown layer; Custom > MultiCategoryEncoding .........
I searched a lot but can't find the MultiCategoryEncoding layer.
can anyone please help/share links with me to solve this problem?
Beta Was this translation helpful? Give feedback.
All reactions