-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (28 loc) · 808 Bytes
/
Copy pathMakefile
File metadata and controls
32 lines (28 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
.PHONY: run-eml-smoke run-eml summarize-eml clean-eml-artifacts
.PHONY: run-eml-smoke run-eml clean-eml-artifacts
run-eml-smoke:
python scripts/run_eml_experiment.py \
--x-max 20000 \
--modulus 360 \
--log-grid-points 64 \
--window 15 \
--depth 3 \
--restarts 2 \
--steps 200 \
--data-dir data_smoke \
--runs-dir runs_smoke
run-eml:
python scripts/run_eml_experiment.py \
--x-max 1000000 \
--modulus 360 \
--log-grid-points 256 \
--window 31 \
--depth 3 \
--restarts 10 \
--steps 4000 \
--data-dir data \
--runs-dir runs
summarize-eml:
python scripts/summarize_eml_run.py
clean-eml-artifacts:
python -c "import shutil,pathlib; [shutil.rmtree(p, ignore_errors=True) for p in ['data_smoke','runs_smoke','data','runs'] if pathlib.Path(p).exists()]; print('cleaned')"