nni/ts/jupyter_extension
dependabot[bot] ea3f70370d
Bump loader-utils from 1.4.0 to 1.4.1 in /ts/jupyter_extension (#5214)
2022-11-11 17:12:14 +08:00
..
src jupyter_ext: Added reminding information when there isn't nni kicked (#4188) 2021-09-23 08:53:01 +08:00
.gitignore JupyterLab extension (#3954) 2021-07-23 11:32:12 +08:00
README.md Add development README for JupyterLab extension (#4269) 2021-11-05 15:00:35 +08:00
package.json lock version to remove es5-ext (#4734) 2022-04-07 09:32:23 +08:00
tsconfig.json JupyterLab extension (#3954) 2021-07-23 11:32:12 +08:00
yarn.lock Bump loader-utils from 1.4.0 to 1.4.1 in /ts/jupyter_extension (#5214) 2022-11-11 17:12:14 +08:00

README.md

NNI is under development to support JupyterLab. You can install this extension to preview the feature.

Currently you can view NNI web UI inside JupyterLab.

Install

To preview the extension, you need to have nni and jupyterlab installed at first:

$ pip install nni jupyterlab

Then run following command to register extension:

$ nnictl jupyter-extension install

It does not have prompt message. Exit without error means success.

Run

For now, the extension does not support creating experiment, so you have to create one with nnictl:

$ nnictl create --config <experiment-directory>/config.yml

And you need to launch JupyterLab:

$ jupyter lab --ip=0.0.0.0

Following JupyterLab's guide to open its web page, you should find an NNI icon. Click the icon and it will open NNI web UI for your running experiment.

Uninstall

To uninstall (or more accurately, unregister) the extension, run following command:

$ nnictl jupyter-extension uninstall

Known Issues

The JupyterLab extension is under development and there are many issues need to fix before public announcement:

  • Clicking a link in experiment management page will open it outside JupyterLab. To fix it will need modify in web UI.
  • Downloading log file might not work.
  • Post requests (update experiment config) might not work.