Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 708 Bytes

jupyter_notebook_ui.md

File metadata and controls

40 lines (27 loc) · 708 Bytes

Run Aim UI on Jupyter Notebook

Start your notebook with the following code to install Aim:

!pip install aim

Next, initialize a new run and save some hyperparameters:

from aim import Run

run = Run()

run['hparams'] = {
    'learning_rate': 0.001,
    'batch_size': 32,
}

.. note:: Do not forget to call run.finalize() once the training is over.

After tracking runs with Run, run the following commands in the notebook to run the Aim UI:

  1. Load Aim extension for notebooks:
%load_ext aim
  1. Run %aim up to open Aim UI in the notebook:
%aim up