JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 61
  • Score
    100M100P100Q76573F
  • License Apache-2.0

Neptune Labs extension for Jupyter

Package Exports

  • neptune-notebooks

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (neptune-notebooks) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Neptune extension for JupyterLab

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 to compare different notebooks and checkpoints in a diff-like format.

For a Jupyter Notebook extension please see Neptune nbextension.

Installation

jupyter labextension install neptune-notebooks

Configuration

Login to Neptune application to get your private API token and copy it to the extension to configure the connection.

See Configuration for further information.

Example code

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)

Documentation

For online docs please go to Neptune notebook docs