neptune-notebooks
Version:
Neptune Labs extension for Jupyter
44 lines (29 loc) • 1.27 kB
Markdown
This extension brings an integration between Neptune and JupyterLab.
It allows you to upload notebooks to Neptune, checkout previously uploaded
notebooks, and track experiments and metrics directly from the Jupyter
interface. Neptune will version the notebook automatically once an experiment
is started. Go to [Neptune](https://neptune.ai) to compare different notebooks
and checkpoints in a diff-like format.
For a Jupyter Notebook extension please see
[](https://pypi.org/project/neptune-notebooks/).
```bash
jupyter labextension install neptune-notebooks
```
Login to Neptune application to get your private API token and copy it to
the extension to configure the connection.
See [Configuration](https://docs.neptune.ai/notebooks/configuration.html) for
further information.
Run this code in notebook to create an experiment in Neptune. The source of the
notebook will be uploaded and associated with the very experiment.
```
import neptune
neptune.init()
neptune.create_experiment()
neptune.send_metric('some_metric', 0.5)
```
For online docs please go to [Neptune notebook docs](https://docs.neptune.ai/notebooks/introduction.html)