| .PHONY: test experiment oos clean | |
| test: | |
| pytest tests/ -v | |
| experiment: | |
| python run_experiment.py | |
| oos: | |
| python run_experiment.py | |
| clean: | |
| rm -rf data/raw/*.parquet reports/*.json __pycache__ src/**/__pycache__ | |
| .PHONY: test experiment oos clean | |
| test: | |
| pytest tests/ -v | |
| experiment: | |
| python run_experiment.py | |
| oos: | |
| python run_experiment.py | |
| clean: | |
| rm -rf data/raw/*.parquet reports/*.json __pycache__ src/**/__pycache__ | |