mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-08 17:11:08 +08:00
* CI: split tests-examples * tests without template * comment depends * CircleCI typo * add doctest * update test req. * CI tests * setup macOS * longer train * lover pred acc * fix model * rename default model * lower tests acc * typo * imports * fix test optimizer * update calls * fix Win * lower Drone image * fix call * pytorch image * fix test * add dev image * add dev image * update image * drone volume * lint * update test notes * rename tests/models >> tests/base * group models * conftest * optim imports * typos * fix import * fix tests * install AMP * tests * fix import
10 lines
224 B
Bash
10 lines
224 B
Bash
#!/usr/bin/env bash
|
|
|
|
ROOT=$PWD
|
|
git clone https://github.com/NVIDIA/apex
|
|
cd apex
|
|
pip install -v --no-cache-dir --global-option="--cpp_ext" --global-option="--cuda_ext" ./
|
|
pip install -v --no-cache-dir ./
|
|
cd $ROOT
|
|
rm -rf apex
|