diff --git a/code/start.sh b/code/start.sh new file mode 100644 index 0000000..5e52603 --- /dev/null +++ b/code/start.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +# Process raw data +python src/data/process_dataset.py data/raw/ data/processed/ + +# Build features +python src/features/build_features.py data/processed/processed_data.csv data/features/feature_matrix.npz + +# Train model +python src/models/train_model.py data/features/feature_matrix.npz models/svm_model.pkl