2019-08-01 14:11:26 +00:00
|
|
|
# PyTorch-Lightning Tests
|
2019-10-23 10:13:00 +00:00
|
|
|
Most PL tests train a full MNIST model under various trainer conditions (ddp, ddp2+amp, etc...).
|
|
|
|
This provides testing for most combinations of important settings.
|
2019-10-23 10:13:31 +00:00
|
|
|
The tests expect the model to perform to a reasonable degree of testing accuracy to pass.
|
2019-07-24 14:09:47 +00:00
|
|
|
|
|
|
|
## Running tests
|
2019-07-25 01:31:43 +00:00
|
|
|
The automatic travis tests ONLY run CPU-based tests. Although these cover most of the use cases,
|
|
|
|
run on a 2-GPU machine to validate the full test-suite.
|
|
|
|
|
2019-07-24 14:09:47 +00:00
|
|
|
|
|
|
|
To run all tests do the following:
|
|
|
|
```bash
|
2020-01-20 19:50:31 +00:00
|
|
|
git clone https://github.com/PyTorchLightning/pytorch-lightning
|
2019-07-24 14:09:47 +00:00
|
|
|
cd pytorch-lightning
|
|
|
|
|
|
|
|
# install module locally
|
|
|
|
pip install -e .
|
|
|
|
|
|
|
|
# install dev deps
|
2020-02-25 14:45:34 +00:00
|
|
|
pip install -r tests/requirements.txt
|
2019-07-24 14:09:47 +00:00
|
|
|
|
|
|
|
# run tests
|
2019-08-07 12:32:32 +00:00
|
|
|
py.test -v
|
2019-07-24 14:09:47 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
To test models that require GPU make sure to run the above command on a GPU machine.
|
|
|
|
The GPU machine must have:
|
|
|
|
1. At least 2 GPUs.
|
|
|
|
2. [NVIDIA-apex](https://github.com/NVIDIA/apex#linux) installed.
|
|
|
|
|
|
|
|
|
2019-07-25 01:35:38 +00:00
|
|
|
## Running Coverage
|
2019-08-06 10:57:31 +00:00
|
|
|
Make sure to run coverage on a GPU machine with at least 2 GPUs and NVIDIA apex installed.
|
2019-07-25 01:35:38 +00:00
|
|
|
|
|
|
|
```bash
|
|
|
|
cd pytorch-lightning
|
|
|
|
|
2020-02-25 14:45:34 +00:00
|
|
|
# generate coverage (coverage is also installed as part of dev dependencies under tests/requirements.txt)
|
2019-07-25 01:35:38 +00:00
|
|
|
pip install coverage
|
2019-08-07 12:32:32 +00:00
|
|
|
coverage run --source pytorch_lightning -m py.test pytorch_lightning tests examples -v --doctest-modules
|
2019-07-25 01:35:38 +00:00
|
|
|
|
|
|
|
# print coverage stats
|
2019-08-07 12:32:32 +00:00
|
|
|
coverage report -m
|
|
|
|
|
|
|
|
# exporting resulys
|
|
|
|
coverage xml
|
|
|
|
codecov -t 17327163-8cca-4a5d-86c8-ca5f2ef700bc -v
|
2019-07-25 01:35:38 +00:00
|
|
|
```
|
|
|
|
|
2019-07-24 14:09:47 +00:00
|
|
|
|