File size: 222 Bytes
b9e10f2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
.PHONY: install scrape process upload clean
install:
pip install -r requirements.txt
scrape:
python scraper.py
process:
python process.py
upload:
python process.py --upload True
clean:
rm -rf dataset/*
|