Add "epochs" option to parser of 'basic_examples/lightning_module_template.py'
Thanks to 'basic_examples/lightning_module_template.py', I could build my deep learning model. Some beginners like me might build their model from this basic template. However, there are no options to manipulate epochs. I just thought that what people use often should be included in the basic template, so I uploaded my issue.
I suggest that the basic template includes "epoch" option in the basic template.
Add "epoch" options to parser of 'basic_examples/lightning_module_template.py'
parser.add_argument('--epochs', default=10, type=int, metavar='N',
help='number of total epochs to run')
trainer = pl.Trainer(max_epochs=hparams.epochs)
I am really enjoying PytorchLightning framework. Thanks 馃槃
Hey, thanks for your contribution! Great first issue!
Possibly linked to #916 and would cover the alternative the op suggests.
yeah, it can be solved a part of that one, could you check on the follow-up PR? :]
Most helpful comment
Possibly linked to #916 and would cover the alternative the op suggests.