From 639a4cbd250e74217bf86f1f122db54151dd9652 Mon Sep 17 00:00:00 2001 From: William Falcon Date: Thu, 13 Aug 2020 19:06:55 -0400 Subject: [PATCH] autoplay (#2968) --- docs/source/callbacks.rst | 2 +- docs/source/introduction_guide.rst | 2 +- docs/source/lightning-module.rst | 2 +- docs/source/new-project.rst | 8 ++++---- pytorch_lightning/trainer/__init__.py | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/source/callbacks.rst b/docs/source/callbacks.rst index d4396ad31c..e7f9153f2a 100644 --- a/docs/source/callbacks.rst +++ b/docs/source/callbacks.rst @@ -19,7 +19,7 @@ Here's the flow of how the callback hooks are executed: .. raw:: html - + An overall Lightning system should have: diff --git a/docs/source/introduction_guide.rst b/docs/source/introduction_guide.rst index 18ef72b711..e13fcccfe2 100644 --- a/docs/source/introduction_guide.rst +++ b/docs/source/introduction_guide.rst @@ -15,7 +15,7 @@ code to work with Lightning. .. raw:: html - + | diff --git a/docs/source/lightning-module.rst b/docs/source/lightning-module.rst index 4987ae9970..b6a69dcb0b 100644 --- a/docs/source/lightning-module.rst +++ b/docs/source/lightning-module.rst @@ -16,7 +16,7 @@ A :class:`~LightningModule` organizes your PyTorch code into 5 sections .. raw:: html - + | diff --git a/docs/source/new-project.rst b/docs/source/new-project.rst index a81d05f7d0..ccbfc1d724 100644 --- a/docs/source/new-project.rst +++ b/docs/source/new-project.rst @@ -20,7 +20,7 @@ To illustrate, here's the typical PyTorch project structure organized in a Light .. raw:: html - + ---------- @@ -68,7 +68,7 @@ well across any accelerator. .. raw:: html - + | @@ -125,7 +125,7 @@ via hooks that are called on your LightningModule. .. raw:: html - + ---------------- @@ -342,7 +342,7 @@ Here's an illustration that explains how to refactor your code into reusable Dat .. raw:: html - + | diff --git a/pytorch_lightning/trainer/__init__.py b/pytorch_lightning/trainer/__init__.py index db53aa994d..21d4ed437a 100644 --- a/pytorch_lightning/trainer/__init__.py +++ b/pytorch_lightning/trainer/__init__.py @@ -12,7 +12,7 @@ the Trainer automates everything else. .. raw:: html - |