strangekitten commited on
Commit
0fa9bcb
1 Parent(s): 55d7b7c

Upload classes_desc.py

Browse files
Files changed (1) hide show
  1. classes_desc.py +50 -0
classes_desc.py ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ classes = ['cs.AI', 'cs.AR', 'cs.CC', 'cs.CE', 'cs.CG', 'cs.CL', 'cs.CR',
2
+ 'cs.CV', 'cs.CY', 'cs.DB', 'cs.DC', 'cs.DL', 'cs.DM', 'cs.DS', 'cs.ET',
3
+ 'cs.FL', 'cs.GL', 'cs.GR', 'cs.GT', 'cs.HC', 'cs.IR', 'cs.IT', 'cs.LG',
4
+ 'cs.LO', 'cs.MA', 'cs.MM', 'cs.MS', 'cs.NA', 'cs.NE', 'cs.NI', 'cs.OH',
5
+ 'cs.OS', 'cs.PF', 'cs.PL', 'cs.RO', 'cs.SC', 'cs.SD', 'cs.SE', 'cs.SI',
6
+ 'cs.SY']
7
+
8
+
9
+ classes_desc = {
10
+ 'cs.LG': "Machine Learning",
11
+ 'cs.MM': "Multimedia",
12
+ 'cs.DB': "Databases",
13
+ 'cs.OH': "Other Computer Science",
14
+ 'cs.SI': "Social and Information Networks",
15
+ 'cs.PL': "Programming Languages",
16
+ 'cs.CV': "Computer Vision and Pattern Recognition",
17
+ 'cs.AR': "Hardware Architecture",
18
+ 'cs.FL': "Formal Languages and Automata Theory",
19
+ 'cs.SY': "Systems and Control",
20
+ 'cs.HC': "Human-Computer Interaction",
21
+ 'cs.MA': "Multiagent Systems",
22
+ 'cs.DS': "Data Structures and Algorithms",
23
+ 'cs.AI': "Artificial Intelligence",
24
+ 'cs.DL': "Digital Libraries",
25
+ 'cs.RO': "Robotics",
26
+ 'cs.DC': "Distributed, Parallel, and Cluster Computing",
27
+ 'cs.CR': "Cryptography and Security",
28
+ 'cs.NI': "Networking and Internet Architecture",
29
+ 'cs.PF': "Performance",
30
+ 'cs.LO': "Logic in Computer Science",
31
+ 'cs.CC': "Computational Complexity",
32
+ 'cs.SE': "Software Engineering",
33
+ 'cs.DM': "Discrete Mathematics",
34
+ 'cs.MS': "Mathematical Software",
35
+ 'cs.GT': "Computer Science and Game Theory",
36
+ 'cs.CG': "Computational Geometry",
37
+ 'cs.SD': "Sound",
38
+ 'cs.OS': "Operating Systems",
39
+ 'cs.IR': "Information Retrieval",
40
+ 'cs.NA': "Numerical Analysis",
41
+ 'cs.GR': "Graphics",
42
+ 'cs.CY': "Computers and Society",
43
+ 'cs.CL': "Computation and Language",
44
+ 'cs.CE': "Computational Engineering, Finance, and Science",
45
+ 'cs.NE': "Neural and Evolutionary Computing",
46
+ 'cs.IT': "Information Theory",
47
+ 'cs.ET': "Emerging Technologies",
48
+ 'cs.SC': "Symbolic Computation",
49
+ 'cs.GL': "General Literature"
50
+ }