maltesilber

Results 2 comments of maltesilber

Solved it using the LamdaLR scheduler. First define a function that corresponds to your lr schedule: ``` def step_decay(base_lr, step_size, gamma): def fn(step): return base_lr*gamma**(step//step_size) return fn ``` And configure...

So to check overfitting, it is sufficient to check if the mAP is decreasing and don't look at the validation loss at all?