Last active
March 18, 2020 15:47
-
-
Save williamFalcon/79f1295f42ac4aa1c0d721f01dc81967 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pytorch_lightning.loggers import Tensorboard, NeptuneLogger | |
neptune = NeptuneLogger() | |
tensorboard = Tensorboard() | |
model = ... | |
trainer = Trainer(logger=[neptune, tensorboard]) | |
trainer.fit(model |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment