Tabular Classification
Keras
Scikit-learn
English
tensorflow
random-forest
cnn
clustering
nlp
computer-vision
recommendation-system
time-series
streamlit
Instructions to use OKTAYBBS/DataScientst-models with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Keras
How to use OKTAYBBS/DataScientst-models with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://OKTAYBBS/DataScientst-models") - Scikit-learn
How to use OKTAYBBS/DataScientst-models with Scikit-learn:
from huggingface_hub import hf_hub_download import joblib model = joblib.load( hf_hub_download("OKTAYBBS/DataScientst-models", "sklearn_model.joblib") ) # only load pickle files from sources you trust # read more about it here https://skops.readthedocs.io/en/stable/persistence.html - Notebooks
- Google Colab
- Kaggle
Upload metrics/metrics.json with huggingface_hub
Browse files- metrics/metrics.json +185 -0
metrics/metrics.json
ADDED
|
@@ -0,0 +1,185 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"gold": {
|
| 3 |
+
"type": "regression",
|
| 4 |
+
"R2": 0.9904,
|
| 5 |
+
"RMSE": 2.2916,
|
| 6 |
+
"MAE": 1.2252,
|
| 7 |
+
"unit": "$",
|
| 8 |
+
"CV_R2": 0.9886,
|
| 9 |
+
"best_params": {
|
| 10 |
+
"n_estimators": 200,
|
| 11 |
+
"min_samples_leaf": 1,
|
| 12 |
+
"max_depth": 20
|
| 13 |
+
}
|
| 14 |
+
},
|
| 15 |
+
"student": {
|
| 16 |
+
"type": "regression",
|
| 17 |
+
"R2": 0.8489,
|
| 18 |
+
"RMSE": 6.0646,
|
| 19 |
+
"MAE": 4.7104,
|
| 20 |
+
"unit": "puan",
|
| 21 |
+
"CV_R2": 0.8373,
|
| 22 |
+
"best_params": {
|
| 23 |
+
"n_estimators": 100,
|
| 24 |
+
"min_samples_leaf": 2,
|
| 25 |
+
"max_depth": 20
|
| 26 |
+
}
|
| 27 |
+
},
|
| 28 |
+
"uber": {
|
| 29 |
+
"type": "regression",
|
| 30 |
+
"R2": 0.7775,
|
| 31 |
+
"RMSE": 4.6446,
|
| 32 |
+
"MAE": 2.2872,
|
| 33 |
+
"unit": "$",
|
| 34 |
+
"CV_R2": 0.7859,
|
| 35 |
+
"best_params": {
|
| 36 |
+
"n_estimators": 50,
|
| 37 |
+
"min_samples_leaf": 1,
|
| 38 |
+
"max_depth": null
|
| 39 |
+
}
|
| 40 |
+
},
|
| 41 |
+
"mobile": {
|
| 42 |
+
"type": "classification",
|
| 43 |
+
"Accuracy": 0.8125,
|
| 44 |
+
"Precision": 0.8184,
|
| 45 |
+
"Recall": 0.8125,
|
| 46 |
+
"F1": 0.8142,
|
| 47 |
+
"CV_Accuracy": 0.8069,
|
| 48 |
+
"best_params": {
|
| 49 |
+
"n_estimators": 100,
|
| 50 |
+
"min_samples_leaf": 2,
|
| 51 |
+
"max_depth": 20
|
| 52 |
+
}
|
| 53 |
+
},
|
| 54 |
+
"wine": {
|
| 55 |
+
"type": "classification",
|
| 56 |
+
"Accuracy": 0.675,
|
| 57 |
+
"Precision": 0.6425,
|
| 58 |
+
"Recall": 0.675,
|
| 59 |
+
"F1": 0.6562,
|
| 60 |
+
"CV_Accuracy": 0.6896,
|
| 61 |
+
"best_params": {
|
| 62 |
+
"n_estimators": 300,
|
| 63 |
+
"min_samples_leaf": 1,
|
| 64 |
+
"max_depth": 20
|
| 65 |
+
}
|
| 66 |
+
},
|
| 67 |
+
"churn": {
|
| 68 |
+
"type": "classification",
|
| 69 |
+
"Accuracy": 0.7889,
|
| 70 |
+
"Precision": 0.7771,
|
| 71 |
+
"Recall": 0.7889,
|
| 72 |
+
"F1": 0.7796,
|
| 73 |
+
"CV_Accuracy": 0.7991,
|
| 74 |
+
"best_params": {
|
| 75 |
+
"n_estimators": 200,
|
| 76 |
+
"min_samples_leaf": 1,
|
| 77 |
+
"max_depth": 20
|
| 78 |
+
}
|
| 79 |
+
},
|
| 80 |
+
"nba": {
|
| 81 |
+
"type": "clustering",
|
| 82 |
+
"Silhouette": 0.452,
|
| 83 |
+
"n_clusters": 3
|
| 84 |
+
},
|
| 85 |
+
"creditcard": {
|
| 86 |
+
"type": "clustering",
|
| 87 |
+
"Silhouette": 0.5309,
|
| 88 |
+
"n_clusters": 3
|
| 89 |
+
},
|
| 90 |
+
"spotify": {
|
| 91 |
+
"type": "clustering",
|
| 92 |
+
"Silhouette": 0.3269,
|
| 93 |
+
"n_clusters": 4
|
| 94 |
+
},
|
| 95 |
+
"mask": {
|
| 96 |
+
"type": "classification",
|
| 97 |
+
"Accuracy": 0.825,
|
| 98 |
+
"Precision": 0.8249,
|
| 99 |
+
"Recall": 0.825,
|
| 100 |
+
"F1": 0.8244,
|
| 101 |
+
"CV_Accuracy": 0.8187
|
| 102 |
+
},
|
| 103 |
+
"sms": {
|
| 104 |
+
"type": "classification",
|
| 105 |
+
"Accuracy": 0.9803,
|
| 106 |
+
"Precision": 0.9807,
|
| 107 |
+
"Recall": 0.9803,
|
| 108 |
+
"F1": 0.9796
|
| 109 |
+
},
|
| 110 |
+
"imdb_sentiment": {
|
| 111 |
+
"type": "classification",
|
| 112 |
+
"Accuracy": 0.873,
|
| 113 |
+
"Precision": 0.8741,
|
| 114 |
+
"Recall": 0.873,
|
| 115 |
+
"F1": 0.8729
|
| 116 |
+
},
|
| 117 |
+
"fake_news": {
|
| 118 |
+
"type": "classification",
|
| 119 |
+
"Accuracy": 0.9756,
|
| 120 |
+
"Precision": 0.9758,
|
| 121 |
+
"Recall": 0.9756,
|
| 122 |
+
"F1": 0.9756
|
| 123 |
+
},
|
| 124 |
+
"movie_rec": {
|
| 125 |
+
"type": "none",
|
| 126 |
+
"note": "İçerik tabanlı (unsupervised) öneri sistemi — accuracy/R² gibi tek bir başarı metriği yoktur."
|
| 127 |
+
},
|
| 128 |
+
"book_rec": {
|
| 129 |
+
"type": "none",
|
| 130 |
+
"note": "İçerik tabanlı (unsupervised) öneri sistemi — tek bir başarı metriği yoktur."
|
| 131 |
+
},
|
| 132 |
+
"song_rec": {
|
| 133 |
+
"type": "none",
|
| 134 |
+
"note": "İçerik tabanlı (unsupervised) öneri sistemi — tek bir başarı metriği yoktur."
|
| 135 |
+
},
|
| 136 |
+
"stock": {
|
| 137 |
+
"type": "regression",
|
| 138 |
+
"R2": 0.975,
|
| 139 |
+
"RMSE": 4.1682,
|
| 140 |
+
"MAE": 2.959,
|
| 141 |
+
"unit": "$"
|
| 142 |
+
},
|
| 143 |
+
"weather": {
|
| 144 |
+
"type": "regression",
|
| 145 |
+
"R2": 0.912,
|
| 146 |
+
"RMSE": 1.6784,
|
| 147 |
+
"MAE": 1.2744,
|
| 148 |
+
"unit": "°C"
|
| 149 |
+
},
|
| 150 |
+
"walmart": {
|
| 151 |
+
"type": "regression",
|
| 152 |
+
"R2": 0.7669,
|
| 153 |
+
"RMSE": 91283.4797,
|
| 154 |
+
"MAE": 79987.0904,
|
| 155 |
+
"unit": "$"
|
| 156 |
+
},
|
| 157 |
+
"social_media_viz": {
|
| 158 |
+
"type": "none",
|
| 159 |
+
"note": "Bu sekmede eğitilen bir model yok, sadece görselleştirme var."
|
| 160 |
+
},
|
| 161 |
+
"co2_viz": {
|
| 162 |
+
"type": "none",
|
| 163 |
+
"note": "Bu sekmede eğitilen bir model yok, sadece görselleştirme var."
|
| 164 |
+
},
|
| 165 |
+
"ecommerce_viz": {
|
| 166 |
+
"type": "none",
|
| 167 |
+
"note": "Bu sekmede eğitilen bir model yok, sadece görselleştirme var."
|
| 168 |
+
},
|
| 169 |
+
"pneumonia": {
|
| 170 |
+
"type": "deep_learning",
|
| 171 |
+
"Accuracy": 0.9331,
|
| 172 |
+
"Val_Accuracy": 0.925,
|
| 173 |
+
"Loss": 0.1816
|
| 174 |
+
},
|
| 175 |
+
"face_emotion": {
|
| 176 |
+
"type": "deep_learning",
|
| 177 |
+
"Accuracy": 0.6573,
|
| 178 |
+
"Val_Accuracy": 0.6542,
|
| 179 |
+
"Loss": 0.7471
|
| 180 |
+
},
|
| 181 |
+
"text_gen": {
|
| 182 |
+
"type": "none",
|
| 183 |
+
"note": "Markov Zinciri üretken (generative) bir modeldir — doğruluk/hata metriğiyle değil, üretilen metnin akıcılığıyla değerlendirilir."
|
| 184 |
+
}
|
| 185 |
+
}
|