fed3rikko commited on
Commit
c0092f8
1 Parent(s): f44dab8

Upload 5 files

Browse files
Files changed (5) hide show
  1. Untitled.ipynb +0 -0
  2. app.py +80 -0
  3. config.json +338 -0
  4. pytorch_model.bin +3 -0
  5. tags.txt +155 -0
Untitled.ipynb ADDED
The diff for this file is too large to render. See raw diff
 
app.py ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ from transformers import AutoTokenizer, DistilBertForSequenceClassification
4
+ import torch
5
+ from torch.nn.functional import softmax
6
+
7
+
8
+
9
+ base_model_name = 'distilbert-base-uncased'
10
+
11
+ @st.cache
12
+ def load_tags_info():
13
+ tag_to_id = {}
14
+ id_to_tag = {}
15
+ id_to_description = {}
16
+ with open('tags.txt', 'r') as file:
17
+ i = 0
18
+ for line in file:
19
+
20
+ space = line.find(' ')
21
+
22
+ tag = line[:space]
23
+ description = line[space+1:-1]
24
+
25
+ tag_to_id[tag] = i
26
+ id_to_tag[i] = tag
27
+ id_to_description[i] = description
28
+
29
+ i += 1
30
+
31
+ return (tag_to_id, id_to_tag, id_to_description)
32
+
33
+ tag_to_id, id_to_tag, id_to_description = load_tags_info()
34
+
35
+ @st.cache
36
+ def load_model():
37
+ return DistilBertForSequenceClassification.from_pretrained('./')
38
+
39
+ def load_tokenizer():
40
+ return AutoTokenizer.from_pretrained('distilbert-base-uncased')
41
+
42
+ def top_xx(preds, xx=95):
43
+ tops = torch.argsort(preds, 1, descending=True)
44
+ total = 0
45
+ index = 0
46
+ result = []
47
+ while total < xx / 100:
48
+ next_id = tops[0, index].item()
49
+ total += preds[0, next_id]
50
+ index += 1
51
+ result.append({'tag': id_to_tag[next_id], 'description': id_to_description[next_id]})
52
+ return result
53
+
54
+ model = load_model()
55
+ tokenizer = load_tokenizer()
56
+ temperature = 1
57
+
58
+ st.title('ArXivTaxonomizer&copy; (original version)')
59
+ st.caption('If you are aware of any other public services which are illegally providing the ArXivTaxonomizer&copy; functionality, please consider informing us.')
60
+
61
+ with st.form("Taxonomizer"):
62
+
63
+ title = st.text_area(label='Title', height=30)
64
+ abstract = st.text_area(label='Abstract (optional)', height=200)
65
+ st.caption('Lower values will generate a few best guesses. Higher values will lead to a comprehensive list of topics that our model considers relevant. \nEmpirically, values arond 70 work best and generate a list of 3-5 guesses.')
66
+
67
+ submitted = st.form_submit_button("Taxonomize")
68
+ st.caption('We **do not** recommend using ArXivTaxonomizer&copy; to choose tags for you new paper.')
69
+ if submitted:
70
+ if title == '':
71
+ st.markdown("You are most definitely abusing our service. Have the decency to at least enter a title.")
72
+ else:
73
+ prompt = 'Title: ' + title + ' Abstract: ' + abstract
74
+ tokens = tokenizer(prompt, truncation=True, padding='max_length', return_tensors='pt')['input_ids']
75
+ preds = softmax(model(tokens.reshape(1, -1)).logits / temperature, dim=1)
76
+ tags = top_xx(preds)
77
+ other_tags = []
78
+ st.header('Inferred tags:')
79
+ for i, tag_data in enumerate(tags):
80
+ st.markdown('* ' + tag_data['tag'] + ' (' + tag_data['description'] + ')')
config.json ADDED
@@ -0,0 +1,338 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "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
+ },
168
+ "initializer_range": 0.02,
169
+ "label2id": {
170
+ "LABEL_0": 0,
171
+ "LABEL_1": 1,
172
+ "LABEL_10": 10,
173
+ "LABEL_100": 100,
174
+ "LABEL_101": 101,
175
+ "LABEL_102": 102,
176
+ "LABEL_103": 103,
177
+ "LABEL_104": 104,
178
+ "LABEL_105": 105,
179
+ "LABEL_106": 106,
180
+ "LABEL_107": 107,
181
+ "LABEL_108": 108,
182
+ "LABEL_109": 109,
183
+ "LABEL_11": 11,
184
+ "LABEL_110": 110,
185
+ "LABEL_111": 111,
186
+ "LABEL_112": 112,
187
+ "LABEL_113": 113,
188
+ "LABEL_114": 114,
189
+ "LABEL_115": 115,
190
+ "LABEL_116": 116,
191
+ "LABEL_117": 117,
192
+ "LABEL_118": 118,
193
+ "LABEL_119": 119,
194
+ "LABEL_12": 12,
195
+ "LABEL_120": 120,
196
+ "LABEL_121": 121,
197
+ "LABEL_122": 122,
198
+ "LABEL_123": 123,
199
+ "LABEL_124": 124,
200
+ "LABEL_125": 125,
201
+ "LABEL_126": 126,
202
+ "LABEL_127": 127,
203
+ "LABEL_128": 128,
204
+ "LABEL_129": 129,
205
+ "LABEL_13": 13,
206
+ "LABEL_130": 130,
207
+ "LABEL_131": 131,
208
+ "LABEL_132": 132,
209
+ "LABEL_133": 133,
210
+ "LABEL_134": 134,
211
+ "LABEL_135": 135,
212
+ "LABEL_136": 136,
213
+ "LABEL_137": 137,
214
+ "LABEL_138": 138,
215
+ "LABEL_139": 139,
216
+ "LABEL_14": 14,
217
+ "LABEL_140": 140,
218
+ "LABEL_141": 141,
219
+ "LABEL_142": 142,
220
+ "LABEL_143": 143,
221
+ "LABEL_144": 144,
222
+ "LABEL_145": 145,
223
+ "LABEL_146": 146,
224
+ "LABEL_147": 147,
225
+ "LABEL_148": 148,
226
+ "LABEL_149": 149,
227
+ "LABEL_15": 15,
228
+ "LABEL_150": 150,
229
+ "LABEL_151": 151,
230
+ "LABEL_152": 152,
231
+ "LABEL_153": 153,
232
+ "LABEL_154": 154,
233
+ "LABEL_16": 16,
234
+ "LABEL_17": 17,
235
+ "LABEL_18": 18,
236
+ "LABEL_19": 19,
237
+ "LABEL_2": 2,
238
+ "LABEL_20": 20,
239
+ "LABEL_21": 21,
240
+ "LABEL_22": 22,
241
+ "LABEL_23": 23,
242
+ "LABEL_24": 24,
243
+ "LABEL_25": 25,
244
+ "LABEL_26": 26,
245
+ "LABEL_27": 27,
246
+ "LABEL_28": 28,
247
+ "LABEL_29": 29,
248
+ "LABEL_3": 3,
249
+ "LABEL_30": 30,
250
+ "LABEL_31": 31,
251
+ "LABEL_32": 32,
252
+ "LABEL_33": 33,
253
+ "LABEL_34": 34,
254
+ "LABEL_35": 35,
255
+ "LABEL_36": 36,
256
+ "LABEL_37": 37,
257
+ "LABEL_38": 38,
258
+ "LABEL_39": 39,
259
+ "LABEL_4": 4,
260
+ "LABEL_40": 40,
261
+ "LABEL_41": 41,
262
+ "LABEL_42": 42,
263
+ "LABEL_43": 43,
264
+ "LABEL_44": 44,
265
+ "LABEL_45": 45,
266
+ "LABEL_46": 46,
267
+ "LABEL_47": 47,
268
+ "LABEL_48": 48,
269
+ "LABEL_49": 49,
270
+ "LABEL_5": 5,
271
+ "LABEL_50": 50,
272
+ "LABEL_51": 51,
273
+ "LABEL_52": 52,
274
+ "LABEL_53": 53,
275
+ "LABEL_54": 54,
276
+ "LABEL_55": 55,
277
+ "LABEL_56": 56,
278
+ "LABEL_57": 57,
279
+ "LABEL_58": 58,
280
+ "LABEL_59": 59,
281
+ "LABEL_6": 6,
282
+ "LABEL_60": 60,
283
+ "LABEL_61": 61,
284
+ "LABEL_62": 62,
285
+ "LABEL_63": 63,
286
+ "LABEL_64": 64,
287
+ "LABEL_65": 65,
288
+ "LABEL_66": 66,
289
+ "LABEL_67": 67,
290
+ "LABEL_68": 68,
291
+ "LABEL_69": 69,
292
+ "LABEL_7": 7,
293
+ "LABEL_70": 70,
294
+ "LABEL_71": 71,
295
+ "LABEL_72": 72,
296
+ "LABEL_73": 73,
297
+ "LABEL_74": 74,
298
+ "LABEL_75": 75,
299
+ "LABEL_76": 76,
300
+ "LABEL_77": 77,
301
+ "LABEL_78": 78,
302
+ "LABEL_79": 79,
303
+ "LABEL_8": 8,
304
+ "LABEL_80": 80,
305
+ "LABEL_81": 81,
306
+ "LABEL_82": 82,
307
+ "LABEL_83": 83,
308
+ "LABEL_84": 84,
309
+ "LABEL_85": 85,
310
+ "LABEL_86": 86,
311
+ "LABEL_87": 87,
312
+ "LABEL_88": 88,
313
+ "LABEL_89": 89,
314
+ "LABEL_9": 9,
315
+ "LABEL_90": 90,
316
+ "LABEL_91": 91,
317
+ "LABEL_92": 92,
318
+ "LABEL_93": 93,
319
+ "LABEL_94": 94,
320
+ "LABEL_95": 95,
321
+ "LABEL_96": 96,
322
+ "LABEL_97": 97,
323
+ "LABEL_98": 98,
324
+ "LABEL_99": 99
325
+ },
326
+ "max_position_embeddings": 512,
327
+ "model_type": "distilbert",
328
+ "n_heads": 12,
329
+ "n_layers": 6,
330
+ "pad_token_id": 0,
331
+ "qa_dropout": 0.1,
332
+ "seq_classif_dropout": 0.2,
333
+ "sinusoidal_pos_embds": false,
334
+ "tie_weights_": true,
335
+ "torch_dtype": "float32",
336
+ "transformers_version": "4.28.1",
337
+ "vocab_size": 30522
338
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c8f30540e3f618551d9d8a2c2f8a76cfcf9008187df7526eeab7a6e4d731c9d
3
+ size 268326125
tags.txt ADDED
@@ -0,0 +1,155 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ cs.AI Artificial Intelligence
2
+ cs.AR Hardware Architecture
3
+ cs.CC Computational Complexity
4
+ cs.CE Computational Engineering, Finance, and Science
5
+ cs.CG Computational Geometry
6
+ cs.CL Computation and Language
7
+ cs.CR Cryptography and Security
8
+ cs.CV Computer Vision and Pattern Recognition
9
+ cs.CY Computers and Society
10
+ cs.DB Databases
11
+ cs.DC Distributed, Parallel, and Cluster Computing
12
+ cs.DL Digital Libraries
13
+ cs.DM Discrete Mathematics
14
+ cs.DS Data Structures and Algorithms
15
+ cs.ET Emerging Technologies
16
+ cs.FL Formal Languages and Automata Theory
17
+ cs.GL General Literature
18
+ cs.GR Graphics
19
+ cs.GT Computer Science and Game Theory
20
+ cs.HC Human-Computer Interaction
21
+ cs.IR Information Retrieval
22
+ cs.IT Information Theory
23
+ cs.LG Machine Learning
24
+ cs.LO Logic in Computer Science
25
+ cs.MA Multiagent Systems
26
+ cs.MM Multimedia
27
+ cs.MS Mathematical Software
28
+ cs.NA Numerical Analysis
29
+ cs.NE Neural and Evolutionary Computing
30
+ cs.NI Networking and Internet Architecture
31
+ cs.OH Other Computer Science
32
+ cs.OS Operating Systems
33
+ cs.PF Performance
34
+ cs.PL Programming Languages
35
+ cs.RO Robotics
36
+ cs.SC Symbolic Computation
37
+ cs.SD Sound
38
+ cs.SE Software Engineering
39
+ cs.SI Social and Information Networks
40
+ cs.SY Systems and Control
41
+ econ.EM Econometrics
42
+ econ.GN General Economics
43
+ econ.TH Theoretical Economics
44
+ eess.AS Audio and Speech Processing
45
+ eess.IV Image and Video Processing
46
+ eess.SP Signal Processing
47
+ eess.SY Systems and Control
48
+ math.AC Commutative Algebra
49
+ math.AG Algebraic Geometry
50
+ math.AP Analysis of PDEs
51
+ math.AT Algebraic Topology
52
+ math.CA Classical Analysis and ODEs
53
+ math.CO Combinatorics
54
+ math.CT Category Theory
55
+ math.CV Complex Variables
56
+ math.DG Differential Geometry
57
+ math.DS Dynamical Systems
58
+ math.FA Functional Analysis
59
+ math.GM General Mathematics
60
+ math.GN General Topology
61
+ math.GR Group Theory
62
+ math.GT Geometric Topology
63
+ math.HO History and Overview
64
+ math.IT Information Theory
65
+ math.KT K-Theory and Homology
66
+ math.LO Logic
67
+ math.MG Metric Geometry
68
+ math.MP Mathematical Physics
69
+ math.NA Numerical Analysis
70
+ math.NT Number Theory
71
+ math.OA Operator Algebras
72
+ math.OC Optimization and Control
73
+ math.PR Probability
74
+ math.QA Quantum Algebra
75
+ math.RA Rings and Algebras
76
+ math.RT Representation Theory
77
+ math.SG Symplectic Geometry
78
+ math.SP Spectral Theory
79
+ math.ST Statistics Theory
80
+ astro-ph.CO Cosmology and Nongalactic Astrophysics
81
+ astro-ph.EP Earth and Planetary Astrophysics
82
+ astro-ph.GA Astrophysics of Galaxies
83
+ astro-ph.HE High Energy Astrophysical Phenomena
84
+ astro-ph.IM Instrumentation and Methods for Astrophysics
85
+ astro-ph.SR Solar and Stellar Astrophysics
86
+ cond-mat.dis-nn Disordered Systems and Neural Networks
87
+ cond-mat.mes-hall Mesoscale and Nanoscale Physics
88
+ cond-mat.mtrl-sci Materials Science
89
+ cond-mat.other Other Condensed Matter
90
+ cond-mat.quant-gas Quantum Gases
91
+ cond-mat.soft Soft Condensed Matter
92
+ cond-mat.stat-mech Statistical Mechanics
93
+ cond-mat.str-el Strongly Correlated Electrons
94
+ cond-mat.supr-con Superconductivity
95
+ gr-qc General Relativity and Quantum Cosmology
96
+ hep-ex High Energy Physics - Experiment
97
+ hep-lat High Energy Physics - Lattice
98
+ hep-ph High Energy Physics - Phenomenology
99
+ hep-th High Energy Physics - Theory
100
+ math-ph Mathematical Physics
101
+ nlin.AO Adaptation and Self-Organizing Systems
102
+ nlin.CD Chaotic Dynamics
103
+ nlin.CG Cellular Automata and Lattice Gases
104
+ nlin.PS Pattern Formation and Solitons
105
+ nlin.SI Exactly Solvable and Integrable Systems
106
+ nucl-ex Nuclear Experiment
107
+ nucl-th Nuclear Theory
108
+ physics.acc-ph Accelerator Physics
109
+ physics.ao-ph Atmospheric and Oceanic Physics
110
+ physics.app-ph Applied Physics
111
+ physics.atm-clus Atomic and Molecular Clusters
112
+ physics.atom-ph Atomic Physics
113
+ physics.bio-ph Biological Physics
114
+ physics.chem-ph Chemical Physics
115
+ physics.class-ph Classical Physics
116
+ physics.comp-ph Computational Physics
117
+ physics.data-an Data Analysis, Statistics and Probability
118
+ physics.ed-ph Physics Education
119
+ physics.flu-dyn Fluid Dynamics
120
+ physics.gen-ph General Physics
121
+ physics.geo-ph Geophysics
122
+ physics.hist-ph History and Philosophy of Physics
123
+ physics.ins-det Instrumentation and Detectors
124
+ physics.med-ph Medical Physics
125
+ physics.optics Optics
126
+ physics.plasm-ph Plasma Physics
127
+ physics.pop-ph Popular Physics
128
+ physics.soc-ph Physics and Society
129
+ physics.space-ph Space Physics
130
+ quant-ph Quantum Physics
131
+ q-bio.BM Biomolecules
132
+ q-bio.CB Cell Behavior
133
+ q-bio.GN Genomics
134
+ q-bio.MN Molecular Networks
135
+ q-bio.NC Neurons and Cognition
136
+ q-bio.OT Other Quantitative Biology
137
+ q-bio.PE Populations and Evolution
138
+ q-bio.QM Quantitative Methods
139
+ q-bio.SC Subcellular Processes
140
+ q-bio.TO Tissues and Organs
141
+ q-fin.CP Computational Finance
142
+ q-fin.EC Economics
143
+ q-fin.GN General Finance
144
+ q-fin.MF Mathematical Finance
145
+ q-fin.PM Portfolio Management
146
+ q-fin.PR Pricing of Securities
147
+ q-fin.RM Risk Management
148
+ q-fin.ST Statistical Finance
149
+ q-fin.TR Trading and Market Microstructure
150
+ stat.AP Applications
151
+ stat.CO Computation
152
+ stat.ME Methodology
153
+ stat.ML Machine Learning
154
+ stat.OT Other Statistics
155
+ stat.TH Statistics Theory