-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_traditional_clothes.sh
28 lines (19 loc) · 1.99 KB
/
main_traditional_clothes.sh
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
#!/bin/sh
# Random Forrest
python main_ml_exc3.py --path_to_config configs/RandomForrestClassifier.json --data "clothes" --extract_feature_with "SIFT" --random_state 42 --n_jobs 6 --n_words 100 --pixels 28
python main_ml_exc3.py --path_to_config configs/RandomForrestClassifier.json --data "clothes" --extract_feature_with "CH" --random_state 42 --n_jobs 6 --pixels 28
# Decision Trees
python main_ml_exc3.py --path_to_config configs/DecisionTreeClassifier.json --data "clothes" --extract_feature_with "SIFT" --random_state 42 --n_jobs 6 --n_words 100 --pixels 28
python main_ml_exc3.py --path_to_config configs/DecisionTreeClassifier.json --data "clothes" --extract_feature_with "CH" --random_state 42 --n_jobs 6 --pixels 28
# MLP
python main_ml_exc3.py --path_to_config configs/MLPClassifier.json --data "clothes" --extract_feature_with "SIFT" --random_state 42 --n_jobs 6 --n_words 100 --pixels 28
python main_ml_exc3.py --path_to_config configs/MLPClassifier.json --data "clothes" --extract_feature_with "CH" --random_state 42 --n_jobs 6 --pixels 28
# SVC
python main_ml_exc3.py --path_to_config configs/SVC.json --data "clothes" --extract_feature_with "SIFT" --random_state 42 --n_jobs 6 --n_words 100 --pixels 28
python main_ml_exc3.py --path_to_config configs/SVC.json --data "clothes" --extract_feature_with "CH" --random_state 42 --n_jobs 6 --pixels 28
# Other Models
python main_ml_exc3.py --path_to_config configs/OtherModels.json --data "clothes" --extract_feature_with "SIFT" --random_state 42 --n_jobs 6 --n_words 100 --pixels 28
python main_ml_exc3.py --path_to_config configs/OtherModels.json --data "clothes" --extract_feature_with "CH" --random_state 42 --n_jobs 6 --pixels 28
# All models
#python main_ml_exc3.py --path_to_config configs/AllModels.json --data "clothes" --extract_feature_with "SIFT" --random_state 42 --n_jobs 6 --n_words 100 --pixels 28
#python main_ml_exc3.py --path_to_config configs/AllModels.json --data "clothes" --extract_feature_with "CH" --random_state 42 --n_jobs 6 --pixels 28