neptune-fastai


Nameneptune-fastai JSON
Version 1.1.1 PyPI version JSON
download
home_pagehttps://neptune.ai/
SummaryNeptune.ai fast.ai integration library
upload_time2023-07-28 06:56:40
maintainer
docs_urlNone
authorneptune.ai
requires_python>=3.7,<4.0
licenseApache-2.0
keywords mlops ml experiment tracking ml model registry ml model store ml metadata store
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # 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](https://docs.neptune.ai/logging/what_you_can_log)

![image](https://user-images.githubusercontent.com/97611089/160639808-bd381089-66c8-4ed5-a895-0c018b378e0a.png)
*Example dashboard with train-valid metrics and selected parameters*


## Resources

* [Documentation](https://docs.neptune.ai/integrations/fastai)
* [Code example on GitHub](https://github.com/neptune-ai/examples/tree/main/integrations-and-supported-tools/fastai/scripts)
* [Example dashboard in the Neptune app](https://app.neptune.ai/o/common/org/fastai-integration/runs/details?viewId=standard-view&detailsTab=dashboard&dashboardId=fastai-dashboard-1f456716-f509-4432-b8b3-a7f5242703b6&shortId=FAS-1895&type=run)
* [Run example in Google Colab](https://colab.research.google.com/github/neptune-ai/examples/blob/main/integrations-and-supported-tools/fastai/notebooks/Neptune_fastai.ipynb)

## Example

On the command line:

```
pip install neptune-fastai
```

In Python:

```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](https://docs.neptune.ai/getting_help)
* 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


            

Raw data

            {
    "_id": null,
    "home_page": "https://neptune.ai/",
    "name": "neptune-fastai",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7,<4.0",
    "maintainer_email": "",
    "keywords": "MLOps,ML Experiment Tracking,ML Model Registry,ML Model Store,ML Metadata Store",
    "author": "neptune.ai",
    "author_email": "contact@neptune.ai",
    "download_url": "https://files.pythonhosted.org/packages/ae/15/46740e2d6ff5db8d8676f35c0e4cdb07b0c88e454c894c4a0a6ddbf4801a/neptune_fastai-1.1.1.tar.gz",
    "platform": null,
    "description": "# Neptune + fastai integration\n\nExperiment tracking, model registry, data versioning, and live model monitoring for fastai trained models.\n\n## What will you get with this integration?\n\n* Log, display, organize, and compare ML experiments in a single place\n* Version, store, manage, and query trained models, and model building metadata\n* Record and monitor model training, evaluation, or production runs live\n\n## What will be logged to Neptune?\n\n* Hyperparameters\n* Losses and metrics\n* Training code (Python scripts or Jupyter notebooks) and Git information\n* Dataset version\n* Model configuration, architecture, and weights\n* [Other metadata](https://docs.neptune.ai/logging/what_you_can_log)\n\n![image](https://user-images.githubusercontent.com/97611089/160639808-bd381089-66c8-4ed5-a895-0c018b378e0a.png)\n*Example dashboard with train-valid metrics and selected parameters*\n\n\n## Resources\n\n* [Documentation](https://docs.neptune.ai/integrations/fastai)\n* [Code example on GitHub](https://github.com/neptune-ai/examples/tree/main/integrations-and-supported-tools/fastai/scripts)\n* [Example dashboard in the Neptune app](https://app.neptune.ai/o/common/org/fastai-integration/runs/details?viewId=standard-view&detailsTab=dashboard&dashboardId=fastai-dashboard-1f456716-f509-4432-b8b3-a7f5242703b6&shortId=FAS-1895&type=run)\n* [Run example in Google Colab](https://colab.research.google.com/github/neptune-ai/examples/blob/main/integrations-and-supported-tools/fastai/notebooks/Neptune_fastai.ipynb)\n\n## Example\n\nOn the command line:\n\n```\npip install neptune-fastai\n```\n\nIn Python:\n\n```python\nimport neptune\n\n# Start a run\nrun = neptune.init_run(\n    project=\"common/fastai-integration\",\n    api_token=neptune.ANONYMOUS_API_TOKEN,\n)\n\n# Log a single training phase\nlearn = learner(...)\nlearn.fit(..., cbs = NeptuneCallback(run=run))\n\n# Log all training phases of the learner\nlearn = cnn_learner(..., cbs=NeptuneCallback(run=run))\nlearn.fit(...)\nlearn.fit(...)\n\n# Stop the run\nrun.stop()\n```\n\n## Support\n\nIf you got stuck or simply want to talk to us, here are your options:\n\n* Check our [FAQ page](https://docs.neptune.ai/getting_help)\n* You can submit bug reports, feature requests, or contributions directly to the repository.\n* 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),\n* You can just shoot us an email at support@neptune.ai\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "Neptune.ai fast.ai integration library",
    "version": "1.1.1",
    "project_urls": {
        "Documentation": "https://docs.neptune.ai/integrations-and-supported-tools/model-training/fastai",
        "Homepage": "https://neptune.ai/",
        "Repository": "https://github.com/neptune-ai/neptune-fastai",
        "Tracker": "https://github.com/neptune-ai/neptune-fastai/issues"
    },
    "split_keywords": [
        "mlops",
        "ml experiment tracking",
        "ml model registry",
        "ml model store",
        "ml metadata store"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5e25a879efd07f3b243717280cdfaeb58069c5e024f37d51fcef83b45b223e4",
                "md5": "819850321a2f4810a30bd175b6b37088",
                "sha256": "63b81ea6b9736a263434e3e3490ee89a1f483d6da374ec73a48d342355179be9"
            },
            "downloads": -1,
            "filename": "neptune_fastai-1.1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "819850321a2f4810a30bd175b6b37088",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7,<4.0",
            "size": 12702,
            "upload_time": "2023-07-28T06:56:39",
            "upload_time_iso_8601": "2023-07-28T06:56:39.025943Z",
            "url": "https://files.pythonhosted.org/packages/d5/e2/5a879efd07f3b243717280cdfaeb58069c5e024f37d51fcef83b45b223e4/neptune_fastai-1.1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae1546740e2d6ff5db8d8676f35c0e4cdb07b0c88e454c894c4a0a6ddbf4801a",
                "md5": "707b7c8a3e581a427c980af02c20ea5a",
                "sha256": "782d89a99e22fca53c2c485af5ea40bfbbe79020e7887b3bd56f7f3078a5d526"
            },
            "downloads": -1,
            "filename": "neptune_fastai-1.1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "707b7c8a3e581a427c980af02c20ea5a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7,<4.0",
            "size": 11313,
            "upload_time": "2023-07-28T06:56:40",
            "upload_time_iso_8601": "2023-07-28T06:56:40.383389Z",
            "url": "https://files.pythonhosted.org/packages/ae/15/46740e2d6ff5db8d8676f35c0e4cdb07b0c88e454c894c4a0a6ddbf4801a/neptune_fastai-1.1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-28 06:56:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "neptune-ai",
    "github_project": "neptune-fastai",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "neptune-fastai"
}
        
Elapsed time: 0.10376s