zluvolyote
commited on
Commit
·
1aa6cba
1
Parent(s):
303898b
Training in progress, step 500
Browse files- .gitignore +1 -0
- config.json +65 -0
- pytorch_model.bin +3 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "distilbert-base-uncased",
|
3 |
+
"activation": "gelu",
|
4 |
+
"architectures": [
|
5 |
+
"DistilBertForSequenceClassification"
|
6 |
+
],
|
7 |
+
"attention_dropout": 0.1,
|
8 |
+
"dim": 768,
|
9 |
+
"dropout": 0.1,
|
10 |
+
"hidden_dim": 3072,
|
11 |
+
"id2label": {
|
12 |
+
"0": 0,
|
13 |
+
"1": 1,
|
14 |
+
"2": 2,
|
15 |
+
"3": 3,
|
16 |
+
"4": 4,
|
17 |
+
"5": 5,
|
18 |
+
"6": 6,
|
19 |
+
"7": 7,
|
20 |
+
"8": 8,
|
21 |
+
"9": 9,
|
22 |
+
"10": 10,
|
23 |
+
"11": 11,
|
24 |
+
"12": 12,
|
25 |
+
"13": 13,
|
26 |
+
"14": 14,
|
27 |
+
"15": 15,
|
28 |
+
"16": 16,
|
29 |
+
"17": 17
|
30 |
+
},
|
31 |
+
"initializer_range": 0.02,
|
32 |
+
"label2id": {
|
33 |
+
"0": 0,
|
34 |
+
"1": 1,
|
35 |
+
"2": 2,
|
36 |
+
"3": 3,
|
37 |
+
"4": 4,
|
38 |
+
"5": 5,
|
39 |
+
"6": 6,
|
40 |
+
"7": 7,
|
41 |
+
"8": 8,
|
42 |
+
"9": 9,
|
43 |
+
"10": 10,
|
44 |
+
"11": 11,
|
45 |
+
"12": 12,
|
46 |
+
"13": 13,
|
47 |
+
"14": 14,
|
48 |
+
"15": 15,
|
49 |
+
"16": 16,
|
50 |
+
"17": 17
|
51 |
+
},
|
52 |
+
"max_position_embeddings": 512,
|
53 |
+
"model_type": "distilbert",
|
54 |
+
"n_heads": 12,
|
55 |
+
"n_layers": 6,
|
56 |
+
"pad_token_id": 0,
|
57 |
+
"problem_type": "single_label_classification",
|
58 |
+
"qa_dropout": 0.1,
|
59 |
+
"seq_classif_dropout": 0.2,
|
60 |
+
"sinusoidal_pos_embds": false,
|
61 |
+
"tie_weights_": true,
|
62 |
+
"torch_dtype": "float32",
|
63 |
+
"transformers_version": "4.20.1",
|
64 |
+
"vocab_size": 30522
|
65 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1495a4c4a9fd373fb3ac0fb341ae95cdfa364cd9ac4b37253ed06849afb370cc
|
3 |
+
size 267903537
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:959a38d31c5d45f9f949e47a05df3287d2d94a79b8e5341aaaaf82b7182718f5
|
3 |
+
size 3311
|