mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-09 11:32:07 +08:00
Deployed 93ddf55 with MkDocs version: 1.0.4
This commit is contained in:
@@ -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>Pytorch lightning Documentation</title>
|
||||
<title>PyTorch lightning Documentation</title>
|
||||
|
||||
|
||||
|
||||
@@ -84,7 +84,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>
|
||||
|
||||
@@ -97,7 +97,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">
|
||||
|
||||
@@ -176,12 +176,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">
|
||||
|
||||
@@ -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):
|
||||
|
||||
@@ -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>Methods - Pytorch lightning Documentation</title>
|
||||
<title>Methods - 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">
|
||||
@@ -596,7 +596,7 @@ y_hat = pretrained_model(x)
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>weights_path</td>
|
||||
<td>Path to a pytorch checkpoint</td>
|
||||
<td>Path to a PyTorch checkpoint</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>tags_csv</td>
|
||||
|
||||
@@ -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>Properties - Pytorch lightning Documentation</title>
|
||||
<title>Properties - 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">
|
||||
|
||||
@@ -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>Checkpointing - Pytorch lightning Documentation</title>
|
||||
<title>Checkpointing - 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">
|
||||
|
||||
@@ -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>Distributed training - Pytorch lightning Documentation</title>
|
||||
<title>Distributed training - 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">
|
||||
|
||||
@@ -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>Logging - Pytorch lightning Documentation</title>
|
||||
<title>Logging - 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">
|
||||
@@ -675,7 +675,7 @@ Trainer(experiment=exp)
|
||||
|
||||
<hr />
|
||||
<h3 id="tensorboard-support">Tensorboard support</h3>
|
||||
<p>The experiment object is a strict subclass of Pytorch SummaryWriter. However, this class
|
||||
<p>The experiment object is a strict subclass of PyTorch SummaryWriter. However, this class
|
||||
also snapshots every detail about the experiment (data folder paths, code, hyperparams),
|
||||
and allows you to visualize it using tensorboard.</p>
|
||||
<pre><code class="python">from test_tube import Experiment, HyperOptArgumentParser
|
||||
|
||||
@@ -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>SLURM Managed Cluster - Pytorch lightning Documentation</title>
|
||||
<title>SLURM Managed Cluster - 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">
|
||||
|
||||
@@ -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>Training Loop - Pytorch lightning Documentation</title>
|
||||
<title>Training Loop - 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">
|
||||
|
||||
@@ -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>Validation loop - Pytorch lightning Documentation</title>
|
||||
<title>Validation loop - 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">
|
||||
|
||||
@@ -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>Debugging - Pytorch lightning Documentation</title>
|
||||
<title>Debugging - 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">
|
||||
|
||||
@@ -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>Hooks - Pytorch lightning Documentation</title>
|
||||
<title>Hooks - 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">
|
||||
@@ -639,7 +639,7 @@
|
||||
<p>There are cases when you might want to do something different at different parts of the training/validation loop.
|
||||
To enable a hook, simply override the method in your LightningModule and the trainer will call it at the correct time.</p>
|
||||
<p><strong>Contributing</strong> If there's a hook you'd like to add, simply: <br />
|
||||
1. Fork PytorchLightning. <br />
|
||||
1. Fork PyTorchLightning. <br />
|
||||
2. Add the hook <a href="https://github.com/williamFalcon/pytorch-lightning/blob/master/pytorch_lightning/root_module/hooks.py">here</a>. <br />
|
||||
3. Add the correct place in the <a href="https://github.com/williamFalcon/pytorch-lightning/blob/master/pytorch_lightning/models/trainer.py">Trainer</a> where it should be called. </p>
|
||||
<hr />
|
||||
|
||||
+7
-7
@@ -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>Trainer - Pytorch lightning Documentation</title>
|
||||
<title>Trainer - 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">
|
||||
@@ -549,7 +549,7 @@ trainer.fit(model)
|
||||
<li><a href="https://williamfalcon.github.io/pytorch-lightning/Trainer/Training%20Loop/#gradient-clipping">Gradient Clipping</a></li>
|
||||
<li><a href="hooks">Hooks</a></li>
|
||||
<li><a href="https://williamfalcon.github.io/pytorch-lightning/LightningModule/RequiredTrainerInterface/#configure_optimizers">Learning rate scheduling</a></li>
|
||||
<li><a href="https://williamfalcon.github.io/pytorch-lightning/Pytorch-Lightning/LightningModule/#configure_optimizers">Use multiple optimizers (like GANs)</a></li>
|
||||
<li><a href="https://williamfalcon.github.io/pytorch-lightning/PyTorch-Lightning/LightningModule/#configure_optimizers">Use multiple optimizers (like GANs)</a></li>
|
||||
<li><a href="https://williamfalcon.github.io/pytorch-lightning/Trainer/Training%20Loop/#set-how-much-of-the-training-set-to-check">Set how much of the training set to check (1-100%)</a></li>
|
||||
</ul>
|
||||
<p><strong>Validation loop</strong> </p>
|
||||
|
||||
@@ -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>Examples - Pytorch lightning Documentation</title>
|
||||
<title>Examples - 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">
|
||||
|
||||
+7
-7
@@ -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>Pytorch lightning Documentation</title>
|
||||
<title>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">
|
||||
@@ -728,7 +728,7 @@ one could be a seq-2-seq model, both (optionally) ran by the same trainer file.<
|
||||
<li><a href="https://williamfalcon.github.io/pytorch-lightning/Trainer/Training%20Loop/#gradient-clipping">Gradient Clipping</a></li>
|
||||
<li><a href="https://williamfalcon.github.io/pytorch-lightning/Trainer/hooks/">Hooks</a></li>
|
||||
<li><a href="https://williamfalcon.github.io/pytorch-lightning/LightningModule/RequiredTrainerInterface/#configure_optimizers">Learning rate scheduling</a></li>
|
||||
<li><a href="https://williamfalcon.github.io/pytorch-lightning/Pytorch-Lightning/LightningModule/#configure_optimizers">Use multiple optimizers (like GANs)</a></li>
|
||||
<li><a href="https://williamfalcon.github.io/pytorch-lightning/PyTorch-Lightning/LightningModule/#configure_optimizers">Use multiple optimizers (like GANs)</a></li>
|
||||
<li><a href="https://williamfalcon.github.io/pytorch-lightning/Trainer/Training%20Loop/#set-how-much-of-the-training-set-to-check">Set how much of the training set to check (1-100%)</a></li>
|
||||
</ul>
|
||||
<h6 id="validation-loop">Validation loop</h6>
|
||||
|
||||
File diff suppressed because one or more lines are too long
+14
-14
@@ -2,72 +2,72 @@
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-07-28</lastmod>
|
||||
<lastmod>2019-08-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-07-28</lastmod>
|
||||
<lastmod>2019-08-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-07-28</lastmod>
|
||||
<lastmod>2019-08-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-07-28</lastmod>
|
||||
<lastmod>2019-08-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-07-28</lastmod>
|
||||
<lastmod>2019-08-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-07-28</lastmod>
|
||||
<lastmod>2019-08-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-07-28</lastmod>
|
||||
<lastmod>2019-08-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-07-28</lastmod>
|
||||
<lastmod>2019-08-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-07-28</lastmod>
|
||||
<lastmod>2019-08-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-07-28</lastmod>
|
||||
<lastmod>2019-08-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-07-28</lastmod>
|
||||
<lastmod>2019-08-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-07-28</lastmod>
|
||||
<lastmod>2019-08-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-07-28</lastmod>
|
||||
<lastmod>2019-08-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2019-07-28</lastmod>
|
||||
<lastmod>2019-08-01</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
</urlset>
|
||||
Binary file not shown.
Reference in New Issue
Block a user