You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
303 B
17 lines
303 B
2 years ago
|
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/
|