Deployed 93ddf55 with MkDocs version: 1.0.4

This commit is contained in:
William Falcon
2019-08-01 09:11:56 -05:00
parent 6be87ec596
commit 887a0cb091
18 changed files with 113 additions and 113 deletions
@@ -10,7 +10,7 @@
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="Documentation for Pytorch LightningModule, the researcher version of keras.">
<meta name="description" content="Documentation for PyTorch LightningModule, the researcher version of keras.">
@@ -38,7 +38,7 @@
<title>Lightning Module interface - Pytorch lightning Documentation</title>
<title>Lightning Module interface - PyTorch lightning Documentation</title>
@@ -88,7 +88,7 @@
<nav class="md-header-nav md-grid">
<div class="md-flex">
<div class="md-flex__cell md-flex__cell--shrink">
<a href="../.." title="Pytorch lightning Documentation" class="md-header-nav__button md-logo">
<a href="../.." title="PyTorch lightning Documentation" class="md-header-nav__button md-logo">
<i class="md-icon"></i>
@@ -101,7 +101,7 @@
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
<span class="md-header-nav__topic">
Pytorch lightning Documentation
PyTorch lightning Documentation
</span>
<span class="md-header-nav__topic">
@@ -180,12 +180,12 @@
<div class="md-sidebar__inner">
<nav class="md-nav md-nav--primary" data-md-level="0">
<label class="md-nav__title md-nav__title--site" for="__drawer">
<a href="../.." title="Pytorch lightning Documentation" class="md-nav__button md-logo">
<a href="../.." title="PyTorch lightning Documentation" class="md-nav__button md-logo">
<i class="md-icon"></i>
</a>
Pytorch lightning Documentation
PyTorch lightning Documentation
</label>
<div class="md-nav__source">
@@ -1231,7 +1231,7 @@ def tng_dataloader(self)
<p>Called by lightning during training loop. Make sure to use the @ptl.data_loader decorator, this ensures not calling this function until the data are needed.</p>
<h5 id="return_3">Return</h5>
<p>Pytorch DataLoader</p>
<p>PyTorch DataLoader</p>
<p><strong>Example</strong></p>
<pre><code class="python">@ptl.data_loader
def tng_dataloader(self):
@@ -1253,7 +1253,7 @@ def tng_dataloader(self)
<p>Called by lightning during validation loop. Make sure to use the @ptl.data_loader decorator, this ensures not calling this function until the data are needed.</p>
<h5 id="return_4">Return</h5>
<p>Pytorch DataLoader</p>
<p>PyTorch DataLoader</p>
<p><strong>Example</strong></p>
<pre><code class="python">@ptl.data_loader
def val_dataloader(self):
@@ -1276,7 +1276,7 @@ def test_dataloader(self)
<p>Called by lightning during test loop. Make sure to use the @ptl.data_loader decorator, this ensures not calling this function until the data are needed.</p>
<h5 id="return_5">Return</h5>
<p>Pytorch DataLoader</p>
<p>PyTorch DataLoader</p>
<p><strong>Example</strong></p>
<pre><code class="python">@ptl.data_loader
def test_dataloader(self):