[EXP] Alterntive Undamage Case Data #100

Merged
nuluh merged 12 commits from feature/99-exp-alternative-undamage-case-data into dev 2025-07-24 11:09:05 +00:00
Showing only changes of commit c2df42cc2b - Show all commits

View File

@@ -1,6 +1,9 @@
from src.ml.model_selection import inference_model from src.ml.model_selection import inference_model
model = {"SVM": "D:/thesis/models/sensor1/SVM.joblib", model = {"SVM": "D:/thesis/models/sensor1/SVM.joblib",
"SVM with PCA": "D:/thesis/models/sensor1/SVM with StandardScaler and PCA.joblib"} "SVM with PCA": "D:/thesis/models/sensor1/SVM with StandardScaler and PCA.joblib",
"XGBoost": "D:/thesis/models/sensor1/XGBoost.joblib"}
inference_model(model["SVM"], "D:/thesis/data/dataset_A/zzzAD2.TXT", column_question=1) # inference_model(model["SVM"], "D:/thesis/data/dataset_A/zzzAD10.TXT", column_question=10)
# inference_model(model["SVM with PCA"], "D:/thesis/data/dataset_A/zzzAD10.TXT", column_question=10)
inference_model(model["XGBoost"], "D:/thesis/data/dataset_A/zzzAD30.TXT", column_question=30)