17 lines
303 B
Makefile
17 lines
303 B
Makefile
city_distances.csv: lint generate_data.py
|
|
bash -c 'time python generate_data.py'
|
|
|
|
lint:
|
|
isort --profile=black .
|
|
black .
|
|
flake8 --max-line-length=88 .
|
|
|
|
train: lint train.py
|
|
bash -c 'time python train.py'
|
|
|
|
eval: lint eval.py
|
|
bash -c 'time python eval.py'
|
|
|
|
clean:
|
|
rm -rf output/
|
|
rm -rf checkpoints/
|