grano1 commited on
Commit
8bdbd03
·
verified ·
1 Parent(s): f6ddd45

Upload folder using huggingface_hub

Browse files
Files changed (5) hide show
  1. README.md +79 -54
  2. config.json +616 -614
  3. custom_pipeline.py +32 -0
  4. label_mappings.json +620 -0
  5. labels.json +309 -0
README.md CHANGED
@@ -12,6 +12,12 @@ pipeline_tag: text-classification
12
  tags:
13
  - scientometrics
14
  - asjc
 
 
 
 
 
 
15
  ---
16
  # 🧠 Open Multi-Label ASJC Classification
17
 
@@ -78,77 +84,96 @@ For **26 parent subjects**, F1-score improves to **0.934** with full metadata.
78
  ## 🔍 Example Usage
79
 
80
  ```python
81
- # Load packages
82
- from transformers import AutoModelForSequenceClassification, AutoTokenizer
83
- import pandas as pd
84
- import json # for json files
85
- import torch # for tensor computation and deep learning
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
 
87
- # Load model and tokenizer
88
- device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
89
- model = AutoModelForSequenceClassification.from_pretrained("asjc-classification/scibert_multilabel_asjc_classifier")
90
- model.to(device)
91
- model.eval()
92
- tokenizer = AutoTokenizer.from_pretrained("asjc-classification/scibert_multilabel_asjc_classifier", do_lower_case=True)
93
 
94
- # Load the JSON file
95
- with open("small_example.json", "r") as file:
96
- data = json.load(file)
97
 
98
- # Access the "all" array
99
- all_articles = data["all"]
 
 
 
100
 
101
- # Load the categories from the CSV file
102
- path = 'Categories.csv'
103
 
104
- # Read the CSV file into a pandas DataFrame
105
- df_categories = pd.read_csv(path, delimiter=';')
106
 
107
- # Extract the 'SUBJECT TERM' column as a list of class names
108
- classes = df_categories['SUBJECT TERM'].tolist()
 
 
 
109
 
110
- # Create mappings from class names to integer IDs and vice versa
111
- class2id = {class_: id for id, class_ in enumerate(classes)}
112
- id2class = {id: class_ for class_, id in class2id.items()}
113
 
114
- # Iterate over each example in the "all" array
115
- for example_data in all_articles:
116
- # Extract the text and labels
117
- example_article = example_data["string"]
118
- true_labels_example = json.loads(example_data["subject"]) # Load the labels as a list
119
 
120
- # Tokenize the article metadata
121
- inputs = tokenizer(example_article, return_tensors='pt', truncation=True, padding=True, max_length=512)
122
 
123
- # Move inputs to the correct device (CPU or GPU)
124
- inputs = {key: value.to(device) for key, value in inputs.items()}
125
 
126
- # Make predictions with the model
127
- with torch.no_grad(): # No gradient computation
128
- outs = model(**inputs)
129
- logits = outs[0] # Raw predictions (logits)
130
- pred_probs = torch.sigmoid(logits) # Convert to probabilities using Sigmoid
131
 
132
- # Convert probabilities to NumPy array
133
- pred_probs = pred_probs.cpu().numpy().flatten()
 
 
 
 
 
134
 
135
- # Create a DataFrame with probabilities and label names
136
- df_probs = pd.DataFrame([pred_probs], columns=classes)
 
 
 
137
 
138
- # Sort by highest probabilities and output the top 5 labels
139
- top_5_predictions = df_probs.iloc[0].sort_values(ascending=False).head(5)
 
 
 
140
 
141
- print(f"\n Text: {example_article}")
 
142
 
143
- print(f"\n🔹 **Top 5 predicted labels for the example:**")
144
- for label, prob in top_5_predictions.items():
145
- print(f" - {label}: {prob:.4f}")
146
 
147
- # Display the actual labels of the example (True Labels)
148
- print("\n✅ **Actual labels for the example:**")
149
- for label in true_labels_example:
150
- print(f" - {label}")
151
- ```
152
 
153
  ---
154
 
 
12
  tags:
13
  - scientometrics
14
  - asjc
15
+ - multi-label
16
+ task_categories:
17
+ - text-classification
18
+ widget:
19
+ - text: "title={Jodometrie}, container_title={Fresenius' Zeitschrift für analytische Chemie, Zeitschrift für analytische Chemie}, abstract={}"
20
+
21
  ---
22
  # 🧠 Open Multi-Label ASJC Classification
23
 
 
84
  ## 🔍 Example Usage
85
 
86
  ```python
87
+ # # Load packages
88
+ # from transformers import AutoModelForSequenceClassification, AutoTokenizer
89
+ # import pandas as pd
90
+ # import json # for json files
91
+ # import torch # for tensor computation and deep learning
92
+
93
+ # # Load model and tokenizer
94
+ # device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
95
+ # model = AutoModelForSequenceClassification.from_pretrained("asjc-classification/scibert_multilabel_asjc_classifier")
96
+ # model.to(device)
97
+ # model.eval()
98
+ # tokenizer = AutoTokenizer.from_pretrained("asjc-classification/scibert_multilabel_asjc_classifier", do_lower_case=True)
99
+
100
+ # # Load the JSON file
101
+ # with open("small_example.json", "r") as file:
102
+ # data = json.load(file)
103
+
104
+ # # Access the "all" array
105
+ # all_articles = data["all"]
106
+
107
+ # # Load the categories from the CSV file
108
+ # path = 'Categories.csv'
109
+
110
+ # # Read the CSV file into a pandas DataFrame
111
+ # df_categories = pd.read_csv(path, delimiter=';')
112
 
113
+ # # Extract the 'SUBJECT TERM' column as a list of class names
114
+ # classes = df_categories['SUBJECT TERM'].tolist()
 
 
 
 
115
 
116
+ # # Create mappings from class names to integer IDs and vice versa
117
+ # class2id = {class_: id for id, class_ in enumerate(classes)}
118
+ # id2class = {id: class_ for class_, id in class2id.items()}
119
 
120
+ # # Iterate over each example in the "all" array
121
+ # for example_data in all_articles:
122
+ # # Extract the text and labels
123
+ # example_article = example_data["string"]
124
+ # true_labels_example = json.loads(example_data["subject"]) # Load the labels as a list
125
 
126
+ # # Tokenize the article metadata
127
+ # inputs = tokenizer(example_article, return_tensors='pt', truncation=True, padding=True, max_length=512)
128
 
129
+ # # Move inputs to the correct device (CPU or GPU)
130
+ # inputs = {key: value.to(device) for key, value in inputs.items()}
131
 
132
+ # # Make predictions with the model
133
+ # with torch.no_grad(): # No gradient computation
134
+ # outs = model(**inputs)
135
+ # logits = outs[0] # Raw predictions (logits)
136
+ # pred_probs = torch.sigmoid(logits) # Convert to probabilities using Sigmoid
137
 
138
+ # # Convert probabilities to NumPy array
139
+ # pred_probs = pred_probs.cpu().numpy().flatten()
 
140
 
141
+ # # Create a DataFrame with probabilities and label names
142
+ # df_probs = pd.DataFrame([pred_probs], columns=classes)
 
 
 
143
 
144
+ # # Sort by highest probabilities and output the top 5 labels
145
+ # top_5_predictions = df_probs.iloc[0].sort_values(ascending=False).head(5)
146
 
147
+ # print(f"\n Text: {example_article}")
 
148
 
149
+ # print(f"\n�� **Top 5 predicted labels for the example:**")
150
+ # for label, prob in top_5_predictions.items():
151
+ # print(f" - {label}: {prob:.4f}")
 
 
152
 
153
+ # # Display the actual labels of the example (True Labels)
154
+ # print("\n✅ **Actual labels for the example:**")
155
+ # for label in true_labels_example:
156
+ # print(f" - {label}")
157
+ # ```
158
+ from transformers import pipeline
159
+ from custom_pipeline import ASJCMultiLabelPipeline
160
 
161
+ pipe = pipeline(
162
+ task="text-classification",
163
+ model="asjc-classification/scibert_multilabel_asjc_classifier",
164
+ pipeline_class=ASJCMultiLabelPipeline
165
+ )
166
 
167
+ text = (
168
+ "title={Jodometrie}, "
169
+ "container_title={Fresenius' Zeitschrift für analytische Chemie, Zeitschrift für analytische Chemie}, "
170
+ "abstract={}"
171
+ )
172
 
173
+ result = pipe(text)
174
+ print(result)
175
 
 
 
 
176
 
 
 
 
 
 
177
 
178
  ---
179
 
config.json CHANGED
@@ -9,625 +9,627 @@
9
  "hidden_dropout_prob": 0.1,
10
  "hidden_size": 768,
11
  "id2label": {
12
- "0": "LABEL_0",
13
- "1": "LABEL_1",
14
- "2": "LABEL_2",
15
- "3": "LABEL_3",
16
- "4": "LABEL_4",
17
- "5": "LABEL_5",
18
- "6": "LABEL_6",
19
- "7": "LABEL_7",
20
- "8": "LABEL_8",
21
- "9": "LABEL_9",
22
- "10": "LABEL_10",
23
- "11": "LABEL_11",
24
- "12": "LABEL_12",
25
- "13": "LABEL_13",
26
- "14": "LABEL_14",
27
- "15": "LABEL_15",
28
- "16": "LABEL_16",
29
- "17": "LABEL_17",
30
- "18": "LABEL_18",
31
- "19": "LABEL_19",
32
- "20": "LABEL_20",
33
- "21": "LABEL_21",
34
- "22": "LABEL_22",
35
- "23": "LABEL_23",
36
- "24": "LABEL_24",
37
- "25": "LABEL_25",
38
- "26": "LABEL_26",
39
- "27": "LABEL_27",
40
- "28": "LABEL_28",
41
- "29": "LABEL_29",
42
- "30": "LABEL_30",
43
- "31": "LABEL_31",
44
- "32": "LABEL_32",
45
- "33": "LABEL_33",
46
- "34": "LABEL_34",
47
- "35": "LABEL_35",
48
- "36": "LABEL_36",
49
- "37": "LABEL_37",
50
- "38": "LABEL_38",
51
- "39": "LABEL_39",
52
- "40": "LABEL_40",
53
- "41": "LABEL_41",
54
- "42": "LABEL_42",
55
- "43": "LABEL_43",
56
- "44": "LABEL_44",
57
- "45": "LABEL_45",
58
- "46": "LABEL_46",
59
- "47": "LABEL_47",
60
- "48": "LABEL_48",
61
- "49": "LABEL_49",
62
- "50": "LABEL_50",
63
- "51": "LABEL_51",
64
- "52": "LABEL_52",
65
- "53": "LABEL_53",
66
- "54": "LABEL_54",
67
- "55": "LABEL_55",
68
- "56": "LABEL_56",
69
- "57": "LABEL_57",
70
- "58": "LABEL_58",
71
- "59": "LABEL_59",
72
- "60": "LABEL_60",
73
- "61": "LABEL_61",
74
- "62": "LABEL_62",
75
- "63": "LABEL_63",
76
- "64": "LABEL_64",
77
- "65": "LABEL_65",
78
- "66": "LABEL_66",
79
- "67": "LABEL_67",
80
- "68": "LABEL_68",
81
- "69": "LABEL_69",
82
- "70": "LABEL_70",
83
- "71": "LABEL_71",
84
- "72": "LABEL_72",
85
- "73": "LABEL_73",
86
- "74": "LABEL_74",
87
- "75": "LABEL_75",
88
- "76": "LABEL_76",
89
- "77": "LABEL_77",
90
- "78": "LABEL_78",
91
- "79": "LABEL_79",
92
- "80": "LABEL_80",
93
- "81": "LABEL_81",
94
- "82": "LABEL_82",
95
- "83": "LABEL_83",
96
- "84": "LABEL_84",
97
- "85": "LABEL_85",
98
- "86": "LABEL_86",
99
- "87": "LABEL_87",
100
- "88": "LABEL_88",
101
- "89": "LABEL_89",
102
- "90": "LABEL_90",
103
- "91": "LABEL_91",
104
- "92": "LABEL_92",
105
- "93": "LABEL_93",
106
- "94": "LABEL_94",
107
- "95": "LABEL_95",
108
- "96": "LABEL_96",
109
- "97": "LABEL_97",
110
- "98": "LABEL_98",
111
- "99": "LABEL_99",
112
- "100": "LABEL_100",
113
- "101": "LABEL_101",
114
- "102": "LABEL_102",
115
- "103": "LABEL_103",
116
- "104": "LABEL_104",
117
- "105": "LABEL_105",
118
- "106": "LABEL_106",
119
- "107": "LABEL_107",
120
- "108": "LABEL_108",
121
- "109": "LABEL_109",
122
- "110": "LABEL_110",
123
- "111": "LABEL_111",
124
- "112": "LABEL_112",
125
- "113": "LABEL_113",
126
- "114": "LABEL_114",
127
- "115": "LABEL_115",
128
- "116": "LABEL_116",
129
- "117": "LABEL_117",
130
- "118": "LABEL_118",
131
- "119": "LABEL_119",
132
- "120": "LABEL_120",
133
- "121": "LABEL_121",
134
- "122": "LABEL_122",
135
- "123": "LABEL_123",
136
- "124": "LABEL_124",
137
- "125": "LABEL_125",
138
- "126": "LABEL_126",
139
- "127": "LABEL_127",
140
- "128": "LABEL_128",
141
- "129": "LABEL_129",
142
- "130": "LABEL_130",
143
- "131": "LABEL_131",
144
- "132": "LABEL_132",
145
- "133": "LABEL_133",
146
- "134": "LABEL_134",
147
- "135": "LABEL_135",
148
- "136": "LABEL_136",
149
- "137": "LABEL_137",
150
- "138": "LABEL_138",
151
- "139": "LABEL_139",
152
- "140": "LABEL_140",
153
- "141": "LABEL_141",
154
- "142": "LABEL_142",
155
- "143": "LABEL_143",
156
- "144": "LABEL_144",
157
- "145": "LABEL_145",
158
- "146": "LABEL_146",
159
- "147": "LABEL_147",
160
- "148": "LABEL_148",
161
- "149": "LABEL_149",
162
- "150": "LABEL_150",
163
- "151": "LABEL_151",
164
- "152": "LABEL_152",
165
- "153": "LABEL_153",
166
- "154": "LABEL_154",
167
- "155": "LABEL_155",
168
- "156": "LABEL_156",
169
- "157": "LABEL_157",
170
- "158": "LABEL_158",
171
- "159": "LABEL_159",
172
- "160": "LABEL_160",
173
- "161": "LABEL_161",
174
- "162": "LABEL_162",
175
- "163": "LABEL_163",
176
- "164": "LABEL_164",
177
- "165": "LABEL_165",
178
- "166": "LABEL_166",
179
- "167": "LABEL_167",
180
- "168": "LABEL_168",
181
- "169": "LABEL_169",
182
- "170": "LABEL_170",
183
- "171": "LABEL_171",
184
- "172": "LABEL_172",
185
- "173": "LABEL_173",
186
- "174": "LABEL_174",
187
- "175": "LABEL_175",
188
- "176": "LABEL_176",
189
- "177": "LABEL_177",
190
- "178": "LABEL_178",
191
- "179": "LABEL_179",
192
- "180": "LABEL_180",
193
- "181": "LABEL_181",
194
- "182": "LABEL_182",
195
- "183": "LABEL_183",
196
- "184": "LABEL_184",
197
- "185": "LABEL_185",
198
- "186": "LABEL_186",
199
- "187": "LABEL_187",
200
- "188": "LABEL_188",
201
- "189": "LABEL_189",
202
- "190": "LABEL_190",
203
- "191": "LABEL_191",
204
- "192": "LABEL_192",
205
- "193": "LABEL_193",
206
- "194": "LABEL_194",
207
- "195": "LABEL_195",
208
- "196": "LABEL_196",
209
- "197": "LABEL_197",
210
- "198": "LABEL_198",
211
- "199": "LABEL_199",
212
- "200": "LABEL_200",
213
- "201": "LABEL_201",
214
- "202": "LABEL_202",
215
- "203": "LABEL_203",
216
- "204": "LABEL_204",
217
- "205": "LABEL_205",
218
- "206": "LABEL_206",
219
- "207": "LABEL_207",
220
- "208": "LABEL_208",
221
- "209": "LABEL_209",
222
- "210": "LABEL_210",
223
- "211": "LABEL_211",
224
- "212": "LABEL_212",
225
- "213": "LABEL_213",
226
- "214": "LABEL_214",
227
- "215": "LABEL_215",
228
- "216": "LABEL_216",
229
- "217": "LABEL_217",
230
- "218": "LABEL_218",
231
- "219": "LABEL_219",
232
- "220": "LABEL_220",
233
- "221": "LABEL_221",
234
- "222": "LABEL_222",
235
- "223": "LABEL_223",
236
- "224": "LABEL_224",
237
- "225": "LABEL_225",
238
- "226": "LABEL_226",
239
- "227": "LABEL_227",
240
- "228": "LABEL_228",
241
- "229": "LABEL_229",
242
- "230": "LABEL_230",
243
- "231": "LABEL_231",
244
- "232": "LABEL_232",
245
- "233": "LABEL_233",
246
- "234": "LABEL_234",
247
- "235": "LABEL_235",
248
- "236": "LABEL_236",
249
- "237": "LABEL_237",
250
- "238": "LABEL_238",
251
- "239": "LABEL_239",
252
- "240": "LABEL_240",
253
- "241": "LABEL_241",
254
- "242": "LABEL_242",
255
- "243": "LABEL_243",
256
- "244": "LABEL_244",
257
- "245": "LABEL_245",
258
- "246": "LABEL_246",
259
- "247": "LABEL_247",
260
- "248": "LABEL_248",
261
- "249": "LABEL_249",
262
- "250": "LABEL_250",
263
- "251": "LABEL_251",
264
- "252": "LABEL_252",
265
- "253": "LABEL_253",
266
- "254": "LABEL_254",
267
- "255": "LABEL_255",
268
- "256": "LABEL_256",
269
- "257": "LABEL_257",
270
- "258": "LABEL_258",
271
- "259": "LABEL_259",
272
- "260": "LABEL_260",
273
- "261": "LABEL_261",
274
- "262": "LABEL_262",
275
- "263": "LABEL_263",
276
- "264": "LABEL_264",
277
- "265": "LABEL_265",
278
- "266": "LABEL_266",
279
- "267": "LABEL_267",
280
- "268": "LABEL_268",
281
- "269": "LABEL_269",
282
- "270": "LABEL_270",
283
- "271": "LABEL_271",
284
- "272": "LABEL_272",
285
- "273": "LABEL_273",
286
- "274": "LABEL_274",
287
- "275": "LABEL_275",
288
- "276": "LABEL_276",
289
- "277": "LABEL_277",
290
- "278": "LABEL_278",
291
- "279": "LABEL_279",
292
- "280": "LABEL_280",
293
- "281": "LABEL_281",
294
- "282": "LABEL_282",
295
- "283": "LABEL_283",
296
- "284": "LABEL_284",
297
- "285": "LABEL_285",
298
- "286": "LABEL_286",
299
- "287": "LABEL_287",
300
- "288": "LABEL_288",
301
- "289": "LABEL_289",
302
- "290": "LABEL_290",
303
- "291": "LABEL_291",
304
- "292": "LABEL_292",
305
- "293": "LABEL_293",
306
- "294": "LABEL_294",
307
- "295": "LABEL_295",
308
- "296": "LABEL_296",
309
- "297": "LABEL_297",
310
- "298": "LABEL_298",
311
- "299": "LABEL_299",
312
- "300": "LABEL_300",
313
- "301": "LABEL_301",
314
- "302": "LABEL_302",
315
- "303": "LABEL_303",
316
- "304": "LABEL_304",
317
- "305": "LABEL_305",
318
- "306": "LABEL_306"
319
  },
320
  "initializer_range": 0.02,
321
  "intermediate_size": 3072,
322
  "label2id": {
323
- "LABEL_0": 0,
324
- "LABEL_1": 1,
325
- "LABEL_10": 10,
326
- "LABEL_100": 100,
327
- "LABEL_101": 101,
328
- "LABEL_102": 102,
329
- "LABEL_103": 103,
330
- "LABEL_104": 104,
331
- "LABEL_105": 105,
332
- "LABEL_106": 106,
333
- "LABEL_107": 107,
334
- "LABEL_108": 108,
335
- "LABEL_109": 109,
336
- "LABEL_11": 11,
337
- "LABEL_110": 110,
338
- "LABEL_111": 111,
339
- "LABEL_112": 112,
340
- "LABEL_113": 113,
341
- "LABEL_114": 114,
342
- "LABEL_115": 115,
343
- "LABEL_116": 116,
344
- "LABEL_117": 117,
345
- "LABEL_118": 118,
346
- "LABEL_119": 119,
347
- "LABEL_12": 12,
348
- "LABEL_120": 120,
349
- "LABEL_121": 121,
350
- "LABEL_122": 122,
351
- "LABEL_123": 123,
352
- "LABEL_124": 124,
353
- "LABEL_125": 125,
354
- "LABEL_126": 126,
355
- "LABEL_127": 127,
356
- "LABEL_128": 128,
357
- "LABEL_129": 129,
358
- "LABEL_13": 13,
359
- "LABEL_130": 130,
360
- "LABEL_131": 131,
361
- "LABEL_132": 132,
362
- "LABEL_133": 133,
363
- "LABEL_134": 134,
364
- "LABEL_135": 135,
365
- "LABEL_136": 136,
366
- "LABEL_137": 137,
367
- "LABEL_138": 138,
368
- "LABEL_139": 139,
369
- "LABEL_14": 14,
370
- "LABEL_140": 140,
371
- "LABEL_141": 141,
372
- "LABEL_142": 142,
373
- "LABEL_143": 143,
374
- "LABEL_144": 144,
375
- "LABEL_145": 145,
376
- "LABEL_146": 146,
377
- "LABEL_147": 147,
378
- "LABEL_148": 148,
379
- "LABEL_149": 149,
380
- "LABEL_15": 15,
381
- "LABEL_150": 150,
382
- "LABEL_151": 151,
383
- "LABEL_152": 152,
384
- "LABEL_153": 153,
385
- "LABEL_154": 154,
386
- "LABEL_155": 155,
387
- "LABEL_156": 156,
388
- "LABEL_157": 157,
389
- "LABEL_158": 158,
390
- "LABEL_159": 159,
391
- "LABEL_16": 16,
392
- "LABEL_160": 160,
393
- "LABEL_161": 161,
394
- "LABEL_162": 162,
395
- "LABEL_163": 163,
396
- "LABEL_164": 164,
397
- "LABEL_165": 165,
398
- "LABEL_166": 166,
399
- "LABEL_167": 167,
400
- "LABEL_168": 168,
401
- "LABEL_169": 169,
402
- "LABEL_17": 17,
403
- "LABEL_170": 170,
404
- "LABEL_171": 171,
405
- "LABEL_172": 172,
406
- "LABEL_173": 173,
407
- "LABEL_174": 174,
408
- "LABEL_175": 175,
409
- "LABEL_176": 176,
410
- "LABEL_177": 177,
411
- "LABEL_178": 178,
412
- "LABEL_179": 179,
413
- "LABEL_18": 18,
414
- "LABEL_180": 180,
415
- "LABEL_181": 181,
416
- "LABEL_182": 182,
417
- "LABEL_183": 183,
418
- "LABEL_184": 184,
419
- "LABEL_185": 185,
420
- "LABEL_186": 186,
421
- "LABEL_187": 187,
422
- "LABEL_188": 188,
423
- "LABEL_189": 189,
424
- "LABEL_19": 19,
425
- "LABEL_190": 190,
426
- "LABEL_191": 191,
427
- "LABEL_192": 192,
428
- "LABEL_193": 193,
429
- "LABEL_194": 194,
430
- "LABEL_195": 195,
431
- "LABEL_196": 196,
432
- "LABEL_197": 197,
433
- "LABEL_198": 198,
434
- "LABEL_199": 199,
435
- "LABEL_2": 2,
436
- "LABEL_20": 20,
437
- "LABEL_200": 200,
438
- "LABEL_201": 201,
439
- "LABEL_202": 202,
440
- "LABEL_203": 203,
441
- "LABEL_204": 204,
442
- "LABEL_205": 205,
443
- "LABEL_206": 206,
444
- "LABEL_207": 207,
445
- "LABEL_208": 208,
446
- "LABEL_209": 209,
447
- "LABEL_21": 21,
448
- "LABEL_210": 210,
449
- "LABEL_211": 211,
450
- "LABEL_212": 212,
451
- "LABEL_213": 213,
452
- "LABEL_214": 214,
453
- "LABEL_215": 215,
454
- "LABEL_216": 216,
455
- "LABEL_217": 217,
456
- "LABEL_218": 218,
457
- "LABEL_219": 219,
458
- "LABEL_22": 22,
459
- "LABEL_220": 220,
460
- "LABEL_221": 221,
461
- "LABEL_222": 222,
462
- "LABEL_223": 223,
463
- "LABEL_224": 224,
464
- "LABEL_225": 225,
465
- "LABEL_226": 226,
466
- "LABEL_227": 227,
467
- "LABEL_228": 228,
468
- "LABEL_229": 229,
469
- "LABEL_23": 23,
470
- "LABEL_230": 230,
471
- "LABEL_231": 231,
472
- "LABEL_232": 232,
473
- "LABEL_233": 233,
474
- "LABEL_234": 234,
475
- "LABEL_235": 235,
476
- "LABEL_236": 236,
477
- "LABEL_237": 237,
478
- "LABEL_238": 238,
479
- "LABEL_239": 239,
480
- "LABEL_24": 24,
481
- "LABEL_240": 240,
482
- "LABEL_241": 241,
483
- "LABEL_242": 242,
484
- "LABEL_243": 243,
485
- "LABEL_244": 244,
486
- "LABEL_245": 245,
487
- "LABEL_246": 246,
488
- "LABEL_247": 247,
489
- "LABEL_248": 248,
490
- "LABEL_249": 249,
491
- "LABEL_25": 25,
492
- "LABEL_250": 250,
493
- "LABEL_251": 251,
494
- "LABEL_252": 252,
495
- "LABEL_253": 253,
496
- "LABEL_254": 254,
497
- "LABEL_255": 255,
498
- "LABEL_256": 256,
499
- "LABEL_257": 257,
500
- "LABEL_258": 258,
501
- "LABEL_259": 259,
502
- "LABEL_26": 26,
503
- "LABEL_260": 260,
504
- "LABEL_261": 261,
505
- "LABEL_262": 262,
506
- "LABEL_263": 263,
507
- "LABEL_264": 264,
508
- "LABEL_265": 265,
509
- "LABEL_266": 266,
510
- "LABEL_267": 267,
511
- "LABEL_268": 268,
512
- "LABEL_269": 269,
513
- "LABEL_27": 27,
514
- "LABEL_270": 270,
515
- "LABEL_271": 271,
516
- "LABEL_272": 272,
517
- "LABEL_273": 273,
518
- "LABEL_274": 274,
519
- "LABEL_275": 275,
520
- "LABEL_276": 276,
521
- "LABEL_277": 277,
522
- "LABEL_278": 278,
523
- "LABEL_279": 279,
524
- "LABEL_28": 28,
525
- "LABEL_280": 280,
526
- "LABEL_281": 281,
527
- "LABEL_282": 282,
528
- "LABEL_283": 283,
529
- "LABEL_284": 284,
530
- "LABEL_285": 285,
531
- "LABEL_286": 286,
532
- "LABEL_287": 287,
533
- "LABEL_288": 288,
534
- "LABEL_289": 289,
535
- "LABEL_29": 29,
536
- "LABEL_290": 290,
537
- "LABEL_291": 291,
538
- "LABEL_292": 292,
539
- "LABEL_293": 293,
540
- "LABEL_294": 294,
541
- "LABEL_295": 295,
542
- "LABEL_296": 296,
543
- "LABEL_297": 297,
544
- "LABEL_298": 298,
545
- "LABEL_299": 299,
546
- "LABEL_3": 3,
547
- "LABEL_30": 30,
548
- "LABEL_300": 300,
549
- "LABEL_301": 301,
550
- "LABEL_302": 302,
551
- "LABEL_303": 303,
552
- "LABEL_304": 304,
553
- "LABEL_305": 305,
554
- "LABEL_306": 306,
555
- "LABEL_31": 31,
556
- "LABEL_32": 32,
557
- "LABEL_33": 33,
558
- "LABEL_34": 34,
559
- "LABEL_35": 35,
560
- "LABEL_36": 36,
561
- "LABEL_37": 37,
562
- "LABEL_38": 38,
563
- "LABEL_39": 39,
564
- "LABEL_4": 4,
565
- "LABEL_40": 40,
566
- "LABEL_41": 41,
567
- "LABEL_42": 42,
568
- "LABEL_43": 43,
569
- "LABEL_44": 44,
570
- "LABEL_45": 45,
571
- "LABEL_46": 46,
572
- "LABEL_47": 47,
573
- "LABEL_48": 48,
574
- "LABEL_49": 49,
575
- "LABEL_5": 5,
576
- "LABEL_50": 50,
577
- "LABEL_51": 51,
578
- "LABEL_52": 52,
579
- "LABEL_53": 53,
580
- "LABEL_54": 54,
581
- "LABEL_55": 55,
582
- "LABEL_56": 56,
583
- "LABEL_57": 57,
584
- "LABEL_58": 58,
585
- "LABEL_59": 59,
586
- "LABEL_6": 6,
587
- "LABEL_60": 60,
588
- "LABEL_61": 61,
589
- "LABEL_62": 62,
590
- "LABEL_63": 63,
591
- "LABEL_64": 64,
592
- "LABEL_65": 65,
593
- "LABEL_66": 66,
594
- "LABEL_67": 67,
595
- "LABEL_68": 68,
596
- "LABEL_69": 69,
597
- "LABEL_7": 7,
598
- "LABEL_70": 70,
599
- "LABEL_71": 71,
600
- "LABEL_72": 72,
601
- "LABEL_73": 73,
602
- "LABEL_74": 74,
603
- "LABEL_75": 75,
604
- "LABEL_76": 76,
605
- "LABEL_77": 77,
606
- "LABEL_78": 78,
607
- "LABEL_79": 79,
608
- "LABEL_8": 8,
609
- "LABEL_80": 80,
610
- "LABEL_81": 81,
611
- "LABEL_82": 82,
612
- "LABEL_83": 83,
613
- "LABEL_84": 84,
614
- "LABEL_85": 85,
615
- "LABEL_86": 86,
616
- "LABEL_87": 87,
617
- "LABEL_88": 88,
618
- "LABEL_89": 89,
619
- "LABEL_9": 9,
620
- "LABEL_90": 90,
621
- "LABEL_91": 91,
622
- "LABEL_92": 92,
623
- "LABEL_93": 93,
624
- "LABEL_94": 94,
625
- "LABEL_95": 95,
626
- "LABEL_96": 96,
627
- "LABEL_97": 97,
628
- "LABEL_98": 98,
629
- "LABEL_99": 99
630
  },
 
 
631
  "layer_norm_eps": 1e-12,
632
  "max_position_embeddings": 512,
633
  "model_type": "bert",
 
9
  "hidden_dropout_prob": 0.1,
10
  "hidden_size": 768,
11
  "id2label": {
12
+ "0": "Agricultural and Biological Sciences (miscellaneous)",
13
+ "1": "Agronomy and Crop Science",
14
+ "2": "Animal Science and Zoology",
15
+ "3": "Aquatic Science",
16
+ "4": "Ecology, Evolution, Behavior and Systematics",
17
+ "5": "Food Science",
18
+ "6": "Forestry",
19
+ "7": "Horticulture",
20
+ "8": "Insect Science",
21
+ "9": "Plant Science",
22
+ "10": "Soil Science",
23
+ "11": "Arts and Humanities (miscellaneous)",
24
+ "12": "History",
25
+ "13": "Language and Linguistics",
26
+ "14": "Archeology (arts and humanities)",
27
+ "15": "Classics",
28
+ "16": "Conservation",
29
+ "17": "History and Philosophy of Science",
30
+ "18": "Literature and Literary Theory",
31
+ "19": "Museology",
32
+ "20": "Music",
33
+ "21": "Philosophy",
34
+ "22": "Religious Studies",
35
+ "23": "Visual Arts and Performing Arts",
36
+ "24": "Biochemistry, Genetics and Molecular Biology (miscellaneous)",
37
+ "25": "Aging",
38
+ "26": "Biochemistry",
39
+ "27": "Biophysics",
40
+ "28": "Biotechnology",
41
+ "29": "Cancer Research",
42
+ "30": "Cell Biology",
43
+ "31": "Clinical Biochemistry",
44
+ "32": "Developmental Biology",
45
+ "33": "Endocrinology",
46
+ "34": "Genetics",
47
+ "35": "Molecular Biology",
48
+ "36": "Molecular Medicine",
49
+ "37": "Physiology",
50
+ "38": "Structural Biology",
51
+ "39": "Business, Management and Accounting (miscellaneous)",
52
+ "40": "Accounting",
53
+ "41": "Business and International Management",
54
+ "42": "Management Information Systems",
55
+ "43": "Management of Technology and Innovation",
56
+ "44": "Marketing",
57
+ "45": "Organizational Behavior and Human Resource Management",
58
+ "46": "Strategy and Management",
59
+ "47": "Tourism, Leisure and Hospitality Management",
60
+ "48": "Industrial Relations",
61
+ "49": "Chemical Engineering (miscellaneous)",
62
+ "50": "Bioengineering",
63
+ "51": "Catalysis",
64
+ "52": "Chemical Health and Safety",
65
+ "53": "Colloid and Surface Chemistry",
66
+ "54": "Filtration and Separation",
67
+ "55": "Fluid Flow and Transfer Processes",
68
+ "56": "Process Chemistry and Technology",
69
+ "57": "Chemistry (miscellaneous)",
70
+ "58": "Analytical Chemistry",
71
+ "59": "Electrochemistry",
72
+ "60": "Inorganic Chemistry",
73
+ "61": "Organic Chemistry",
74
+ "62": "Physical and Theoretical Chemistry",
75
+ "63": "Spectroscopy",
76
+ "64": "Computer Science (miscellaneous)",
77
+ "65": "Artificial Intelligence",
78
+ "66": "Computational Theory and Mathematics",
79
+ "67": "Computer Graphics and Computer-Aided Design",
80
+ "68": "Computer Networks and Communications",
81
+ "69": "Computer Science Applications",
82
+ "70": "Computer Vision and Pattern Recognition",
83
+ "71": "Hardware and Architecture",
84
+ "72": "Human-Computer Interaction",
85
+ "73": "Information Systems",
86
+ "74": "Signal Processing",
87
+ "75": "Software",
88
+ "76": "Decision Sciences (miscellaneous)",
89
+ "77": "Information Systems and Management",
90
+ "78": "Management Science and Operations Research",
91
+ "79": "Statistics, Probability and Uncertainty",
92
+ "80": "Earth and Planetary Sciences (miscellaneous)",
93
+ "81": "Atmospheric Science",
94
+ "82": "Computers in Earth Sciences",
95
+ "83": "Earth-Surface Processes",
96
+ "84": "Economic Geology",
97
+ "85": "Geochemistry and Petrology",
98
+ "86": "Geology",
99
+ "87": "Geophysics",
100
+ "88": "Geotechnical Engineering and Engineering Geology",
101
+ "89": "Oceanography",
102
+ "90": "Paleontology",
103
+ "91": "Space and Planetary Science",
104
+ "92": "Stratigraphy",
105
+ "93": "Economics, Econometrics and Finance (miscellaneous)",
106
+ "94": "Economics and Econometrics",
107
+ "95": "Finance",
108
+ "96": "Energy (miscellaneous)",
109
+ "97": "Energy Engineering and Power Technology",
110
+ "98": "Fuel Technology",
111
+ "99": "Nuclear Energy and Engineering",
112
+ "100": "Renewable Energy, Sustainability and the Environment",
113
+ "101": "Engineering (miscellaneous)",
114
+ "102": "Aerospace Engineering",
115
+ "103": "Automotive Engineering",
116
+ "104": "Biomedical Engineering",
117
+ "105": "Civil and Structural Engineering",
118
+ "106": "Computational Mechanics",
119
+ "107": "Control and Systems Engineering",
120
+ "108": "Electrical and Electronic Engineering",
121
+ "109": "Industrial and Manufacturing Engineering",
122
+ "110": "Mechanical Engineering",
123
+ "111": "Mechanics of Materials",
124
+ "112": "Ocean Engineering",
125
+ "113": "Safety, Risk, Reliability and Quality",
126
+ "114": "Media Technology",
127
+ "115": "Building and Construction",
128
+ "116": "Architecture",
129
+ "117": "Environmental Science (miscellaneous)",
130
+ "118": "Ecological Modeling",
131
+ "119": "Ecology",
132
+ "120": "Environmental Chemistry",
133
+ "121": "Environmental Engineering",
134
+ "122": "Global and Planetary Change",
135
+ "123": "Health, Toxicology and Mutagenesis",
136
+ "124": "Management, Monitoring, Policy and Law",
137
+ "125": "Nature and Landscape Conservation",
138
+ "126": "Pollution",
139
+ "127": "Waste Management and Disposal",
140
+ "128": "Water Science and Technology",
141
+ "129": "Immunology and Microbiology (miscellaneous)",
142
+ "130": "Applied Microbiology and Biotechnology",
143
+ "131": "Immunology",
144
+ "132": "Microbiology",
145
+ "133": "Parasitology",
146
+ "134": "Virology",
147
+ "135": "Materials Science (miscellaneous)",
148
+ "136": "Biomaterials",
149
+ "137": "Ceramics and Composites",
150
+ "138": "Electronic, Optical and Magnetic Materials",
151
+ "139": "Materials Chemistry",
152
+ "140": "Metals and Alloys",
153
+ "141": "Polymers and Plastics",
154
+ "142": "Surfaces, Coatings and Films",
155
+ "143": "Mathematics (miscellaneous)",
156
+ "144": "Algebra and Number Theory",
157
+ "145": "Analysis",
158
+ "146": "Applied Mathematics",
159
+ "147": "Computational Mathematics",
160
+ "148": "Control and Optimization",
161
+ "149": "Discrete Mathematics and Combinatorics",
162
+ "150": "Geometry and Topology",
163
+ "151": "Logic",
164
+ "152": "Mathematical Physics",
165
+ "153": "Modeling and Simulation",
166
+ "154": "Numerical Analysis",
167
+ "155": "Statistics and Probability",
168
+ "156": "Theoretical Computer Science",
169
+ "157": "Medicine (miscellaneous)",
170
+ "158": "Anatomy",
171
+ "159": "Anesthesiology and Pain Medicine",
172
+ "160": "Biochemistry (medical)",
173
+ "161": "Cardiology and Cardiovascular Medicine",
174
+ "162": "Critical Care and Intensive Care Medicine",
175
+ "163": "Complementary and Alternative Medicine",
176
+ "164": "Dermatology",
177
+ "165": "Drug Guides",
178
+ "166": "Embryology",
179
+ "167": "Emergency Medicine",
180
+ "168": "Endocrinology, Diabetes and Metabolism",
181
+ "169": "Epidemiology",
182
+ "170": "Family Practice",
183
+ "171": "Gastroenterology",
184
+ "172": "Genetics (clinical)",
185
+ "173": "Geriatrics and Gerontology",
186
+ "174": "Health Informatics",
187
+ "175": "Health Policy",
188
+ "176": "Hematology",
189
+ "177": "Hepatology",
190
+ "178": "Histology",
191
+ "179": "Immunology and Allergy",
192
+ "180": "Internal Medicine",
193
+ "181": "Infectious Diseases",
194
+ "182": "Microbiology (medical)",
195
+ "183": "Nephrology",
196
+ "184": "Neurology (clinical)",
197
+ "185": "Obstetrics and Gynecology",
198
+ "186": "Oncology",
199
+ "187": "Ophthalmology",
200
+ "188": "Orthopedics and Sports Medicine",
201
+ "189": "Otorhinolaryngology",
202
+ "190": "Pathology and Forensic Medicine",
203
+ "191": "Pediatrics, Perinatology and Child Health",
204
+ "192": "Pharmacology (medical)",
205
+ "193": "Physiology (medical)",
206
+ "194": "Psychiatry and Mental Health",
207
+ "195": "Public Health, Environmental and Occupational Health",
208
+ "196": "Pulmonary and Respiratory Medicine",
209
+ "197": "Radiology, Nuclear Medicine and Imaging",
210
+ "198": "Rehabilitation",
211
+ "199": "Reproductive Medicine",
212
+ "200": "Reviews and References (medical)",
213
+ "201": "Rheumatology",
214
+ "202": "Surgery",
215
+ "203": "Transplantation",
216
+ "204": "Urology",
217
+ "205": "Neuroscience (miscellaneous)",
218
+ "206": "Behavioral Neuroscience",
219
+ "207": "Biological Psychiatry",
220
+ "208": "Cellular and Molecular Neuroscience",
221
+ "209": "Cognitive Neuroscience",
222
+ "210": "Developmental Neuroscience",
223
+ "211": "Endocrine and Autonomic Systems",
224
+ "212": "Neurology",
225
+ "213": "Sensory Systems",
226
+ "214": "Nursing (miscellaneous)",
227
+ "215": "Advanced and Specialized Nursing",
228
+ "216": "Assessment and Diagnosis",
229
+ "217": "Care Planning",
230
+ "218": "Community and Home Care",
231
+ "219": "Critical Care Nursing",
232
+ "220": "Emergency Nursing",
233
+ "221": "Fundamentals and Skills",
234
+ "222": "Gerontology",
235
+ "223": "Issues, Ethics and Legal Aspects",
236
+ "224": "Leadership and Management",
237
+ "225": "LPN and LVN",
238
+ "226": "Maternity and Midwifery",
239
+ "227": "Medical and Surgical Nursing",
240
+ "228": "Nurse Assisting",
241
+ "229": "Nutrition and Dietetics",
242
+ "230": "Oncology (nursing)",
243
+ "231": "Pathophysiology",
244
+ "232": "Pediatrics",
245
+ "233": "Pharmacology (nursing)",
246
+ "234": "Psychiatric Mental Health",
247
+ "235": "Research and Theory",
248
+ "236": "Review and Exam Preparation",
249
+ "237": "Pharmacology, Toxicology and Pharmaceutics (miscellaneous)",
250
+ "238": "Drug Discovery",
251
+ "239": "Pharmaceutical Science",
252
+ "240": "Pharmacology",
253
+ "241": "Toxicology",
254
+ "242": "Physics and Astronomy (miscellaneous)",
255
+ "243": "Acoustics and Ultrasonics",
256
+ "244": "Astronomy and Astrophysics",
257
+ "245": "Condensed Matter Physics",
258
+ "246": "Instrumentation",
259
+ "247": "Nuclear and High Energy Physics",
260
+ "248": "Atomic and Molecular Physics, and Optics",
261
+ "249": "Radiation",
262
+ "250": "Statistical and Nonlinear Physics",
263
+ "251": "Surfaces and Interfaces",
264
+ "252": "Psychology (miscellaneous)",
265
+ "253": "Applied Psychology",
266
+ "254": "Clinical Psychology",
267
+ "255": "Developmental and Educational Psychology",
268
+ "256": "Experimental and Cognitive Psychology",
269
+ "257": "Neuropsychology and Physiological Psychology",
270
+ "258": "Social Psychology",
271
+ "259": "Social Sciences (miscellaneous)",
272
+ "260": "Archeology",
273
+ "261": "Development",
274
+ "262": "Education",
275
+ "263": "Geography, Planning and Development",
276
+ "264": "Health (social science)",
277
+ "265": "Human Factors and Ergonomics",
278
+ "266": "Law",
279
+ "267": "Library and Information Sciences",
280
+ "268": "Linguistics and Language",
281
+ "269": "Safety Research",
282
+ "270": "Sociology and Political Science",
283
+ "271": "Transportation",
284
+ "272": "Anthropology",
285
+ "273": "Communication",
286
+ "274": "Cultural Studies",
287
+ "275": "Demography",
288
+ "276": "Gender Studies",
289
+ "277": "Life-span and Life-course Studies",
290
+ "278": "Political Science and International Relations",
291
+ "279": "Public Administration",
292
+ "280": "Urban Studies",
293
+ "281": "Veterinary (miscellaneous)",
294
+ "282": "Equine",
295
+ "283": "Food Animals",
296
+ "284": "Small Animals",
297
+ "285": "Dentistry (miscellaneous)",
298
+ "286": "Dental Assisting",
299
+ "287": "Dental Hygiene",
300
+ "288": "Oral Surgery",
301
+ "289": "Orthodontics",
302
+ "290": "Periodontics",
303
+ "291": "Health Professions (miscellaneous)",
304
+ "292": "Chiropractics",
305
+ "293": "Complementary and Manual Therapy",
306
+ "294": "Emergency Medical Services",
307
+ "295": "Health Information Management",
308
+ "296": "Medical Assisting and Transcription",
309
+ "297": "Medical Laboratory Technology",
310
+ "298": "Medical Terminology",
311
+ "299": "Occupational Therapy",
312
+ "300": "Optometry",
313
+ "301": "Pharmacy",
314
+ "302": "Physical Therapy, Sports Therapy and Rehabilitation",
315
+ "303": "Podiatry",
316
+ "304": "Radiological and Ultrasound Technology",
317
+ "305": "Respiratory Care",
318
+ "306": "Speech and Hearing"
319
  },
320
  "initializer_range": 0.02,
321
  "intermediate_size": 3072,
322
  "label2id": {
323
+ "Agricultural and Biological Sciences (miscellaneous)": 0,
324
+ "Agronomy and Crop Science": 1,
325
+ "Animal Science and Zoology": 2,
326
+ "Aquatic Science": 3,
327
+ "Ecology, Evolution, Behavior and Systematics": 4,
328
+ "Food Science": 5,
329
+ "Forestry": 6,
330
+ "Horticulture": 7,
331
+ "Insect Science": 8,
332
+ "Plant Science": 9,
333
+ "Soil Science": 10,
334
+ "Arts and Humanities (miscellaneous)": 11,
335
+ "History": 12,
336
+ "Language and Linguistics": 13,
337
+ "Archeology (arts and humanities)": 14,
338
+ "Classics": 15,
339
+ "Conservation": 16,
340
+ "History and Philosophy of Science": 17,
341
+ "Literature and Literary Theory": 18,
342
+ "Museology": 19,
343
+ "Music": 20,
344
+ "Philosophy": 21,
345
+ "Religious Studies": 22,
346
+ "Visual Arts and Performing Arts": 23,
347
+ "Biochemistry, Genetics and Molecular Biology (miscellaneous)": 24,
348
+ "Aging": 25,
349
+ "Biochemistry": 26,
350
+ "Biophysics": 27,
351
+ "Biotechnology": 28,
352
+ "Cancer Research": 29,
353
+ "Cell Biology": 30,
354
+ "Clinical Biochemistry": 31,
355
+ "Developmental Biology": 32,
356
+ "Endocrinology": 33,
357
+ "Genetics": 34,
358
+ "Molecular Biology": 35,
359
+ "Molecular Medicine": 36,
360
+ "Physiology": 37,
361
+ "Structural Biology": 38,
362
+ "Business, Management and Accounting (miscellaneous)": 39,
363
+ "Accounting": 40,
364
+ "Business and International Management": 41,
365
+ "Management Information Systems": 42,
366
+ "Management of Technology and Innovation": 43,
367
+ "Marketing": 44,
368
+ "Organizational Behavior and Human Resource Management": 45,
369
+ "Strategy and Management": 46,
370
+ "Tourism, Leisure and Hospitality Management": 47,
371
+ "Industrial Relations": 48,
372
+ "Chemical Engineering (miscellaneous)": 49,
373
+ "Bioengineering": 50,
374
+ "Catalysis": 51,
375
+ "Chemical Health and Safety": 52,
376
+ "Colloid and Surface Chemistry": 53,
377
+ "Filtration and Separation": 54,
378
+ "Fluid Flow and Transfer Processes": 55,
379
+ "Process Chemistry and Technology": 56,
380
+ "Chemistry (miscellaneous)": 57,
381
+ "Analytical Chemistry": 58,
382
+ "Electrochemistry": 59,
383
+ "Inorganic Chemistry": 60,
384
+ "Organic Chemistry": 61,
385
+ "Physical and Theoretical Chemistry": 62,
386
+ "Spectroscopy": 63,
387
+ "Computer Science (miscellaneous)": 64,
388
+ "Artificial Intelligence": 65,
389
+ "Computational Theory and Mathematics": 66,
390
+ "Computer Graphics and Computer-Aided Design": 67,
391
+ "Computer Networks and Communications": 68,
392
+ "Computer Science Applications": 69,
393
+ "Computer Vision and Pattern Recognition": 70,
394
+ "Hardware and Architecture": 71,
395
+ "Human-Computer Interaction": 72,
396
+ "Information Systems": 73,
397
+ "Signal Processing": 74,
398
+ "Software": 75,
399
+ "Decision Sciences (miscellaneous)": 76,
400
+ "Information Systems and Management": 77,
401
+ "Management Science and Operations Research": 78,
402
+ "Statistics, Probability and Uncertainty": 79,
403
+ "Earth and Planetary Sciences (miscellaneous)": 80,
404
+ "Atmospheric Science": 81,
405
+ "Computers in Earth Sciences": 82,
406
+ "Earth-Surface Processes": 83,
407
+ "Economic Geology": 84,
408
+ "Geochemistry and Petrology": 85,
409
+ "Geology": 86,
410
+ "Geophysics": 87,
411
+ "Geotechnical Engineering and Engineering Geology": 88,
412
+ "Oceanography": 89,
413
+ "Paleontology": 90,
414
+ "Space and Planetary Science": 91,
415
+ "Stratigraphy": 92,
416
+ "Economics, Econometrics and Finance (miscellaneous)": 93,
417
+ "Economics and Econometrics": 94,
418
+ "Finance": 95,
419
+ "Energy (miscellaneous)": 96,
420
+ "Energy Engineering and Power Technology": 97,
421
+ "Fuel Technology": 98,
422
+ "Nuclear Energy and Engineering": 99,
423
+ "Renewable Energy, Sustainability and the Environment": 100,
424
+ "Engineering (miscellaneous)": 101,
425
+ "Aerospace Engineering": 102,
426
+ "Automotive Engineering": 103,
427
+ "Biomedical Engineering": 104,
428
+ "Civil and Structural Engineering": 105,
429
+ "Computational Mechanics": 106,
430
+ "Control and Systems Engineering": 107,
431
+ "Electrical and Electronic Engineering": 108,
432
+ "Industrial and Manufacturing Engineering": 109,
433
+ "Mechanical Engineering": 110,
434
+ "Mechanics of Materials": 111,
435
+ "Ocean Engineering": 112,
436
+ "Safety, Risk, Reliability and Quality": 113,
437
+ "Media Technology": 114,
438
+ "Building and Construction": 115,
439
+ "Architecture": 116,
440
+ "Environmental Science (miscellaneous)": 117,
441
+ "Ecological Modeling": 118,
442
+ "Ecology": 119,
443
+ "Environmental Chemistry": 120,
444
+ "Environmental Engineering": 121,
445
+ "Global and Planetary Change": 122,
446
+ "Health, Toxicology and Mutagenesis": 123,
447
+ "Management, Monitoring, Policy and Law": 124,
448
+ "Nature and Landscape Conservation": 125,
449
+ "Pollution": 126,
450
+ "Waste Management and Disposal": 127,
451
+ "Water Science and Technology": 128,
452
+ "Immunology and Microbiology (miscellaneous)": 129,
453
+ "Applied Microbiology and Biotechnology": 130,
454
+ "Immunology": 131,
455
+ "Microbiology": 132,
456
+ "Parasitology": 133,
457
+ "Virology": 134,
458
+ "Materials Science (miscellaneous)": 135,
459
+ "Biomaterials": 136,
460
+ "Ceramics and Composites": 137,
461
+ "Electronic, Optical and Magnetic Materials": 138,
462
+ "Materials Chemistry": 139,
463
+ "Metals and Alloys": 140,
464
+ "Polymers and Plastics": 141,
465
+ "Surfaces, Coatings and Films": 142,
466
+ "Mathematics (miscellaneous)": 143,
467
+ "Algebra and Number Theory": 144,
468
+ "Analysis": 145,
469
+ "Applied Mathematics": 146,
470
+ "Computational Mathematics": 147,
471
+ "Control and Optimization": 148,
472
+ "Discrete Mathematics and Combinatorics": 149,
473
+ "Geometry and Topology": 150,
474
+ "Logic": 151,
475
+ "Mathematical Physics": 152,
476
+ "Modeling and Simulation": 153,
477
+ "Numerical Analysis": 154,
478
+ "Statistics and Probability": 155,
479
+ "Theoretical Computer Science": 156,
480
+ "Medicine (miscellaneous)": 157,
481
+ "Anatomy": 158,
482
+ "Anesthesiology and Pain Medicine": 159,
483
+ "Biochemistry (medical)": 160,
484
+ "Cardiology and Cardiovascular Medicine": 161,
485
+ "Critical Care and Intensive Care Medicine": 162,
486
+ "Complementary and Alternative Medicine": 163,
487
+ "Dermatology": 164,
488
+ "Drug Guides": 165,
489
+ "Embryology": 166,
490
+ "Emergency Medicine": 167,
491
+ "Endocrinology, Diabetes and Metabolism": 168,
492
+ "Epidemiology": 169,
493
+ "Family Practice": 170,
494
+ "Gastroenterology": 171,
495
+ "Genetics (clinical)": 172,
496
+ "Geriatrics and Gerontology": 173,
497
+ "Health Informatics": 174,
498
+ "Health Policy": 175,
499
+ "Hematology": 176,
500
+ "Hepatology": 177,
501
+ "Histology": 178,
502
+ "Immunology and Allergy": 179,
503
+ "Internal Medicine": 180,
504
+ "Infectious Diseases": 181,
505
+ "Microbiology (medical)": 182,
506
+ "Nephrology": 183,
507
+ "Neurology (clinical)": 184,
508
+ "Obstetrics and Gynecology": 185,
509
+ "Oncology": 186,
510
+ "Ophthalmology": 187,
511
+ "Orthopedics and Sports Medicine": 188,
512
+ "Otorhinolaryngology": 189,
513
+ "Pathology and Forensic Medicine": 190,
514
+ "Pediatrics, Perinatology and Child Health": 191,
515
+ "Pharmacology (medical)": 192,
516
+ "Physiology (medical)": 193,
517
+ "Psychiatry and Mental Health": 194,
518
+ "Public Health, Environmental and Occupational Health": 195,
519
+ "Pulmonary and Respiratory Medicine": 196,
520
+ "Radiology, Nuclear Medicine and Imaging": 197,
521
+ "Rehabilitation": 198,
522
+ "Reproductive Medicine": 199,
523
+ "Reviews and References (medical)": 200,
524
+ "Rheumatology": 201,
525
+ "Surgery": 202,
526
+ "Transplantation": 203,
527
+ "Urology": 204,
528
+ "Neuroscience (miscellaneous)": 205,
529
+ "Behavioral Neuroscience": 206,
530
+ "Biological Psychiatry": 207,
531
+ "Cellular and Molecular Neuroscience": 208,
532
+ "Cognitive Neuroscience": 209,
533
+ "Developmental Neuroscience": 210,
534
+ "Endocrine and Autonomic Systems": 211,
535
+ "Neurology": 212,
536
+ "Sensory Systems": 213,
537
+ "Nursing (miscellaneous)": 214,
538
+ "Advanced and Specialized Nursing": 215,
539
+ "Assessment and Diagnosis": 216,
540
+ "Care Planning": 217,
541
+ "Community and Home Care": 218,
542
+ "Critical Care Nursing": 219,
543
+ "Emergency Nursing": 220,
544
+ "Fundamentals and Skills": 221,
545
+ "Gerontology": 222,
546
+ "Issues, Ethics and Legal Aspects": 223,
547
+ "Leadership and Management": 224,
548
+ "LPN and LVN": 225,
549
+ "Maternity and Midwifery": 226,
550
+ "Medical and Surgical Nursing": 227,
551
+ "Nurse Assisting": 228,
552
+ "Nutrition and Dietetics": 229,
553
+ "Oncology (nursing)": 230,
554
+ "Pathophysiology": 231,
555
+ "Pediatrics": 232,
556
+ "Pharmacology (nursing)": 233,
557
+ "Psychiatric Mental Health": 234,
558
+ "Research and Theory": 235,
559
+ "Review and Exam Preparation": 236,
560
+ "Pharmacology, Toxicology and Pharmaceutics (miscellaneous)": 237,
561
+ "Drug Discovery": 238,
562
+ "Pharmaceutical Science": 239,
563
+ "Pharmacology": 240,
564
+ "Toxicology": 241,
565
+ "Physics and Astronomy (miscellaneous)": 242,
566
+ "Acoustics and Ultrasonics": 243,
567
+ "Astronomy and Astrophysics": 244,
568
+ "Condensed Matter Physics": 245,
569
+ "Instrumentation": 246,
570
+ "Nuclear and High Energy Physics": 247,
571
+ "Atomic and Molecular Physics, and Optics": 248,
572
+ "Radiation": 249,
573
+ "Statistical and Nonlinear Physics": 250,
574
+ "Surfaces and Interfaces": 251,
575
+ "Psychology (miscellaneous)": 252,
576
+ "Applied Psychology": 253,
577
+ "Clinical Psychology": 254,
578
+ "Developmental and Educational Psychology": 255,
579
+ "Experimental and Cognitive Psychology": 256,
580
+ "Neuropsychology and Physiological Psychology": 257,
581
+ "Social Psychology": 258,
582
+ "Social Sciences (miscellaneous)": 259,
583
+ "Archeology": 260,
584
+ "Development": 261,
585
+ "Education": 262,
586
+ "Geography, Planning and Development": 263,
587
+ "Health (social science)": 264,
588
+ "Human Factors and Ergonomics": 265,
589
+ "Law": 266,
590
+ "Library and Information Sciences": 267,
591
+ "Linguistics and Language": 268,
592
+ "Safety Research": 269,
593
+ "Sociology and Political Science": 270,
594
+ "Transportation": 271,
595
+ "Anthropology": 272,
596
+ "Communication": 273,
597
+ "Cultural Studies": 274,
598
+ "Demography": 275,
599
+ "Gender Studies": 276,
600
+ "Life-span and Life-course Studies": 277,
601
+ "Political Science and International Relations": 278,
602
+ "Public Administration": 279,
603
+ "Urban Studies": 280,
604
+ "Veterinary (miscellaneous)": 281,
605
+ "Equine": 282,
606
+ "Food Animals": 283,
607
+ "Small Animals": 284,
608
+ "Dentistry (miscellaneous)": 285,
609
+ "Dental Assisting": 286,
610
+ "Dental Hygiene": 287,
611
+ "Oral Surgery": 288,
612
+ "Orthodontics": 289,
613
+ "Periodontics": 290,
614
+ "Health Professions (miscellaneous)": 291,
615
+ "Chiropractics": 292,
616
+ "Complementary and Manual Therapy": 293,
617
+ "Emergency Medical Services": 294,
618
+ "Health Information Management": 295,
619
+ "Medical Assisting and Transcription": 296,
620
+ "Medical Laboratory Technology": 297,
621
+ "Medical Terminology": 298,
622
+ "Occupational Therapy": 299,
623
+ "Optometry": 300,
624
+ "Pharmacy": 301,
625
+ "Physical Therapy, Sports Therapy and Rehabilitation": 302,
626
+ "Podiatry": 303,
627
+ "Radiological and Ultrasound Technology": 304,
628
+ "Respiratory Care": 305,
629
+ "Speech and Hearing": 306
630
  },
631
+ "problem_type": "multi_label_classification",
632
+ "threshold": 0.3,
633
  "layer_norm_eps": 1e-12,
634
  "max_position_embeddings": 512,
635
  "model_type": "bert",
custom_pipeline.py ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ '''
2
+ # @ Author: ASJC Team
3
+ # @ Create Time: 2025-11-25 23:52:55
4
+ # @ Modified by: ASJC Team
5
+ # @ Modified time: 2025-11-25 23:53:08
6
+ # @ Description: Custom pipeline for multi-label classification with fine-tuned SciBERT model.
7
+ '''
8
+
9
+ from transformers import TextClassificationPipeline
10
+ import torch
11
+
12
+ class ASJCMultiLabelPipeline(TextClassificationPipeline):
13
+ def __init__(self, *args, **kwargs):
14
+ self.threshold = kwargs.pop("threshold", None)
15
+ super().__init__(*args, **kwargs)
16
+
17
+ # If no explicit threshold passed → use threshold from config.json
18
+ if self.threshold is None:
19
+ self.threshold = getattr(self.model.config, "threshold", 0.3)
20
+
21
+ def postprocess(self, model_outputs, **kwargs):
22
+ scores = torch.sigmoid(torch.tensor(model_outputs["logits"])).tolist()
23
+ results = []
24
+
25
+ for i, score in enumerate(scores):
26
+ if score >= self.threshold:
27
+ label = self.model.config.id2label[str(i)]
28
+ results.append({"label": label, "score": float(score)})
29
+
30
+ # Sort by score descending
31
+ results = sorted(results, key=lambda x: x["score"], reverse=True)
32
+ return results
label_mappings.json ADDED
@@ -0,0 +1,620 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "label2id": {
3
+ "Agricultural and Biological Sciences (miscellaneous)": 0,
4
+ "Agronomy and Crop Science": 1,
5
+ "Animal Science and Zoology": 2,
6
+ "Aquatic Science": 3,
7
+ "Ecology, Evolution, Behavior and Systematics": 4,
8
+ "Food Science": 5,
9
+ "Forestry": 6,
10
+ "Horticulture": 7,
11
+ "Insect Science": 8,
12
+ "Plant Science": 9,
13
+ "Soil Science": 10,
14
+ "Arts and Humanities (miscellaneous)": 11,
15
+ "History": 12,
16
+ "Language and Linguistics": 13,
17
+ "Archeology (arts and humanities)": 14,
18
+ "Classics": 15,
19
+ "Conservation": 16,
20
+ "History and Philosophy of Science": 17,
21
+ "Literature and Literary Theory": 18,
22
+ "Museology": 19,
23
+ "Music": 20,
24
+ "Philosophy": 21,
25
+ "Religious Studies": 22,
26
+ "Visual Arts and Performing Arts": 23,
27
+ "Biochemistry, Genetics and Molecular Biology (miscellaneous)": 24,
28
+ "Aging": 25,
29
+ "Biochemistry": 26,
30
+ "Biophysics": 27,
31
+ "Biotechnology": 28,
32
+ "Cancer Research": 29,
33
+ "Cell Biology": 30,
34
+ "Clinical Biochemistry": 31,
35
+ "Developmental Biology": 32,
36
+ "Endocrinology": 33,
37
+ "Genetics": 34,
38
+ "Molecular Biology": 35,
39
+ "Molecular Medicine": 36,
40
+ "Physiology": 37,
41
+ "Structural Biology": 38,
42
+ "Business, Management and Accounting (miscellaneous)": 39,
43
+ "Accounting": 40,
44
+ "Business and International Management": 41,
45
+ "Management Information Systems": 42,
46
+ "Management of Technology and Innovation": 43,
47
+ "Marketing": 44,
48
+ "Organizational Behavior and Human Resource Management": 45,
49
+ "Strategy and Management": 46,
50
+ "Tourism, Leisure and Hospitality Management": 47,
51
+ "Industrial Relations": 48,
52
+ "Chemical Engineering (miscellaneous)": 49,
53
+ "Bioengineering": 50,
54
+ "Catalysis": 51,
55
+ "Chemical Health and Safety": 52,
56
+ "Colloid and Surface Chemistry": 53,
57
+ "Filtration and Separation": 54,
58
+ "Fluid Flow and Transfer Processes": 55,
59
+ "Process Chemistry and Technology": 56,
60
+ "Chemistry (miscellaneous)": 57,
61
+ "Analytical Chemistry": 58,
62
+ "Electrochemistry": 59,
63
+ "Inorganic Chemistry": 60,
64
+ "Organic Chemistry": 61,
65
+ "Physical and Theoretical Chemistry": 62,
66
+ "Spectroscopy": 63,
67
+ "Computer Science (miscellaneous)": 64,
68
+ "Artificial Intelligence": 65,
69
+ "Computational Theory and Mathematics": 66,
70
+ "Computer Graphics and Computer-Aided Design": 67,
71
+ "Computer Networks and Communications": 68,
72
+ "Computer Science Applications": 69,
73
+ "Computer Vision and Pattern Recognition": 70,
74
+ "Hardware and Architecture": 71,
75
+ "Human-Computer Interaction": 72,
76
+ "Information Systems": 73,
77
+ "Signal Processing": 74,
78
+ "Software": 75,
79
+ "Decision Sciences (miscellaneous)": 76,
80
+ "Information Systems and Management": 77,
81
+ "Management Science and Operations Research": 78,
82
+ "Statistics, Probability and Uncertainty": 79,
83
+ "Earth and Planetary Sciences (miscellaneous)": 80,
84
+ "Atmospheric Science": 81,
85
+ "Computers in Earth Sciences": 82,
86
+ "Earth-Surface Processes": 83,
87
+ "Economic Geology": 84,
88
+ "Geochemistry and Petrology": 85,
89
+ "Geology": 86,
90
+ "Geophysics": 87,
91
+ "Geotechnical Engineering and Engineering Geology": 88,
92
+ "Oceanography": 89,
93
+ "Paleontology": 90,
94
+ "Space and Planetary Science": 91,
95
+ "Stratigraphy": 92,
96
+ "Economics, Econometrics and Finance (miscellaneous)": 93,
97
+ "Economics and Econometrics": 94,
98
+ "Finance": 95,
99
+ "Energy (miscellaneous)": 96,
100
+ "Energy Engineering and Power Technology": 97,
101
+ "Fuel Technology": 98,
102
+ "Nuclear Energy and Engineering": 99,
103
+ "Renewable Energy, Sustainability and the Environment": 100,
104
+ "Engineering (miscellaneous)": 101,
105
+ "Aerospace Engineering": 102,
106
+ "Automotive Engineering": 103,
107
+ "Biomedical Engineering": 104,
108
+ "Civil and Structural Engineering": 105,
109
+ "Computational Mechanics": 106,
110
+ "Control and Systems Engineering": 107,
111
+ "Electrical and Electronic Engineering": 108,
112
+ "Industrial and Manufacturing Engineering": 109,
113
+ "Mechanical Engineering": 110,
114
+ "Mechanics of Materials": 111,
115
+ "Ocean Engineering": 112,
116
+ "Safety, Risk, Reliability and Quality": 113,
117
+ "Media Technology": 114,
118
+ "Building and Construction": 115,
119
+ "Architecture": 116,
120
+ "Environmental Science (miscellaneous)": 117,
121
+ "Ecological Modeling": 118,
122
+ "Ecology": 119,
123
+ "Environmental Chemistry": 120,
124
+ "Environmental Engineering": 121,
125
+ "Global and Planetary Change": 122,
126
+ "Health, Toxicology and Mutagenesis": 123,
127
+ "Management, Monitoring, Policy and Law": 124,
128
+ "Nature and Landscape Conservation": 125,
129
+ "Pollution": 126,
130
+ "Waste Management and Disposal": 127,
131
+ "Water Science and Technology": 128,
132
+ "Immunology and Microbiology (miscellaneous)": 129,
133
+ "Applied Microbiology and Biotechnology": 130,
134
+ "Immunology": 131,
135
+ "Microbiology": 132,
136
+ "Parasitology": 133,
137
+ "Virology": 134,
138
+ "Materials Science (miscellaneous)": 135,
139
+ "Biomaterials": 136,
140
+ "Ceramics and Composites": 137,
141
+ "Electronic, Optical and Magnetic Materials": 138,
142
+ "Materials Chemistry": 139,
143
+ "Metals and Alloys": 140,
144
+ "Polymers and Plastics": 141,
145
+ "Surfaces, Coatings and Films": 142,
146
+ "Mathematics (miscellaneous)": 143,
147
+ "Algebra and Number Theory": 144,
148
+ "Analysis": 145,
149
+ "Applied Mathematics": 146,
150
+ "Computational Mathematics": 147,
151
+ "Control and Optimization": 148,
152
+ "Discrete Mathematics and Combinatorics": 149,
153
+ "Geometry and Topology": 150,
154
+ "Logic": 151,
155
+ "Mathematical Physics": 152,
156
+ "Modeling and Simulation": 153,
157
+ "Numerical Analysis": 154,
158
+ "Statistics and Probability": 155,
159
+ "Theoretical Computer Science": 156,
160
+ "Medicine (miscellaneous)": 157,
161
+ "Anatomy": 158,
162
+ "Anesthesiology and Pain Medicine": 159,
163
+ "Biochemistry (medical)": 160,
164
+ "Cardiology and Cardiovascular Medicine": 161,
165
+ "Critical Care and Intensive Care Medicine": 162,
166
+ "Complementary and Alternative Medicine": 163,
167
+ "Dermatology": 164,
168
+ "Drug Guides": 165,
169
+ "Embryology": 166,
170
+ "Emergency Medicine": 167,
171
+ "Endocrinology, Diabetes and Metabolism": 168,
172
+ "Epidemiology": 169,
173
+ "Family Practice": 170,
174
+ "Gastroenterology": 171,
175
+ "Genetics (clinical)": 172,
176
+ "Geriatrics and Gerontology": 173,
177
+ "Health Informatics": 174,
178
+ "Health Policy": 175,
179
+ "Hematology": 176,
180
+ "Hepatology": 177,
181
+ "Histology": 178,
182
+ "Immunology and Allergy": 179,
183
+ "Internal Medicine": 180,
184
+ "Infectious Diseases": 181,
185
+ "Microbiology (medical)": 182,
186
+ "Nephrology": 183,
187
+ "Neurology (clinical)": 184,
188
+ "Obstetrics and Gynecology": 185,
189
+ "Oncology": 186,
190
+ "Ophthalmology": 187,
191
+ "Orthopedics and Sports Medicine": 188,
192
+ "Otorhinolaryngology": 189,
193
+ "Pathology and Forensic Medicine": 190,
194
+ "Pediatrics, Perinatology and Child Health": 191,
195
+ "Pharmacology (medical)": 192,
196
+ "Physiology (medical)": 193,
197
+ "Psychiatry and Mental Health": 194,
198
+ "Public Health, Environmental and Occupational Health": 195,
199
+ "Pulmonary and Respiratory Medicine": 196,
200
+ "Radiology, Nuclear Medicine and Imaging": 197,
201
+ "Rehabilitation": 198,
202
+ "Reproductive Medicine": 199,
203
+ "Reviews and References (medical)": 200,
204
+ "Rheumatology": 201,
205
+ "Surgery": 202,
206
+ "Transplantation": 203,
207
+ "Urology": 204,
208
+ "Neuroscience (miscellaneous)": 205,
209
+ "Behavioral Neuroscience": 206,
210
+ "Biological Psychiatry": 207,
211
+ "Cellular and Molecular Neuroscience": 208,
212
+ "Cognitive Neuroscience": 209,
213
+ "Developmental Neuroscience": 210,
214
+ "Endocrine and Autonomic Systems": 211,
215
+ "Neurology": 212,
216
+ "Sensory Systems": 213,
217
+ "Nursing (miscellaneous)": 214,
218
+ "Advanced and Specialized Nursing": 215,
219
+ "Assessment and Diagnosis": 216,
220
+ "Care Planning": 217,
221
+ "Community and Home Care": 218,
222
+ "Critical Care Nursing": 219,
223
+ "Emergency Nursing": 220,
224
+ "Fundamentals and Skills": 221,
225
+ "Gerontology": 222,
226
+ "Issues, Ethics and Legal Aspects": 223,
227
+ "Leadership and Management": 224,
228
+ "LPN and LVN": 225,
229
+ "Maternity and Midwifery": 226,
230
+ "Medical and Surgical Nursing": 227,
231
+ "Nurse Assisting": 228,
232
+ "Nutrition and Dietetics": 229,
233
+ "Oncology (nursing)": 230,
234
+ "Pathophysiology": 231,
235
+ "Pediatrics": 232,
236
+ "Pharmacology (nursing)": 233,
237
+ "Psychiatric Mental Health": 234,
238
+ "Research and Theory": 235,
239
+ "Review and Exam Preparation": 236,
240
+ "Pharmacology, Toxicology and Pharmaceutics (miscellaneous)": 237,
241
+ "Drug Discovery": 238,
242
+ "Pharmaceutical Science": 239,
243
+ "Pharmacology": 240,
244
+ "Toxicology": 241,
245
+ "Physics and Astronomy (miscellaneous)": 242,
246
+ "Acoustics and Ultrasonics": 243,
247
+ "Astronomy and Astrophysics": 244,
248
+ "Condensed Matter Physics": 245,
249
+ "Instrumentation": 246,
250
+ "Nuclear and High Energy Physics": 247,
251
+ "Atomic and Molecular Physics, and Optics": 248,
252
+ "Radiation": 249,
253
+ "Statistical and Nonlinear Physics": 250,
254
+ "Surfaces and Interfaces": 251,
255
+ "Psychology (miscellaneous)": 252,
256
+ "Applied Psychology": 253,
257
+ "Clinical Psychology": 254,
258
+ "Developmental and Educational Psychology": 255,
259
+ "Experimental and Cognitive Psychology": 256,
260
+ "Neuropsychology and Physiological Psychology": 257,
261
+ "Social Psychology": 258,
262
+ "Social Sciences (miscellaneous)": 259,
263
+ "Archeology": 260,
264
+ "Development": 261,
265
+ "Education": 262,
266
+ "Geography, Planning and Development": 263,
267
+ "Health (social science)": 264,
268
+ "Human Factors and Ergonomics": 265,
269
+ "Law": 266,
270
+ "Library and Information Sciences": 267,
271
+ "Linguistics and Language": 268,
272
+ "Safety Research": 269,
273
+ "Sociology and Political Science": 270,
274
+ "Transportation": 271,
275
+ "Anthropology": 272,
276
+ "Communication": 273,
277
+ "Cultural Studies": 274,
278
+ "Demography": 275,
279
+ "Gender Studies": 276,
280
+ "Life-span and Life-course Studies": 277,
281
+ "Political Science and International Relations": 278,
282
+ "Public Administration": 279,
283
+ "Urban Studies": 280,
284
+ "Veterinary (miscellaneous)": 281,
285
+ "Equine": 282,
286
+ "Food Animals": 283,
287
+ "Small Animals": 284,
288
+ "Dentistry (miscellaneous)": 285,
289
+ "Dental Assisting": 286,
290
+ "Dental Hygiene": 287,
291
+ "Oral Surgery": 288,
292
+ "Orthodontics": 289,
293
+ "Periodontics": 290,
294
+ "Health Professions (miscellaneous)": 291,
295
+ "Chiropractics": 292,
296
+ "Complementary and Manual Therapy": 293,
297
+ "Emergency Medical Services": 294,
298
+ "Health Information Management": 295,
299
+ "Medical Assisting and Transcription": 296,
300
+ "Medical Laboratory Technology": 297,
301
+ "Medical Terminology": 298,
302
+ "Occupational Therapy": 299,
303
+ "Optometry": 300,
304
+ "Pharmacy": 301,
305
+ "Physical Therapy, Sports Therapy and Rehabilitation": 302,
306
+ "Podiatry": 303,
307
+ "Radiological and Ultrasound Technology": 304,
308
+ "Respiratory Care": 305,
309
+ "Speech and Hearing": 306
310
+ },
311
+ "id2label": {
312
+ "0": "Agricultural and Biological Sciences (miscellaneous)",
313
+ "1": "Agronomy and Crop Science",
314
+ "2": "Animal Science and Zoology",
315
+ "3": "Aquatic Science",
316
+ "4": "Ecology, Evolution, Behavior and Systematics",
317
+ "5": "Food Science",
318
+ "6": "Forestry",
319
+ "7": "Horticulture",
320
+ "8": "Insect Science",
321
+ "9": "Plant Science",
322
+ "10": "Soil Science",
323
+ "11": "Arts and Humanities (miscellaneous)",
324
+ "12": "History",
325
+ "13": "Language and Linguistics",
326
+ "14": "Archeology (arts and humanities)",
327
+ "15": "Classics",
328
+ "16": "Conservation",
329
+ "17": "History and Philosophy of Science",
330
+ "18": "Literature and Literary Theory",
331
+ "19": "Museology",
332
+ "20": "Music",
333
+ "21": "Philosophy",
334
+ "22": "Religious Studies",
335
+ "23": "Visual Arts and Performing Arts",
336
+ "24": "Biochemistry, Genetics and Molecular Biology (miscellaneous)",
337
+ "25": "Aging",
338
+ "26": "Biochemistry",
339
+ "27": "Biophysics",
340
+ "28": "Biotechnology",
341
+ "29": "Cancer Research",
342
+ "30": "Cell Biology",
343
+ "31": "Clinical Biochemistry",
344
+ "32": "Developmental Biology",
345
+ "33": "Endocrinology",
346
+ "34": "Genetics",
347
+ "35": "Molecular Biology",
348
+ "36": "Molecular Medicine",
349
+ "37": "Physiology",
350
+ "38": "Structural Biology",
351
+ "39": "Business, Management and Accounting (miscellaneous)",
352
+ "40": "Accounting",
353
+ "41": "Business and International Management",
354
+ "42": "Management Information Systems",
355
+ "43": "Management of Technology and Innovation",
356
+ "44": "Marketing",
357
+ "45": "Organizational Behavior and Human Resource Management",
358
+ "46": "Strategy and Management",
359
+ "47": "Tourism, Leisure and Hospitality Management",
360
+ "48": "Industrial Relations",
361
+ "49": "Chemical Engineering (miscellaneous)",
362
+ "50": "Bioengineering",
363
+ "51": "Catalysis",
364
+ "52": "Chemical Health and Safety",
365
+ "53": "Colloid and Surface Chemistry",
366
+ "54": "Filtration and Separation",
367
+ "55": "Fluid Flow and Transfer Processes",
368
+ "56": "Process Chemistry and Technology",
369
+ "57": "Chemistry (miscellaneous)",
370
+ "58": "Analytical Chemistry",
371
+ "59": "Electrochemistry",
372
+ "60": "Inorganic Chemistry",
373
+ "61": "Organic Chemistry",
374
+ "62": "Physical and Theoretical Chemistry",
375
+ "63": "Spectroscopy",
376
+ "64": "Computer Science (miscellaneous)",
377
+ "65": "Artificial Intelligence",
378
+ "66": "Computational Theory and Mathematics",
379
+ "67": "Computer Graphics and Computer-Aided Design",
380
+ "68": "Computer Networks and Communications",
381
+ "69": "Computer Science Applications",
382
+ "70": "Computer Vision and Pattern Recognition",
383
+ "71": "Hardware and Architecture",
384
+ "72": "Human-Computer Interaction",
385
+ "73": "Information Systems",
386
+ "74": "Signal Processing",
387
+ "75": "Software",
388
+ "76": "Decision Sciences (miscellaneous)",
389
+ "77": "Information Systems and Management",
390
+ "78": "Management Science and Operations Research",
391
+ "79": "Statistics, Probability and Uncertainty",
392
+ "80": "Earth and Planetary Sciences (miscellaneous)",
393
+ "81": "Atmospheric Science",
394
+ "82": "Computers in Earth Sciences",
395
+ "83": "Earth-Surface Processes",
396
+ "84": "Economic Geology",
397
+ "85": "Geochemistry and Petrology",
398
+ "86": "Geology",
399
+ "87": "Geophysics",
400
+ "88": "Geotechnical Engineering and Engineering Geology",
401
+ "89": "Oceanography",
402
+ "90": "Paleontology",
403
+ "91": "Space and Planetary Science",
404
+ "92": "Stratigraphy",
405
+ "93": "Economics, Econometrics and Finance (miscellaneous)",
406
+ "94": "Economics and Econometrics",
407
+ "95": "Finance",
408
+ "96": "Energy (miscellaneous)",
409
+ "97": "Energy Engineering and Power Technology",
410
+ "98": "Fuel Technology",
411
+ "99": "Nuclear Energy and Engineering",
412
+ "100": "Renewable Energy, Sustainability and the Environment",
413
+ "101": "Engineering (miscellaneous)",
414
+ "102": "Aerospace Engineering",
415
+ "103": "Automotive Engineering",
416
+ "104": "Biomedical Engineering",
417
+ "105": "Civil and Structural Engineering",
418
+ "106": "Computational Mechanics",
419
+ "107": "Control and Systems Engineering",
420
+ "108": "Electrical and Electronic Engineering",
421
+ "109": "Industrial and Manufacturing Engineering",
422
+ "110": "Mechanical Engineering",
423
+ "111": "Mechanics of Materials",
424
+ "112": "Ocean Engineering",
425
+ "113": "Safety, Risk, Reliability and Quality",
426
+ "114": "Media Technology",
427
+ "115": "Building and Construction",
428
+ "116": "Architecture",
429
+ "117": "Environmental Science (miscellaneous)",
430
+ "118": "Ecological Modeling",
431
+ "119": "Ecology",
432
+ "120": "Environmental Chemistry",
433
+ "121": "Environmental Engineering",
434
+ "122": "Global and Planetary Change",
435
+ "123": "Health, Toxicology and Mutagenesis",
436
+ "124": "Management, Monitoring, Policy and Law",
437
+ "125": "Nature and Landscape Conservation",
438
+ "126": "Pollution",
439
+ "127": "Waste Management and Disposal",
440
+ "128": "Water Science and Technology",
441
+ "129": "Immunology and Microbiology (miscellaneous)",
442
+ "130": "Applied Microbiology and Biotechnology",
443
+ "131": "Immunology",
444
+ "132": "Microbiology",
445
+ "133": "Parasitology",
446
+ "134": "Virology",
447
+ "135": "Materials Science (miscellaneous)",
448
+ "136": "Biomaterials",
449
+ "137": "Ceramics and Composites",
450
+ "138": "Electronic, Optical and Magnetic Materials",
451
+ "139": "Materials Chemistry",
452
+ "140": "Metals and Alloys",
453
+ "141": "Polymers and Plastics",
454
+ "142": "Surfaces, Coatings and Films",
455
+ "143": "Mathematics (miscellaneous)",
456
+ "144": "Algebra and Number Theory",
457
+ "145": "Analysis",
458
+ "146": "Applied Mathematics",
459
+ "147": "Computational Mathematics",
460
+ "148": "Control and Optimization",
461
+ "149": "Discrete Mathematics and Combinatorics",
462
+ "150": "Geometry and Topology",
463
+ "151": "Logic",
464
+ "152": "Mathematical Physics",
465
+ "153": "Modeling and Simulation",
466
+ "154": "Numerical Analysis",
467
+ "155": "Statistics and Probability",
468
+ "156": "Theoretical Computer Science",
469
+ "157": "Medicine (miscellaneous)",
470
+ "158": "Anatomy",
471
+ "159": "Anesthesiology and Pain Medicine",
472
+ "160": "Biochemistry (medical)",
473
+ "161": "Cardiology and Cardiovascular Medicine",
474
+ "162": "Critical Care and Intensive Care Medicine",
475
+ "163": "Complementary and Alternative Medicine",
476
+ "164": "Dermatology",
477
+ "165": "Drug Guides",
478
+ "166": "Embryology",
479
+ "167": "Emergency Medicine",
480
+ "168": "Endocrinology, Diabetes and Metabolism",
481
+ "169": "Epidemiology",
482
+ "170": "Family Practice",
483
+ "171": "Gastroenterology",
484
+ "172": "Genetics (clinical)",
485
+ "173": "Geriatrics and Gerontology",
486
+ "174": "Health Informatics",
487
+ "175": "Health Policy",
488
+ "176": "Hematology",
489
+ "177": "Hepatology",
490
+ "178": "Histology",
491
+ "179": "Immunology and Allergy",
492
+ "180": "Internal Medicine",
493
+ "181": "Infectious Diseases",
494
+ "182": "Microbiology (medical)",
495
+ "183": "Nephrology",
496
+ "184": "Neurology (clinical)",
497
+ "185": "Obstetrics and Gynecology",
498
+ "186": "Oncology",
499
+ "187": "Ophthalmology",
500
+ "188": "Orthopedics and Sports Medicine",
501
+ "189": "Otorhinolaryngology",
502
+ "190": "Pathology and Forensic Medicine",
503
+ "191": "Pediatrics, Perinatology and Child Health",
504
+ "192": "Pharmacology (medical)",
505
+ "193": "Physiology (medical)",
506
+ "194": "Psychiatry and Mental Health",
507
+ "195": "Public Health, Environmental and Occupational Health",
508
+ "196": "Pulmonary and Respiratory Medicine",
509
+ "197": "Radiology, Nuclear Medicine and Imaging",
510
+ "198": "Rehabilitation",
511
+ "199": "Reproductive Medicine",
512
+ "200": "Reviews and References (medical)",
513
+ "201": "Rheumatology",
514
+ "202": "Surgery",
515
+ "203": "Transplantation",
516
+ "204": "Urology",
517
+ "205": "Neuroscience (miscellaneous)",
518
+ "206": "Behavioral Neuroscience",
519
+ "207": "Biological Psychiatry",
520
+ "208": "Cellular and Molecular Neuroscience",
521
+ "209": "Cognitive Neuroscience",
522
+ "210": "Developmental Neuroscience",
523
+ "211": "Endocrine and Autonomic Systems",
524
+ "212": "Neurology",
525
+ "213": "Sensory Systems",
526
+ "214": "Nursing (miscellaneous)",
527
+ "215": "Advanced and Specialized Nursing",
528
+ "216": "Assessment and Diagnosis",
529
+ "217": "Care Planning",
530
+ "218": "Community and Home Care",
531
+ "219": "Critical Care Nursing",
532
+ "220": "Emergency Nursing",
533
+ "221": "Fundamentals and Skills",
534
+ "222": "Gerontology",
535
+ "223": "Issues, Ethics and Legal Aspects",
536
+ "224": "Leadership and Management",
537
+ "225": "LPN and LVN",
538
+ "226": "Maternity and Midwifery",
539
+ "227": "Medical and Surgical Nursing",
540
+ "228": "Nurse Assisting",
541
+ "229": "Nutrition and Dietetics",
542
+ "230": "Oncology (nursing)",
543
+ "231": "Pathophysiology",
544
+ "232": "Pediatrics",
545
+ "233": "Pharmacology (nursing)",
546
+ "234": "Psychiatric Mental Health",
547
+ "235": "Research and Theory",
548
+ "236": "Review and Exam Preparation",
549
+ "237": "Pharmacology, Toxicology and Pharmaceutics (miscellaneous)",
550
+ "238": "Drug Discovery",
551
+ "239": "Pharmaceutical Science",
552
+ "240": "Pharmacology",
553
+ "241": "Toxicology",
554
+ "242": "Physics and Astronomy (miscellaneous)",
555
+ "243": "Acoustics and Ultrasonics",
556
+ "244": "Astronomy and Astrophysics",
557
+ "245": "Condensed Matter Physics",
558
+ "246": "Instrumentation",
559
+ "247": "Nuclear and High Energy Physics",
560
+ "248": "Atomic and Molecular Physics, and Optics",
561
+ "249": "Radiation",
562
+ "250": "Statistical and Nonlinear Physics",
563
+ "251": "Surfaces and Interfaces",
564
+ "252": "Psychology (miscellaneous)",
565
+ "253": "Applied Psychology",
566
+ "254": "Clinical Psychology",
567
+ "255": "Developmental and Educational Psychology",
568
+ "256": "Experimental and Cognitive Psychology",
569
+ "257": "Neuropsychology and Physiological Psychology",
570
+ "258": "Social Psychology",
571
+ "259": "Social Sciences (miscellaneous)",
572
+ "260": "Archeology",
573
+ "261": "Development",
574
+ "262": "Education",
575
+ "263": "Geography, Planning and Development",
576
+ "264": "Health (social science)",
577
+ "265": "Human Factors and Ergonomics",
578
+ "266": "Law",
579
+ "267": "Library and Information Sciences",
580
+ "268": "Linguistics and Language",
581
+ "269": "Safety Research",
582
+ "270": "Sociology and Political Science",
583
+ "271": "Transportation",
584
+ "272": "Anthropology",
585
+ "273": "Communication",
586
+ "274": "Cultural Studies",
587
+ "275": "Demography",
588
+ "276": "Gender Studies",
589
+ "277": "Life-span and Life-course Studies",
590
+ "278": "Political Science and International Relations",
591
+ "279": "Public Administration",
592
+ "280": "Urban Studies",
593
+ "281": "Veterinary (miscellaneous)",
594
+ "282": "Equine",
595
+ "283": "Food Animals",
596
+ "284": "Small Animals",
597
+ "285": "Dentistry (miscellaneous)",
598
+ "286": "Dental Assisting",
599
+ "287": "Dental Hygiene",
600
+ "288": "Oral Surgery",
601
+ "289": "Orthodontics",
602
+ "290": "Periodontics",
603
+ "291": "Health Professions (miscellaneous)",
604
+ "292": "Chiropractics",
605
+ "293": "Complementary and Manual Therapy",
606
+ "294": "Emergency Medical Services",
607
+ "295": "Health Information Management",
608
+ "296": "Medical Assisting and Transcription",
609
+ "297": "Medical Laboratory Technology",
610
+ "298": "Medical Terminology",
611
+ "299": "Occupational Therapy",
612
+ "300": "Optometry",
613
+ "301": "Pharmacy",
614
+ "302": "Physical Therapy, Sports Therapy and Rehabilitation",
615
+ "303": "Podiatry",
616
+ "304": "Radiological and Ultrasound Technology",
617
+ "305": "Respiratory Care",
618
+ "306": "Speech and Hearing"
619
+ }
620
+ }
labels.json ADDED
@@ -0,0 +1,309 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ "Agricultural and Biological Sciences (miscellaneous)",
3
+ "Agronomy and Crop Science",
4
+ "Animal Science and Zoology",
5
+ "Aquatic Science",
6
+ "Ecology, Evolution, Behavior and Systematics",
7
+ "Food Science",
8
+ "Forestry",
9
+ "Horticulture",
10
+ "Insect Science",
11
+ "Plant Science",
12
+ "Soil Science",
13
+ "Arts and Humanities (miscellaneous)",
14
+ "History",
15
+ "Language and Linguistics",
16
+ "Archeology (arts and humanities)",
17
+ "Classics",
18
+ "Conservation",
19
+ "History and Philosophy of Science",
20
+ "Literature and Literary Theory",
21
+ "Museology",
22
+ "Music",
23
+ "Philosophy",
24
+ "Religious Studies",
25
+ "Visual Arts and Performing Arts",
26
+ "Biochemistry, Genetics and Molecular Biology (miscellaneous)",
27
+ "Aging",
28
+ "Biochemistry",
29
+ "Biophysics",
30
+ "Biotechnology",
31
+ "Cancer Research",
32
+ "Cell Biology",
33
+ "Clinical Biochemistry",
34
+ "Developmental Biology",
35
+ "Endocrinology",
36
+ "Genetics",
37
+ "Molecular Biology",
38
+ "Molecular Medicine",
39
+ "Physiology",
40
+ "Structural Biology",
41
+ "Business, Management and Accounting (miscellaneous)",
42
+ "Accounting",
43
+ "Business and International Management",
44
+ "Management Information Systems",
45
+ "Management of Technology and Innovation",
46
+ "Marketing",
47
+ "Organizational Behavior and Human Resource Management",
48
+ "Strategy and Management",
49
+ "Tourism, Leisure and Hospitality Management",
50
+ "Industrial Relations",
51
+ "Chemical Engineering (miscellaneous)",
52
+ "Bioengineering",
53
+ "Catalysis",
54
+ "Chemical Health and Safety",
55
+ "Colloid and Surface Chemistry",
56
+ "Filtration and Separation",
57
+ "Fluid Flow and Transfer Processes",
58
+ "Process Chemistry and Technology",
59
+ "Chemistry (miscellaneous)",
60
+ "Analytical Chemistry",
61
+ "Electrochemistry",
62
+ "Inorganic Chemistry",
63
+ "Organic Chemistry",
64
+ "Physical and Theoretical Chemistry",
65
+ "Spectroscopy",
66
+ "Computer Science (miscellaneous)",
67
+ "Artificial Intelligence",
68
+ "Computational Theory and Mathematics",
69
+ "Computer Graphics and Computer-Aided Design",
70
+ "Computer Networks and Communications",
71
+ "Computer Science Applications",
72
+ "Computer Vision and Pattern Recognition",
73
+ "Hardware and Architecture",
74
+ "Human-Computer Interaction",
75
+ "Information Systems",
76
+ "Signal Processing",
77
+ "Software",
78
+ "Decision Sciences (miscellaneous)",
79
+ "Information Systems and Management",
80
+ "Management Science and Operations Research",
81
+ "Statistics, Probability and Uncertainty",
82
+ "Earth and Planetary Sciences (miscellaneous)",
83
+ "Atmospheric Science",
84
+ "Computers in Earth Sciences",
85
+ "Earth-Surface Processes",
86
+ "Economic Geology",
87
+ "Geochemistry and Petrology",
88
+ "Geology",
89
+ "Geophysics",
90
+ "Geotechnical Engineering and Engineering Geology",
91
+ "Oceanography",
92
+ "Paleontology",
93
+ "Space and Planetary Science",
94
+ "Stratigraphy",
95
+ "Economics, Econometrics and Finance (miscellaneous)",
96
+ "Economics and Econometrics",
97
+ "Finance",
98
+ "Energy (miscellaneous)",
99
+ "Energy Engineering and Power Technology",
100
+ "Fuel Technology",
101
+ "Nuclear Energy and Engineering",
102
+ "Renewable Energy, Sustainability and the Environment",
103
+ "Engineering (miscellaneous)",
104
+ "Aerospace Engineering",
105
+ "Automotive Engineering",
106
+ "Biomedical Engineering",
107
+ "Civil and Structural Engineering",
108
+ "Computational Mechanics",
109
+ "Control and Systems Engineering",
110
+ "Electrical and Electronic Engineering",
111
+ "Industrial and Manufacturing Engineering",
112
+ "Mechanical Engineering",
113
+ "Mechanics of Materials",
114
+ "Ocean Engineering",
115
+ "Safety, Risk, Reliability and Quality",
116
+ "Media Technology",
117
+ "Building and Construction",
118
+ "Architecture",
119
+ "Environmental Science (miscellaneous)",
120
+ "Ecological Modeling",
121
+ "Ecology",
122
+ "Environmental Chemistry",
123
+ "Environmental Engineering",
124
+ "Global and Planetary Change",
125
+ "Health, Toxicology and Mutagenesis",
126
+ "Management, Monitoring, Policy and Law",
127
+ "Nature and Landscape Conservation",
128
+ "Pollution",
129
+ "Waste Management and Disposal",
130
+ "Water Science and Technology",
131
+ "Immunology and Microbiology (miscellaneous)",
132
+ "Applied Microbiology and Biotechnology",
133
+ "Immunology",
134
+ "Microbiology",
135
+ "Parasitology",
136
+ "Virology",
137
+ "Materials Science (miscellaneous)",
138
+ "Biomaterials",
139
+ "Ceramics and Composites",
140
+ "Electronic, Optical and Magnetic Materials",
141
+ "Materials Chemistry",
142
+ "Metals and Alloys",
143
+ "Polymers and Plastics",
144
+ "Surfaces, Coatings and Films",
145
+ "Mathematics (miscellaneous)",
146
+ "Algebra and Number Theory",
147
+ "Analysis",
148
+ "Applied Mathematics",
149
+ "Computational Mathematics",
150
+ "Control and Optimization",
151
+ "Discrete Mathematics and Combinatorics",
152
+ "Geometry and Topology",
153
+ "Logic",
154
+ "Mathematical Physics",
155
+ "Modeling and Simulation",
156
+ "Numerical Analysis",
157
+ "Statistics and Probability",
158
+ "Theoretical Computer Science",
159
+ "Medicine (miscellaneous)",
160
+ "Anatomy",
161
+ "Anesthesiology and Pain Medicine",
162
+ "Biochemistry (medical)",
163
+ "Cardiology and Cardiovascular Medicine",
164
+ "Critical Care and Intensive Care Medicine",
165
+ "Complementary and Alternative Medicine",
166
+ "Dermatology",
167
+ "Drug Guides",
168
+ "Embryology",
169
+ "Emergency Medicine",
170
+ "Endocrinology, Diabetes and Metabolism",
171
+ "Epidemiology",
172
+ "Family Practice",
173
+ "Gastroenterology",
174
+ "Genetics (clinical)",
175
+ "Geriatrics and Gerontology",
176
+ "Health Informatics",
177
+ "Health Policy",
178
+ "Hematology",
179
+ "Hepatology",
180
+ "Histology",
181
+ "Immunology and Allergy",
182
+ "Internal Medicine",
183
+ "Infectious Diseases",
184
+ "Microbiology (medical)",
185
+ "Nephrology",
186
+ "Neurology (clinical)",
187
+ "Obstetrics and Gynecology",
188
+ "Oncology",
189
+ "Ophthalmology",
190
+ "Orthopedics and Sports Medicine",
191
+ "Otorhinolaryngology",
192
+ "Pathology and Forensic Medicine",
193
+ "Pediatrics, Perinatology and Child Health",
194
+ "Pharmacology (medical)",
195
+ "Physiology (medical)",
196
+ "Psychiatry and Mental Health",
197
+ "Public Health, Environmental and Occupational Health",
198
+ "Pulmonary and Respiratory Medicine",
199
+ "Radiology, Nuclear Medicine and Imaging",
200
+ "Rehabilitation",
201
+ "Reproductive Medicine",
202
+ "Reviews and References (medical)",
203
+ "Rheumatology",
204
+ "Surgery",
205
+ "Transplantation",
206
+ "Urology",
207
+ "Neuroscience (miscellaneous)",
208
+ "Behavioral Neuroscience",
209
+ "Biological Psychiatry",
210
+ "Cellular and Molecular Neuroscience",
211
+ "Cognitive Neuroscience",
212
+ "Developmental Neuroscience",
213
+ "Endocrine and Autonomic Systems",
214
+ "Neurology",
215
+ "Sensory Systems",
216
+ "Nursing (miscellaneous)",
217
+ "Advanced and Specialized Nursing",
218
+ "Assessment and Diagnosis",
219
+ "Care Planning",
220
+ "Community and Home Care",
221
+ "Critical Care Nursing",
222
+ "Emergency Nursing",
223
+ "Fundamentals and Skills",
224
+ "Gerontology",
225
+ "Issues, Ethics and Legal Aspects",
226
+ "Leadership and Management",
227
+ "LPN and LVN",
228
+ "Maternity and Midwifery",
229
+ "Medical and Surgical Nursing",
230
+ "Nurse Assisting",
231
+ "Nutrition and Dietetics",
232
+ "Oncology (nursing)",
233
+ "Pathophysiology",
234
+ "Pediatrics",
235
+ "Pharmacology (nursing)",
236
+ "Psychiatric Mental Health",
237
+ "Research and Theory",
238
+ "Review and Exam Preparation",
239
+ "Pharmacology, Toxicology and Pharmaceutics (miscellaneous)",
240
+ "Drug Discovery",
241
+ "Pharmaceutical Science",
242
+ "Pharmacology",
243
+ "Toxicology",
244
+ "Physics and Astronomy (miscellaneous)",
245
+ "Acoustics and Ultrasonics",
246
+ "Astronomy and Astrophysics",
247
+ "Condensed Matter Physics",
248
+ "Instrumentation",
249
+ "Nuclear and High Energy Physics",
250
+ "Atomic and Molecular Physics, and Optics",
251
+ "Radiation",
252
+ "Statistical and Nonlinear Physics",
253
+ "Surfaces and Interfaces",
254
+ "Psychology (miscellaneous)",
255
+ "Applied Psychology",
256
+ "Clinical Psychology",
257
+ "Developmental and Educational Psychology",
258
+ "Experimental and Cognitive Psychology",
259
+ "Neuropsychology and Physiological Psychology",
260
+ "Social Psychology",
261
+ "Social Sciences (miscellaneous)",
262
+ "Archeology",
263
+ "Development",
264
+ "Education",
265
+ "Geography, Planning and Development",
266
+ "Health (social science)",
267
+ "Human Factors and Ergonomics",
268
+ "Law",
269
+ "Library and Information Sciences",
270
+ "Linguistics and Language",
271
+ "Safety Research",
272
+ "Sociology and Political Science",
273
+ "Transportation",
274
+ "Anthropology",
275
+ "Communication",
276
+ "Cultural Studies",
277
+ "Demography",
278
+ "Gender Studies",
279
+ "Life-span and Life-course Studies",
280
+ "Political Science and International Relations",
281
+ "Public Administration",
282
+ "Urban Studies",
283
+ "Veterinary (miscellaneous)",
284
+ "Equine",
285
+ "Food Animals",
286
+ "Small Animals",
287
+ "Dentistry (miscellaneous)",
288
+ "Dental Assisting",
289
+ "Dental Hygiene",
290
+ "Oral Surgery",
291
+ "Orthodontics",
292
+ "Periodontics",
293
+ "Health Professions (miscellaneous)",
294
+ "Chiropractics",
295
+ "Complementary and Manual Therapy",
296
+ "Emergency Medical Services",
297
+ "Health Information Management",
298
+ "Medical Assisting and Transcription",
299
+ "Medical Laboratory Technology",
300
+ "Medical Terminology",
301
+ "Occupational Therapy",
302
+ "Optometry",
303
+ "Pharmacy",
304
+ "Physical Therapy, Sports Therapy and Rehabilitation",
305
+ "Podiatry",
306
+ "Radiological and Ultrasound Technology",
307
+ "Respiratory Care",
308
+ "Speech and Hearing"
309
+ ]