PROJECT IS DEPRECATED You should use neptune-client instead.
See neptune-lib documentation site
neptune account api-token get
from neptunelib.session import Session
session = Session(api_token='YOUR_NEPTUNE_API_TOKEN')
you can also create an environment variable NEPTUNE_API_TOKEN
:
export NEPTUNE_API_TOKEN=YOUR_NEPTUNE_API_TOKEN`
and simpy go
from neptunelib.session import Session
session = Session()
project = session.get_projects('neptune-ml')['neptune-ml/Salt-Detection']
leaderboard_df = project.get_leaderboard()
experiments = project.get_experiments(id=['SAL-2342'])
experiment = experiments[0]
- get numeric channel values dataframe.
Lets take the
network_1 epoch_val iou loss
channel for example (long name I know).
channel_df = experiment.get_numeric_channels_values('network_1 epoch_val iou loss')
- get hardware utilization dataframe
channel_df = experiment.get_hardware_utilization()
- python versions
2.7/3.5/3.6
are supported neptune-cli
pip install neptune-cli
pip install neptune-lib
If you get stuck, don't worry we are here to help. The best order of communication is:
- neptune-lib readthecocs
- neptune community forum
- neptune community slack (join by going here)
- Github issues
If you see something that you don't like you are more than welcome to contribute! There are many options:
- Participate in discussions on neptune community forum or neptune community slack
- Submit a feature request or a bug here, on Github
- Submit a pull request that deals with an open feature request or bug
- Spread a word about neptune-lib in your community