SGDR question in Fast.ai V1

Hi, I noticed that the cycle_len parameter in .fit method is gone.

Does that means that I need to implement SGDR using the Callback myself like this example here:http://docs.fast.ai/callbacks.general_sched.html#class-generalscheduler

Thanks

If you want to use it, yes. The default is now 1cycle with fit_one_cycle.

Alright thanks!