ModelMatrix / matrix /scripts /reproduce_all.sh
Akshay4506's picture
Fix deployment entry point and merge requirements
c4ff02d
raw
history blame contribute delete
345 Bytes
#!/bin/bash
set -e
echo "Running all experiments..."
cd code
python -m runners.run_experiment --dataset analcatdata_authorship.csv --model random-forest
python -m runners.run_experiment --dataset analcatdata_authorship.csv --model xgboost
python -m runners.run_experiment --dataset analcatdata_authorship.csv --model catboost
echo "Done ✅"