You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a model that I generated using AutoKeras and I want to replicate the model so that I can construct it with keras tuner to do further hyperparameter tuning. But I am running into issues replicating the model. The model summary of the autokeras model is:
My training data is a dataframe that's converted to string type with both numerical and categorical data. Since the output is softmax i used LabelBinarizer to convert the target classes.
To make sure the model was replicated properly, i used keras.clone_model. The optimizer and loss function follows from the original model. I was able to find the values using model.optimizer and model.loss to create a copy of the model and try training it myself. But when I tried to train it myself the accuracy does not improve despite hitting 500 epochs.
Is there something that I am missing when it comes to training the model from scratch?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have a model that I generated using AutoKeras and I want to replicate the model so that I can construct it with keras tuner to do further hyperparameter tuning. But I am running into issues replicating the model. The model summary of the autokeras model is:
Layer config
My training data is a dataframe that's converted to string type with both numerical and categorical data. Since the output is softmax i used
LabelBinarizer
to convert the target classes.To make sure the model was replicated properly, i used
keras.clone_model
. The optimizer and loss function follows from the original model. I was able to find the values usingmodel.optimizer
andmodel.loss
to create a copy of the model and try training it myself. But when I tried to train it myself the accuracy does not improve despite hitting 500 epochs.Is there something that I am missing when it comes to training the model from scratch?
Beta Was this translation helpful? Give feedback.
All reactions