Closed pcallec closed 1 year ago
The number of epochs in outer loop shouldn't be unique. It should be dependent in the test subject. Therefore, it is necessary to change parameters epochs from a value to a list of integers.
"hyperparameters": { #... "epochs": 10, # .... },
to
"hyperparameters": { #... "epochs": [10,8,9], # .... },
It's been added
The number of epochs in outer loop shouldn't be unique. It should be dependent in the test subject. Therefore, it is necessary to change parameters epochs from a value to a list of integers.
to