Neptune API
The Neptune Scale API consists of two Python packages:
- neptune-scale, for logging metadata to Neptune.
- neptune-fetcher, for fetching logged metadata from Neptune.
Setup
For installation instructions, see Get started.
Usage
To import Neptune in your model-training code:
from neptune_scale import Run
You can then work with Run
objects to create or resume experiments:
run = Run(...)
Error handling
If an unrecoverable error is encountered, you can terminate the failed run in an error callback without interrupting your training.
For details, see terminate()