Spaces:
Sleeping
Sleeping
File size: 513 Bytes
af61511 | 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 | .PHONY: setup download features train app clean
# Run full pipeline (download → features → train)
setup:
python setup.py
# Individual steps
download:
python scripts/make_dataset.py
features:
python scripts/build_features.py
train:
python scripts/model.py
# Run the app locally
app:
python app.py
# Remove all generated data and model files
clean:
rm -rf data/raw/*.npy data/processed/*.npy data/outputs/* models/*.pkl models/*.pth
# Install dependencies
install:
pip install -r requirements.txt
|