How to know use learning rate finder? #8539
Unanswered
talhaanwarch
asked this question in
Lightning Trainer API: Trainer, LightningModule, LightningDataModule
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
model = OurModel()
lr_monitor = LearningRateMonitor(logging_interval='epoch')
logger = TensorBoardLogger("unet", name="logs")
checkpoint_callback = ModelCheckpoint(monitor='val_loss',dirpath='unet',
filename='{epoch}-{val_loss:.2f}-{val_dice:.2f}')
I throw this error
TypeError: __init__() missing 1 required positional argument: 'learning_rate'
Beta Was this translation helpful? Give feedback.
All reactions