All Projects → fastai → Fastai

fastai / Fastai

Licence: apache-2.0
The fastai deep learning library

Programming Languages

python
139335 projects - #7 most used programming language
Jupyter Notebook
11667 projects
CSS
56736 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to Fastai

Fastbook
The fastai book, published as Jupyter Notebooks
Stars: ✭ 13,998 (-35.55%)
Mutual labels:  jupyter-notebook, notebooks, fastai
Fastpages
An easy to use blogging platform, with enhanced support for Jupyter Notebooks.
Stars: ✭ 2,888 (-86.7%)
Mutual labels:  jupyter-notebook, fastai
Keras Acgan
Auxiliary Classifier Generative Adversarial Networks in Keras
Stars: ✭ 196 (-99.1%)
Mutual labels:  jupyter-notebook, gpu
Artline
A Deep Learning based project for creating line art portraits.
Stars: ✭ 3,061 (-85.91%)
Mutual labels:  jupyter-notebook, colab
Optical Flow Filter
A real time optical flow algorithm implemented on GPU
Stars: ✭ 146 (-99.33%)
Mutual labels:  jupyter-notebook, gpu
Ml Workspace
🛠 All-in-one web-based IDE specialized for machine learning and data science.
Stars: ✭ 2,337 (-89.24%)
Mutual labels:  jupyter-notebook, gpu
fastai-visual-guide
Notebooks for Fastai Viusal Guide
Stars: ✭ 25 (-99.88%)
Mutual labels:  colab, fastai
Ds bowl 2018
Kaggle Data Science Bowl 2018
Stars: ✭ 116 (-99.47%)
Mutual labels:  jupyter-notebook, gpu
Pyprobml
Python code for "Machine learning: a probabilistic perspective" (2nd edition)
Stars: ✭ 4,197 (-80.68%)
Mutual labels:  jupyter-notebook, colab
Pycaret
An open-source, low-code machine learning library in Python
Stars: ✭ 4,594 (-78.85%)
Mutual labels:  jupyter-notebook, gpu
Gdrl
Grokking Deep Reinforcement Learning
Stars: ✭ 304 (-98.6%)
Mutual labels:  jupyter-notebook, gpu
Benchmarks
Comparison tools
Stars: ✭ 139 (-99.36%)
Mutual labels:  jupyter-notebook, gpu
Ipyexperiments
jupyter/ipython experiment containers for GPU and general RAM re-use
Stars: ✭ 128 (-99.41%)
Mutual labels:  jupyter-notebook, gpu
Trainyourownyolo
Train a state-of-the-art yolov3 object detector from scratch!
Stars: ✭ 399 (-98.16%)
Mutual labels:  jupyter-notebook, gpu
Cuxfilter
GPU accelerated cross filtering with cuDF.
Stars: ✭ 128 (-99.41%)
Mutual labels:  jupyter-notebook, gpu
Nbdev
Create delightful python projects using Jupyter Notebooks
Stars: ✭ 3,061 (-85.91%)
Mutual labels:  jupyter-notebook, fastai
Pytorch
PyTorch tutorials A to Z
Stars: ✭ 87 (-99.6%)
Mutual labels:  jupyter-notebook, gpu
Kmeans pytorch
kmeans using PyTorch
Stars: ✭ 98 (-99.55%)
Mutual labels:  jupyter-notebook, gpu
Adaptnlp
An easy to use Natural Language Processing library and framework for predicting, training, fine-tuning, and serving up state-of-the-art NLP models.
Stars: ✭ 278 (-98.72%)
Mutual labels:  jupyter-notebook, gpu
Adanet
Fast and flexible AutoML with learning guarantees.
Stars: ✭ 3,340 (-84.62%)
Mutual labels:  jupyter-notebook, gpu

Welcome to fastai

fastai simplifies training fast and accurate neural nets using modern best practices

CI PyPI Conda (channel only) Build fastai images docs

Installing

You can use fastai without any installation by using Google Colab. In fact, every page of this documentation is also available as an interactive notebook - click "Open in colab" at the top of any page to open it (be sure to change the Colab runtime to "GPU" to have it run fast!) See the fast.ai documentation on Using Colab for more information.

You can install fastai on your own machines with conda (highly recommended), as long as you're running Linux or Windows (NB: Mac is not supported). For Windows, please see the "Running on Windows" for important notes.

If you're using miniconda (recommended) then run (note that if you replace conda with mamba the install process will be much faster and more reliable):

conda install -c fastchan fastai

...or if you're using Anaconda then run:

conda install -c fastchan fastai anaconda

To install with pip, use: pip install fastai. If you install with pip, you should install PyTorch first by following the PyTorch installation instructions.

If you plan to develop fastai yourself, or want to be on the cutting edge, you can use an editable install (if you do this, you should also use an editable install of fastcore to go with it.) First install PyTorch, and then:

git clone https://github.com/fastai/fastai
pip install -e "fastai[dev]"

Learning fastai

The best way to get started with fastai (and deep learning) is to read the book, and complete the free course.

To see what's possible with fastai, take a look at the Quick Start, which shows how to use around 5 lines of code to build an image classifier, an image segmentation model, a text sentiment model, a recommendation system, and a tabular model. For each of the applications, the code is much the same.

Read through the Tutorials to learn how to train your own models on your own datasets. Use the navigation sidebar to look through the fastai documentation. Every class, function, and method is documented here.

To learn about the design and motivation of the library, read the peer reviewed paper.

About fastai

fastai is a deep learning library which provides practitioners with high-level components that can quickly and easily provide state-of-the-art results in standard deep learning domains, and provides researchers with low-level components that can be mixed and matched to build new approaches. It aims to do both things without substantial compromises in ease of use, flexibility, or performance. This is possible thanks to a carefully layered architecture, which expresses common underlying patterns of many deep learning and data processing techniques in terms of decoupled abstractions. These abstractions can be expressed concisely and clearly by leveraging the dynamism of the underlying Python language and the flexibility of the PyTorch library. fastai includes:

  • A new type dispatch system for Python along with a semantic type hierarchy for tensors
  • A GPU-optimized computer vision library which can be extended in pure Python
  • An optimizer which refactors out the common functionality of modern optimizers into two basic pieces, allowing optimization algorithms to be implemented in 4–5 lines of code
  • A novel 2-way callback system that can access any part of the data, model, or optimizer and change it at any point during training
  • A new data block API
  • And much more...

fastai is organized around two main design goals: to be approachable and rapidly productive, while also being deeply hackable and configurable. It is built on top of a hierarchy of lower-level APIs which provide composable building blocks. This way, a user wanting to rewrite part of the high-level API or add particular behavior to suit their needs does not have to learn how to use the lowest level.

Layered API

Migrating from other libraries

It's very easy to migrate from plain PyTorch, Ignite, or any other PyTorch-based library, or even to use fastai in conjunction with other libraries. Generally, you'll be able to use all your existing data processing code, but will be able to reduce the amount of code you require for training, and more easily take advantage of modern best practices. Here are migration guides from some popular libraries to help you on your way:

Windows Support

When installing with mamba or conda replace -c fastchan in the installation with -c pytorch -c nvidia -c fastai, since fastchan is not currently supported on Windows.

Due to python multiprocessing issues on Jupyter and Windows, num_workers of Dataloader is reset to 0 automatically to avoid Jupyter hanging. This makes tasks such as computer vision in Jupyter on Windows many times slower than on Linux. This limitation doesn't exist if you use fastai from a script.

See this example to fully leverage the fastai API on Windows.

Tests

To run the tests in parallel, launch:

nbdev_test_nbs or make test

For all the tests to pass, you'll need to install the following optional dependencies:

pip install "sentencepiece<0.1.90" wandb tensorboard albumentations pydicom opencv-python scikit-image pyarrow kornia \
    catalyst captum neptune-cli

Tests are written using nbdev, for example see the documentation for test_eq.

Contributing

After you clone this repository, please run nbdev_install_git_hooks in your terminal. This sets up git hooks, which clean up the notebooks to remove the extraneous stuff stored in the notebooks (e.g. which cells you ran) which causes unnecessary merge conflicts.

Before submitting a PR, check that the local library and notebooks match. The script nbdev_diff_nbs can let you know if there is a difference between the local library and the notebooks.

  • If you made a change to the notebooks in one of the exported cells, you can export it to the library with nbdev_build_lib or make fastai.
  • If you made a change to the library, you can export it back to the notebooks with nbdev_update_lib.

Docker Containers

For those interested in official docker containers for this project, they can be found here.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].