Update README.md
This commit is contained in:
parent
8a6680937f
commit
306ca02813
17
README.md
17
README.md
|
@ -85,6 +85,23 @@ def validation_end(self, outputs):
|
||||||
return tqdm_dic
|
return tqdm_dic
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## TensorboardX
|
||||||
|
All lightning experiments log in a nicely structured folder structure compatible with tensorboardX. Simply run the following command to view your experiments.
|
||||||
|
|
||||||
|
Simply note the path you set for the Experiment
|
||||||
|
``` {.python}
|
||||||
|
from test_tube import Experiment
|
||||||
|
from pytorch-lightning import Trainer
|
||||||
|
|
||||||
|
exp = Experiment(save_dir='/some/path')
|
||||||
|
trainer = Trainer(experiment=exp)
|
||||||
|
...
|
||||||
|
```
|
||||||
|
|
||||||
|
```bash
|
||||||
|
tensorboard --logdir /some/path
|
||||||
|
```
|
||||||
|
|
||||||
## Lightning gives you options to control the following:
|
## Lightning gives you options to control the following:
|
||||||
|
|
||||||
###### Checkpointing
|
###### Checkpointing
|
||||||
|
|
Loading…
Reference in New Issue