update Docs [links & formatting] (#769)

* wip

* wip

* debug imports
docs formatting

* WIP

* formatting

* fix setup
This commit is contained in:
Jirka Borovec
2020-02-09 17:39:10 -05:00
committed by GitHub
parent bfbb4a6279
commit 5130841bef
23 changed files with 79 additions and 78 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ from argparse import ArgumentParser
import numpy as np
import torch
import pytorch_lightning as pl
from pl_examples.basic_examples.lightning_module_template import LightningTemplateModel
from pytorch_lightning import Trainer
SEED = 2334
torch.manual_seed(SEED)
@@ -28,7 +28,7 @@ def main(hparams):
# ------------------------
# 2 INIT TRAINER
# ------------------------
trainer = Trainer()
trainer = pl.Trainer()
# ------------------------
# 3 START TRAINING