autokeras
autokeras copied to clipboard
Support model.history for the exported model
Keras Sequential model returns classes from
model.classes_
and history from
model.history.history['accuracy']
model.history.history['val_accuracy']
model.history.history['loss']
model.history.history['val_loss']
After export, is it possible to get these two
ExportedautoKeras_model = autoKeras_model.export_model()
ExportedautoKeras_model.classes_.tolist()
Thanks
I am not sure. What do you see currently as the output of these?
In StructuredDataClassifier model which is ExportedautoKeras_model does not support ExportedautoKeras_model.classes_ and does not have history, where as Keras model supports both, is it possible to get that in StructuredDataClassifier model
Also keen for this, can't see it added anywhere as of yet