thepanlab / NACHOS

Pipeline to process images with CNN using json as input
MIT License
2 stars 0 forks source link

epochs in outer loop #7

Closed pcallec closed 1 year ago

pcallec commented 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],
        # ....
    },
pcallec commented 1 year ago

It's been added