Skip to content

Commit

Permalink
Minor fixes in NeptuneLogger docs
Browse files Browse the repository at this point in the history
  • Loading branch information
pitercl committed May 7, 2020
1 parent 2cade0a commit 8d0236f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pytorch_lightning/loggers/neptune.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class NeptuneLogger(LightningLoggerBase):
The Neptune logger can be used in the online mode or offline (silent) mode.
To log experiment data in online mode, :class:`NeptuneLogger` requries an API key.
In offline mode, Neptune will log to a local directory.
In offline mode, the logger does not connect to Neptune.
**ONLINE MODE**
Expand Down Expand Up @@ -83,7 +83,7 @@ class NeptuneLogger(LightningLoggerBase):
... self.logger.experiment.log_artifact('model_checkpoint.pt', ...)
... self.logger.experiment.whatever_neptune_supports(...)
If you want to log objects after the training is finished use ``close_after_train=False``:
If you want to log objects after the training is finished use ``close_after_fit=False``:
.. code-block:: python
Expand Down Expand Up @@ -135,7 +135,7 @@ class NeptuneLogger(LightningLoggerBase):
"namespace/project_name" for example "tom/minst-classification".
If ``None``, the value of `NEPTUNE_PROJECT` environment variable will be taken.
You need to create the project in https://neptune.ai first.
offline_mode: Optional default False. If ``True`` no logs will be sent
offline_mode: Optional default ``False``. If ``True`` no logs will be sent
to Neptune. Usually used for debug purposes.
close_after_fit: Optional default ``True``. If ``False`` the experiment
will not be closed after training and additional metrics,
Expand Down

0 comments on commit 8d0236f

Please sign in to comment.