[Docs] hparams is not a dictionary for now (#1026)

Co-authored-by: peterAsapp <31011756+peterAsapp@users.noreply.github.com>
This commit is contained in:
Peter Yu
2020-03-03 11:09:58 -05:00
committed by GitHub
co-authored by peterAsapp
parent 4aaa7d28ea
commit 2ac236ebfe
+1 -1
View File
@@ -1114,7 +1114,7 @@ class LightningModule(ABC, GradInformation, ModelIO, ModelHooks):
Primary way of loading model from a checkpoint. When Lightning saves a checkpoint
it stores the hyperparameters in the checkpoint if you initialized your LightningModule
with an argument called `hparams` which is a Namespace (output of using argparse
to parse command line arguments) or dictionary of hyperparameters.
to parse command line arguments).
Example
-------