Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/FluxML/FastAI.jl
Repository of best practices for deep learning in Julia, inspired by fastai
https://github.com/FluxML/FastAI.jl
deep-learning fastai julia
Last synced: 8 days ago
JSON representation
Repository of best practices for deep learning in Julia, inspired by fastai
- Host: GitHub
- URL: https://github.com/FluxML/FastAI.jl
- Owner: FluxML
- License: mit
- Created: 2020-05-20T23:06:49.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-09T00:22:23.000Z (about 2 months ago)
- Last Synced: 2024-10-13T19:21:20.079Z (21 days ago)
- Topics: deep-learning, fastai, julia
- Language: Julia
- Homepage: https://fluxml.ai/FastAI.jl
- Size: 1.15 GB
- Stars: 588
- Watchers: 25
- Forks: 51
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-fastai - FastAI.jl - a version of the fastai libary for the Julia language (Github Repositories<a name="github"></a> / Other libraries)
README
# FastAI.jl
![](fastai-julia-logo.png)
FastAI.jl is a Julia library for training state-of-the art deep learning models.
From loading datasets and creating data preprocessing pipelines to training, FastAI.jl takes the boilerplate out of deep learning projects. It equips you with reusable components for every part of your project while remaining customizable at every layer. FastAI.jl comes with support for common computer vision and tabular data learning tasks, with more to come.
FastAI.jl's high-level workflows combine functionality from many packages in the ecosystem, most notably [Flux.jl](https://github.com/FluxML/Flux.jl), [FluxTraining.jl](https://github.com/FluxML/FluxTraining.jl), [DataAugmentation.jl](https://github.com/lorenzoh/DataAugmentation.jl) and [MLUtils.jl](https://github.com/JuliaML/MLUtils.jl).
See our [**documentation**](https://fluxml.ai/FastAI.jl) to find out more.
## Example
As an example, here is how to train an image classification model:
```julia
using FastAI, FastVision
data, blocks = load(datarecipes()["imagenette2-320"])
task = ImageClassificationSingle(blocks)
learner = tasklearner(task, data, callbacks=[ToGPU()])
fitonecycle!(learner, 10)
showoutputs(task, learner)
```## Setup
To get started, install FastAI.jl and domain packages using the Julia package manager:
```julia
using Pkg
pkg"add FastAI FastVision"
```or try it out with this [Google Colab template](https://colab.research.google.com/gist/lorenzoh/2fdc91f9e42a15e633861c640c68e5e8).
## Getting started
To dive in, you may be interested in
- an [overview of the high-level API](https://fluxml.ai/FastAI.jl/dev/FastAI@dev/doc/docs/introduction.md.html),
- seeing some [example learning tasks](https://fluxml.ai/FastAI.jl/dev/FastAI@dev/doc/docs/notebooks/quickstart.ipynb.html),
- finding out [how you can search for and find datasets and other functionality](https://fluxml.ai/FastAI.jl/dev/FastAI@dev/doc/docs/discovery.md.html); or
- [our contributor guide](CONTRIBUTING.md)## Get in touch
You can get in touch here on GitHub or on the JuliaLang Zulip in the [`#ml-contributors` channel](https://julialang.zulipchat.com/#narrow/stream/237432-ml-contributers).
---
## AcknowledgementsFastAI.jl takes inspiration from the fantastic [fastai](http://docs.fast.ai) library for Python. Jeremy Howard and the fastai team kindly approved this project and its use of the fastai name.
This project also builds on many packages in the Julia ecosystem.