You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 13, 2026. It is now read-only.
Right now
LitModulardoes not supportChainedScheduler. This is because aChainedSchedulerdoes not take an optimizer, but rather a list of schedulers:https://pytorch.org/docs/stable/generated/torch.optim.lr_scheduler.ChainedScheduler.html
LitModularassumeslr_scheduleris a callable that receives an Optimizer:MART/mart/models/modular.py
Line 122 in 41ad18e
My sense is the best way to fix this is to allow
lr_schedulerto be a list and we can create the underlyingChainedSchedulerwithinLitModular.