@@ -86,14 +86,21 @@ Required python packages are specified in [requirements.txt](https://github.com/
pip install -r requirements.txt
```
**Make sure the tests pass:**
**Specify the current Python path:**
```shell
# In Linux/Mac
export PYTHONPATH=$PYTHONPATH:.
# In windows
set PYTHONPATH=%PYTHONPATH%;.
```
export PYTHONPATH=`pwd`:$PYTHONPATH
**Make sure the tests pass:**
```shell
python ppdet/modeling/tests/test_architectures.py
```
## Datasets
PaddleDetection includes support for [COCO](http://cocodataset.org) and [Pascal VOC](http://host.robots.ox.ac.uk/pascal/VOC/) by default, please follow these instructions to set up the dataset.