Spaces:
Sleeping
Sleeping
Commit ·
3863a95
1
Parent(s): f6186c1
Recognition
Browse files
app/Hackathon_setup/decision_scaler.sav
ADDED
|
Binary file (719 Bytes). View file
|
|
|
app/Hackathon_setup/decision_tree_model.sav
CHANGED
|
Binary files a/app/Hackathon_setup/decision_tree_model.sav and b/app/Hackathon_setup/decision_tree_model.sav differ
|
|
|
app/Hackathon_setup/face_recognition.py
CHANGED
|
@@ -48,11 +48,11 @@ CLASS_NAMES = ['Person1', 'Person2', 'Person3'] # Updated to match training data
|
|
| 48 |
# --- Model Filenames ---
|
| 49 |
SIAMESE_MODEL_PATH = current_path + '/siamese_model.t7'
|
| 50 |
KNN_CLASSIFIER_PATH = current_path + '/decision_tree_model.sav'
|
| 51 |
-
SCALER_PATH = current_path + '/
|
| 52 |
|
| 53 |
# Compatible model paths for Hugging Face
|
| 54 |
-
KNN_CLASSIFIER_COMPATIBLE_PATH = current_path + '/
|
| 55 |
-
SCALER_COMPATIBLE_PATH = current_path + '/
|
| 56 |
|
| 57 |
# Pickle model paths (most compatible)
|
| 58 |
KNN_CLASSIFIER_PKL_PATH = current_path + '/decision_tree_model.pkl'
|
|
|
|
| 48 |
# --- Model Filenames ---
|
| 49 |
SIAMESE_MODEL_PATH = current_path + '/siamese_model.t7'
|
| 50 |
KNN_CLASSIFIER_PATH = current_path + '/decision_tree_model.sav'
|
| 51 |
+
SCALER_PATH = current_path + '/decision_scaler.sav'
|
| 52 |
|
| 53 |
# Compatible model paths for Hugging Face
|
| 54 |
+
KNN_CLASSIFIER_COMPATIBLE_PATH = current_path + '/decision_tree_model.sav'
|
| 55 |
+
SCALER_COMPATIBLE_PATH = current_path + '/decision_scaler.sav'
|
| 56 |
|
| 57 |
# Pickle model paths (most compatible)
|
| 58 |
KNN_CLASSIFIER_PKL_PATH = current_path + '/decision_tree_model.pkl'
|