Upload 3 files
Browse files- config.json +16 -0
- tokenizer_config.json +5 -0
- vocab.txt +0 -0
config.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "distilbert-base-uncased",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"DistilBertForSequenceClassification"
|
| 5 |
+
],
|
| 6 |
+
"id2label": {
|
| 7 |
+
"0": "bad",
|
| 8 |
+
"1": "good"
|
| 9 |
+
},
|
| 10 |
+
"label2id": {
|
| 11 |
+
"bad": 0,
|
| 12 |
+
"good": 1
|
| 13 |
+
},
|
| 14 |
+
"model_type": "distilbert",
|
| 15 |
+
"num_labels": 2
|
| 16 |
+
}
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_lower_case": true,
|
| 3 |
+
"model_max_length": 512,
|
| 4 |
+
"tokenizer_class": "DistilBertTokenizer"
|
| 5 |
+
}
|
vocab.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|