Using AutoKeras is simple:
clf = ImageClassifier(verbose=True)
clf.fit(x_train, y_train, time_limit=12 * 60 * 60)
clf.final_fit(x_train, y_train, x_test, y_test, retrain=True)
y = clf.evaluate(x_test, y_test)
But what's the function of final_fit? Isn't the model already trained in fit? If I don't use final_fit, what is the consequence? Does evaluate gives a different value?
Another question: how can I get some information about the searching-process: number of models found, epochs used for each model, ... and some other statistics? Is the console output the only way?