Upload config.json with huggingface_hub
Browse files- config.json +17 -0
config.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "sklearn",
|
| 3 |
+
"task": "text-classification",
|
| 4 |
+
"framework": "scikit-learn",
|
| 5 |
+
"model_name": "spam_classifier",
|
| 6 |
+
"vectorizer_name": "tfidf_vectorizer",
|
| 7 |
+
"num_features": 10000,
|
| 8 |
+
"ngram_range": [
|
| 9 |
+
1,
|
| 10 |
+
3
|
| 11 |
+
],
|
| 12 |
+
"accuracy": 0.96,
|
| 13 |
+
"labels": {
|
| 14 |
+
"0": "HAM",
|
| 15 |
+
"1": "SPAM"
|
| 16 |
+
}
|
| 17 |
+
}
|