24 lines
531 B
Markdown
24 lines
531 B
Markdown
|
# Auto-accept : part of the Accept & Work series
|
||
|
|
||
|
## Install:
|
||
|
|
||
|
```bash
|
||
|
virtualenv --system-site-packages -p python3 venv
|
||
|
source venv/bin/activate
|
||
|
./download_dataset.sh
|
||
|
python tools.py create
|
||
|
```
|
||
|
|
||
|
To use a custom dataset version (defaults to the smaller validation 2017 set)
|
||
|
|
||
|
```bash
|
||
|
python tools.py create --annotations FILENAME.json --db dataset/NAME.db
|
||
|
```
|
||
|
|
||
|
|
||
|
|
||
|
## Server
|
||
|
|
||
|
Python server. Based on work for the [COCO dataset interface](https://git.rubenvandeven.com/plottingdata/coco) for [Plotting Data](http://plottingd.at/a).
|
||
|
|