keras-team / autokeras

AutoML library for deep learning
http://autokeras.com/
Apache License 2.0
9.1k stars 1.4k forks source link

Feature: output the each-time searched parameters not only the best parameters/models #1838

Open whubaichuan opened 1 year ago

whubaichuan commented 1 year ago

Feature Description

Code Example

AutoModel.fit(
    x=None,
    y=None,
    batch_size=32,
    epochs=None,
    callbacks=None,
    validation_split=0.2,
    validation_data=None,
    verbose=1,
    **kwargs
)

Returns

history: A Keras History object corresponding to the best model. Its History.history attribute is a record of training loss values and metrics values at successive epochs, as well as validation loss values and validation metrics values (if applicable).

Reason

Because I want to add the complexity/latency in the customized metrics to select the best model considering the accuracy and latency at the same time.

Solution

No idea