kemalcankara commited on
Commit
9ad9505
1 Parent(s): 15a5d35

Upload DistilBertForTokenClassification

Browse files
Files changed (2) hide show
  1. config.json +173 -0
  2. pytorch_model.bin +3 -0
config.json ADDED
@@ -0,0 +1,173 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "./pt_save_pretrained_ner",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForTokenClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "B-location_name",
13
+ "1": "I-artist",
14
+ "2": "B-state",
15
+ "3": "B-object_location_type",
16
+ "4": "B-artist",
17
+ "5": "I-served_dish",
18
+ "6": "I-album",
19
+ "7": "B-track",
20
+ "8": "I-playlist_owner",
21
+ "9": "I-restaurant_type",
22
+ "10": "B-spatial_relation",
23
+ "11": "I-spatial_relation",
24
+ "12": "B-object_select",
25
+ "13": "B-condition_temperature",
26
+ "14": "B-geographic_poi",
27
+ "15": "I-facility",
28
+ "16": "B-playlist",
29
+ "17": "B-facility",
30
+ "18": "I-object_name",
31
+ "19": "I-geographic_poi",
32
+ "20": "B-movie_type",
33
+ "21": "B-restaurant_name",
34
+ "22": "I-music_item",
35
+ "23": "I-poi",
36
+ "24": "I-cuisine",
37
+ "25": "I-movie_name",
38
+ "26": "I-sort",
39
+ "27": "B-cuisine",
40
+ "28": "I-country",
41
+ "29": "B-service",
42
+ "30": "I-restaurant_name",
43
+ "31": "B-album",
44
+ "32": "B-entity_name",
45
+ "33": "I-service",
46
+ "34": "I-movie_type",
47
+ "35": "B-served_dish",
48
+ "36": "B-best_rating",
49
+ "37": "B-rating_value",
50
+ "38": "I-object_part_of_series_type",
51
+ "39": "I-genre",
52
+ "40": "I-object_location_type",
53
+ "41": "B-restaurant_type",
54
+ "42": "B-object_part_of_series_type",
55
+ "43": "O",
56
+ "44": "I-city",
57
+ "45": "B-music_item",
58
+ "46": "I-party_size_description",
59
+ "47": "B-city",
60
+ "48": "B-playlist_owner",
61
+ "49": "B-country",
62
+ "50": "B-condition_description",
63
+ "51": "B-year",
64
+ "52": "I-object_type",
65
+ "53": "B-sort",
66
+ "54": "B-timeRange",
67
+ "55": "B-current_location",
68
+ "56": "I-state",
69
+ "57": "I-object_select",
70
+ "58": "B-object_name",
71
+ "59": "I-track",
72
+ "60": "B-rating_unit",
73
+ "61": "I-location_name",
74
+ "62": "B-party_size_number",
75
+ "63": "I-current_location",
76
+ "64": "B-poi",
77
+ "65": "B-movie_name",
78
+ "66": "I-entity_name",
79
+ "67": "B-object_type",
80
+ "68": "B-party_size_description",
81
+ "69": "B-genre",
82
+ "70": "I-timeRange",
83
+ "71": "I-playlist"
84
+ },
85
+ "initializer_range": 0.02,
86
+ "label2id": {
87
+ "LABEL_0": 0,
88
+ "LABEL_1": 1,
89
+ "LABEL_10": 10,
90
+ "LABEL_11": 11,
91
+ "LABEL_12": 12,
92
+ "LABEL_13": 13,
93
+ "LABEL_14": 14,
94
+ "LABEL_15": 15,
95
+ "LABEL_16": 16,
96
+ "LABEL_17": 17,
97
+ "LABEL_18": 18,
98
+ "LABEL_19": 19,
99
+ "LABEL_2": 2,
100
+ "LABEL_20": 20,
101
+ "LABEL_21": 21,
102
+ "LABEL_22": 22,
103
+ "LABEL_23": 23,
104
+ "LABEL_24": 24,
105
+ "LABEL_25": 25,
106
+ "LABEL_26": 26,
107
+ "LABEL_27": 27,
108
+ "LABEL_28": 28,
109
+ "LABEL_29": 29,
110
+ "LABEL_3": 3,
111
+ "LABEL_30": 30,
112
+ "LABEL_31": 31,
113
+ "LABEL_32": 32,
114
+ "LABEL_33": 33,
115
+ "LABEL_34": 34,
116
+ "LABEL_35": 35,
117
+ "LABEL_36": 36,
118
+ "LABEL_37": 37,
119
+ "LABEL_38": 38,
120
+ "LABEL_39": 39,
121
+ "LABEL_4": 4,
122
+ "LABEL_40": 40,
123
+ "LABEL_41": 41,
124
+ "LABEL_42": 42,
125
+ "LABEL_43": 43,
126
+ "LABEL_44": 44,
127
+ "LABEL_45": 45,
128
+ "LABEL_46": 46,
129
+ "LABEL_47": 47,
130
+ "LABEL_48": 48,
131
+ "LABEL_49": 49,
132
+ "LABEL_5": 5,
133
+ "LABEL_50": 50,
134
+ "LABEL_51": 51,
135
+ "LABEL_52": 52,
136
+ "LABEL_53": 53,
137
+ "LABEL_54": 54,
138
+ "LABEL_55": 55,
139
+ "LABEL_56": 56,
140
+ "LABEL_57": 57,
141
+ "LABEL_58": 58,
142
+ "LABEL_59": 59,
143
+ "LABEL_6": 6,
144
+ "LABEL_60": 60,
145
+ "LABEL_61": 61,
146
+ "LABEL_62": 62,
147
+ "LABEL_63": 63,
148
+ "LABEL_64": 64,
149
+ "LABEL_65": 65,
150
+ "LABEL_66": 66,
151
+ "LABEL_67": 67,
152
+ "LABEL_68": 68,
153
+ "LABEL_69": 69,
154
+ "LABEL_7": 7,
155
+ "LABEL_70": 70,
156
+ "LABEL_71": 71,
157
+ "LABEL_8": 8,
158
+ "LABEL_9": 9
159
+ },
160
+ "max_position_embeddings": 512,
161
+ "model_type": "distilbert",
162
+ "n_heads": 12,
163
+ "n_layers": 6,
164
+ "output_past": true,
165
+ "pad_token_id": 0,
166
+ "qa_dropout": 0.1,
167
+ "seq_classif_dropout": 0.2,
168
+ "sinusoidal_pos_embds": false,
169
+ "tie_weights_": true,
170
+ "torch_dtype": "float32",
171
+ "transformers_version": "4.24.0",
172
+ "vocab_size": 28996
173
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4228144da615c27dd2ad236d4dc2e291ac2889e843856a74dba2c1db22af2bf
3
+ size 261018533