neptune-ai / neptune-fastai

Experiment tracking for fastai. 🧩 Log, organize, visualize and compare model metrics, hyperparameters, dataset versions, and more.
https://docs.neptune.ai/integrations/fastai/
Apache License 2.0
4 stars 0 forks source link
callback dashboard dl fastai management metrics models monitoring tracker training visualization

Neptune + fastai integration

Experiment tracking for fastai-trained models.

What will you get with this integration?

What will be logged to Neptune?

image Example dashboard with train-valid metrics and selected parameters

Resources

Example

On the command line:

pip install neptune-fastai

In Python:

import neptune

# Start a run
run = neptune.init_run(
    project="common/fastai-integration",
    api_token=neptune.ANONYMOUS_API_TOKEN,
)

# Log a single training phase
learn = learner(...)
learn.fit(..., cbs = NeptuneCallback(run=run))

# Log all training phases of the learner
learn = cnn_learner(..., cbs=NeptuneCallback(run=run))
learn.fit(...)
learn.fit(...)

# Stop the run
run.stop()

Support

If you got stuck or simply want to talk to us, here are your options: