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.
- Anaconda, manages Python environment and dependencies
- Download project:
git clone https://github.com/fastai/fastai.git
- Move into root folder:
cd fastai
- Set up Python environment:
conda env update
- Activate Python environment:
conda activate fastai
- If this fails, use instead:
source activate fastai
- If this fails, use instead:
You can also install this library in the local environment using pip
pip install fastai
However 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).
Use this if you do not have an NVidia GPU. Note you are encouraged to use Paperspace to access a GPU in the cloud by following this guide.
conda env update -f environment-cpu.yml
To update everything at any time:
- Update code:
git pull
- Update dependencies:
conda env update
Before submitting a pull request, run the unit tests:
- Activate Python environment:
conda activate fastai
- If this fails, use instead:
source activate fastai
- If this fails, use instead:
- Run tests:
python -m pytest tests
- Activate Python environment:
conda activate fastai
- If this fails, use instead:
source activate fastai
- If this fails, use instead:
python -m pytest tests/[file_name.py]