The fast.ai deep learning library, lessons, and tutorials.
Copyright 2017 onwards, Jeremy Howard. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. A copy of the License is provided in the LICENSE file in this repository.
This is an alpha version. Most of the library is quite well tested since many students have used it to complete the Practical Deep Learning for Coders. course. However it hasn't been widely used yet outside of the course, so you may find some missing features or rough edges. If you're interested in using the library in your own projects, we're happy to help support any bug fixes or feature additions you need—please use http://forums.fast.ai to discuss.
Recommended installation approach is to clone fastai using git:
git clone https://github.com/fastai/fastai.gitThen, cd to the fastai folder and create the python environment:
cd fastai
conda env updateThis downloads all of the dependencies and then all you have to do is:
conda activate fastaiTo update everything at any time, cd to your repo and:
git pull
conda env updateTo install a cpu only environment instead:
cd fastai
conda env update -f environment-cpu.ymlYou can also install this library in the local environment using pip
pip install fastaiHowever this is not currently the recommended approach, since the library is being updated much more frequently than the pip release, fewer people are using and testing the pip version, and pip needs to compile many libraries from scratch (which can be slow).