Python client¶
Note
Python client is the main way of logging things to Neptune and there are way more materials on how to use it. Go here to read them.
To log things to Neptune you just need to install neptune-client and add a snippet to your code. See how to do that in 3 steps.
Step 1 Install Neptune client¶
pip install neptune-client
Step 2 Add logging snippet to your scripts¶
import neptune neptune.init(api_token='', # use your api token project_qualified_name='') # use your project name neptune.create_experiment('my-experiment') neptune.log_metric('accuracy', 0.92)
Step 3 Run your experiment normally¶
python my_script.py