neptune-fastai 1.1.1


pip install neptune-fastai

  Latest version

Released: Jul 28, 2023


Meta
Author: neptune.ai
Requires Python: >=3.7,<4.0

Classifiers

Development Status
  • 4 - Beta

Environment
  • Console

Intended Audience
  • Developers
  • Science/Research

License
  • OSI Approved :: Apache Software License

Natural Language
  • English

Operating System
  • MacOS
  • Microsoft :: Windows
  • POSIX
  • Unix

Programming Language
  • Python :: 3
  • Python :: 3.7
  • Python :: 3.8
  • Python :: 3.9
  • Python :: 3.10
  • Python :: 3.11
  • Python :: Implementation :: CPython

Topic
  • Scientific/Engineering :: Artificial Intelligence
  • Software Development :: Libraries :: Python Modules

Neptune + fastai integration

Experiment tracking, model registry, data versioning, and live model monitoring for fastai trained models.

What will you get with this integration?

  • Log, display, organize, and compare ML experiments in a single place
  • Version, store, manage, and query trained models, and model building metadata
  • Record and monitor model training, evaluation, or production runs live

What will be logged to Neptune?

  • Hyperparameters
  • Losses and metrics
  • Training code (Python scripts or Jupyter notebooks) and Git information
  • Dataset version
  • Model configuration, architecture, and weights
  • Other metadata

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:

  • Check our FAQ page
  • You can submit bug reports, feature requests, or contributions directly to the repository.
  • Chat! When in the Neptune application click on the blue message icon in the bottom-right corner and send a message. A real person will talk to you ASAP (typically very ASAP),
  • You can just shoot us an email at support@neptune.ai

Wheel compatibility matrix

Platform Python 3
any

Files in release

Extras:
Dependencies:
fastai (>=2.4)
importlib-metadata