Closed braceal closed 3 years ago
Expose task level parameter: initial_epochs default to the same is epochs
initial_epochs
epochs
The logic can be added to the task level. It looks something like:
if cfg.stage_idx == 0: epochs = cfg.initial_epochs else: epochs = cfg.epochs
Then pass epochs to the training function.
Done.
Expose task level parameter:
initial_epochs
default to the same isepochs
The logic can be added to the task level. It looks something like:
Then pass
epochs
to the training function.