简体   繁体   中英

Talos, syntax to select best_model

I'm running a toy model for learning, on Ubuntu 21.10, in a conda environment that comprises python 3.74, keras 2.4.3 and talos 1.0, among many other packages. I've run a talos scan using this code:

jam1 = talos.Scan(data,
                  labels[0,],
                  model = DLAt,
                  params = ParamsJam1,
                  experiment_name = "DL2Outputs"
                  )

However I've tried everything I can find but can not find correct syntax to select the best model using talos.best_model.

bm = talos.best_model(metric='loss', asc=False)

just gets this error.

AttributeError: module 'talos' has no attribute 'best_model'

Is this not the correct function to achieve this?

The best model isn't saved in the package, it's saved in the Scan object:

bm.best_model(metric='loss', asc=False)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM