Micah P. Dombrowski / Nov 08 2019
FastAI Testing
Setup
The current base environment selection script would pick PyTorch...but FastAI wants a really old version thereof.
repo="https://github.com/fastai/fastai"
path=${repo#*//*/}
name=${path##*/}
reqfile="https://raw.githubusercontent.com/$path/master/environment.yml"
if $(wget -q $reqfile); then
conda env update -n root -f environment.yml
ldconfig
fi
pip install --upgrade git+https://github.com/nextjournal/jupyter_core \
fastai
496.2s
FastAI (Bash)
pip install --upgrade git+https://github.com/nextjournal/jupyter_core \
jupyter_client fastai
28.0s
FastAI (Bash)
du -hsx /
8.2s
FastAI (Bash)
Testing
Shift+Enter to run
Tests (Python)
FastAI