-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathvenues.json
More file actions
1011 lines (1011 loc) · 31.1 KB
/
Copy pathvenues.json
File metadata and controls
1011 lines (1011 loc) · 31.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"ACL": {
"name": "Annual Meeting of the Association for Computational Linguistics",
"type": "conference",
"aliases": [
"Association for Computational Linguistics",
"Associations of computation linguistics",
"Assofications of computation linguisitcs",
"Association of Computational Linguistics",
"Association of Computation Linguistics",
"Association of Computation Linguisicts",
"61st Annual Meeting of the Association for Computational Linguistics"
]
},
"Findings of ACL": {
"name": "Findings of the Association for Computational Linguistics",
"type": "conference",
"aliases": [
"Findings of Associations of Computation Linguistics",
"Findings of Associations of computation linguistics"
]
},
"EMNLP": {
"name": "Conference on Empirical Methods in Natural Language Processing",
"type": "conference",
"aliases": [
"Empirical Methods in Natural Language Processing",
"Empirical Methods in Natural Language Processing Conference"
]
},
"Findings of EMNLP": {
"name": "Findings of the Conference on Empirical Methods in Natural Language Processing",
"type": "conference",
"aliases": [
"findings of Conference on Empirical Methods in Natural Language Processing"
]
},
"LREC": {
"name": "International Conference on Language Resources and Evaluation",
"type": "conference",
"aliases": [
"Language Resources and Evaluation Conference",
"Language Resources Evaluation Conference",
"Language and Resources Evaluation Conference",
"Langauge and Resources Evaluation Conference",
"Language Resource and Evaluation Conference",
"Language Resources and Evaluation Conference (LREC)"
]
},
"LREC-COLING": {
"name": "Joint International Conference on Computational Linguistics, Language Resources and Evaluation",
"type": "conference",
"aliases": []
},
"LRE": {
"name": "Language Resources and Evaluation",
"type": "journal",
"aliases": [
"Language Resource and Evaluation",
"Language Resources & Evaluation"
]
},
"COLING": {
"name": "International Conference on Computational Linguistics",
"type": "conference",
"aliases": ["Conference on Computational Linguistics"]
},
"WANLP": {
"name": "Arabic Natural Language Processing Workshop",
"type": "workshop",
"aliases": [
"Workshop on Arabic Natural Language Processing",
"Arabic Natural Language Processing",
"The Third Arabic Natural Language Processing Workshop",
"The Sixth Arabic Natural Language Processing Workshop"
]
},
"ArabicNLP": {
"name": "Arabic Natural Language Processing Conference",
"type": "conference",
"aliases": [
"The First Arabic Natural Language Processing Conference",
"First Arabic Natural Language Processing Conference"
]
},
"WACL": {
"name": "Workshop on Arabic Corpus Linguistics",
"type": "workshop",
"aliases": []
},
"OSACT": {
"name": "Workshop on Open-Source Arabic Corpora and Processing Tools",
"type": "workshop",
"aliases": [
"Open-Source Arabic Corpora and Processing Tools",
"The 6th Workshop on Open-Source Arabic Corpora and Processing Tools"
]
},
"SemEval": {
"name": "International Workshop on Semantic Evaluation",
"type": "workshop",
"aliases": ["Semantic Evaluation"]
},
"EACL": {
"name": "Conference of the European Chapter of the Association for Computational Linguistics",
"type": "conference",
"aliases": [
"European Chapter of the Association for Computational Linguistics",
"The 18th Conference of the European Chapter of the Association for Computational Linguistics"
]
},
"Findings of EACL": {
"name": "Findings of the European Chapter of the Association for Computational Linguistics",
"type": "conference",
"aliases": ["EACL Findings"]
},
"NAACL": {
"name": "Conference of the North American Chapter of the Association for Computational Linguistics",
"type": "conference",
"aliases": [
"North American Chapter of the Association for Computational Linguistics",
"North American Chapter of the Association for Computational Linguistics: Human Language Technologies",
"Nations of the Americas Chapter of the Association for Computational Linguistics",
"Conference of the Nations of the Americas Chapter of the Association for Computational Linguistics",
"NACCL"
]
},
"AACL": {
"name": "Asia-Pacific Chapter of the Association for Computational Linguistics",
"type": "conference",
"aliases": []
},
"RANLP": {
"name": "Recent Advances in Natural Language Processing",
"type": "conference",
"aliases": []
},
"Interspeech": {
"name": "Conference of the International Speech Communication Association",
"type": "conference",
"aliases": ["Interspeech", "Interspeech Conference"]
},
"NeurIPS": {
"name": "Conference on Neural Information Processing Systems",
"type": "conference",
"aliases": ["Neural Information Processing Systems"]
},
"ICLR": {
"name": "International Conference on Learning Representations",
"type": "conference",
"aliases": []
},
"ICML": {
"name": "International Conference on Machine Learning",
"type": "conference",
"aliases": []
},
"COLM": {
"name": "Conference on Language Modeling",
"type": "conference",
"aliases": []
},
"AAAI": {
"name": "AAAI Conference on Artificial Intelligence",
"type": "conference",
"aliases": [
"Association for the Advancement of Artificial Intelligence"
]
},
"CLEF": {
"name": "Conference and Labs of the Evaluation Forum",
"type": "conference",
"aliases": [
"International Conference of the Cross-Language Evaluation Forum for European Languages"
]
},
"AICCSA": {
"name": "International Conference on Computer Systems and Applications",
"type": "conference",
"aliases": []
},
"ASRU": {
"name": "IEEE Automatic Speech Recognition and Understanding Workshop",
"type": "workshop",
"aliases": []
},
"ICASSP": {
"name": "International Conference on Acoustics, Speech and Signal Processing",
"type": "conference",
"aliases": []
},
"ICNLSP": {
"name": "International Conference on Natural Language and Speech Processing",
"type": "conference",
"aliases": []
},
"ACLing": {
"name": "International Conference on AI in Computational Linguistics",
"type": "conference",
"aliases": [
"International Conference on Arabic Computational Linguistics"
]
},
"CICLing": {
"name": "International Conference on Computational Linguistics and Intelligent Text Processing",
"type": "conference",
"aliases": []
},
"PACLIC": {
"name": "Pacific Asia Conference on Language, Information and Computation",
"type": "conference",
"aliases": []
},
"CoNLL": {
"name": "Conference on Computational Natural Language Learning",
"type": "conference",
"aliases": []
},
"IALP": {
"name": "International Conference on Asian Language Processing",
"type": "conference",
"aliases": []
},
"IJCNLP": {
"name": "International Joint Conference on Natural Language Processing",
"type": "conference",
"aliases": []
},
"IWSLT": {
"name": "International Workshop on Spoken Language Translation",
"type": "workshop",
"aliases": []
},
"ALW": {
"name": "Workshop on Abusive Language Online",
"type": "workshop",
"aliases": ["Abusive Language Online"]
},
"CALCS": {
"name": "Workshop on Computational Approaches to Linguistic Code-Switching",
"type": "workshop",
"aliases": ["Workshop on Computational Approaches to Code Switching"]
},
"GeBNLP": {
"name": "Workshop on Gender Bias in Natural Language Processing",
"type": "workshop",
"aliases": []
},
"W-NUT": {
"name": "Workshop on Noisy User-generated Text",
"type": "workshop",
"aliases": []
},
"FEVER": {
"name": "Workshop on Fact Extraction and Verification",
"type": "workshop",
"aliases": []
},
"NLP4IF": {
"name": "Workshop on NLP for Internet Freedom",
"type": "workshop",
"aliases": ["NLP for Internet Freedom"]
},
"NLP+CSS": {
"name": "Workshop on NLP and Computational Social Science",
"type": "workshop",
"aliases": []
},
"BEA": {
"name": "Workshop on Innovative Use of NLP for Building Educational Applications",
"type": "workshop",
"aliases": [
"Innovative Use of NLP for Building Educational Applications"
]
},
"SIGDIAL": {
"name": "Special Interest Group on Discourse and Dialogue",
"type": "conference",
"aliases": []
},
"SIGIR": {
"name": "ACM SIGIR Conference on Research and Development in Information Retrieval",
"type": "conference",
"aliases": ["Special Interest Group on Information Retrieval"]
},
"Depling": {
"name": "International Conference on Dependency Linguistics",
"type": "conference",
"aliases": ["Conference on Dependency Linguistics"]
},
"ICWSM": {
"name": "International AAAI Conference on Web and Social Media",
"type": "conference",
"aliases": ["International Conference on Web and Social Media"]
},
"FIRE": {
"name": "Forum for Information Retrieval Evaluation",
"type": "conference",
"aliases": []
},
"ICDAR": {
"name": "International Conference on Document Analysis and Recognition",
"type": "conference",
"aliases": []
},
"ICDARW": {
"name": "International Conference on Document Analysis and Recognition Workshops",
"type": "workshop",
"aliases": []
},
"EAMT": {
"name": "European Association for Machine Translation",
"type": "conference",
"aliases": []
},
"MT Summit": {
"name": "Machine Translation Summit",
"type": "conference",
"aliases": ["Machine Translation Summit XII"]
},
"EDUCON": {
"name": "IEEE Global Engineering Education Conference",
"type": "conference",
"aliases": []
},
"ACIT": {
"name": "International Arab Conference on Information Technology",
"type": "conference",
"aliases": []
},
"loreslm": {
"name": "Workshop on Language Models for Low-Resource Languages",
"type": "workshop",
"aliases": ["Language Models for Low-Resource Languages"]
},
"TACL": {
"name": "Transactions of the Association for Computational Linguistics",
"type": "journal",
"aliases": []
},
"TALLIP": {
"name": "ACM Transactions on Asian and Low-Resource Language Information Processing",
"type": "journal",
"aliases": []
},
"JAIR": {
"name": "Journal of Artificial Intelligence Research",
"type": "journal",
"aliases": []
},
"JMLR": {
"name": "Journal of Machine Learning Research",
"type": "journal",
"aliases": []
},
"PMLR": {
"name": "Proceedings of Machine Learning Research",
"type": "journal",
"aliases": []
},
"NLE": {
"name": "Natural Language Engineering",
"type": "journal",
"aliases": []
},
"Data in Brief": {
"name": "Data in Brief",
"type": "journal",
"aliases": ["Data Brief"]
},
"IEEE Access": {
"name": "IEEE Access",
"type": "journal",
"aliases": []
},
"PLOS ONE": {
"name": "PLOS ONE",
"type": "journal",
"aliases": []
},
"PeerJ Comput. Sci.": {
"name": "PeerJ Computer Science",
"type": "journal",
"aliases": []
},
"Appl. Sci.": {
"name": "Applied Sciences",
"type": "journal",
"aliases": ["Applied Sciences Journal"]
},
"NCAA": {
"name": "Neural Computing and Applications",
"type": "journal",
"aliases": []
},
"JKSU": {
"name": "Journal of King Saud University",
"type": "journal",
"aliases": []
},
"IJACSA": {
"name": "International Journal of Advanced Computer Science and Applications",
"type": "journal",
"aliases": []
},
"JIS": {
"name": "Journal of Information Science",
"type": "journal",
"aliases": []
},
"IAJIT": {
"name": "The International Arab Journal of Information Technology",
"type": "journal",
"aliases": []
},
"IJDAR": {
"name": "International Journal on Document Analysis and Recognition",
"type": "journal",
"aliases": []
},
"OSNEM": {
"name": "Online Social Networks and Media",
"type": "journal",
"aliases": []
},
"arXiv": {
"name": "arXiv",
"type": "preprint",
"aliases": ["arxiv preprint", "viXra"]
},
"ENLSP": {
"name": "Efficient Natural Language and Speech Processing",
"type": "conference",
"aliases": []
},
"WAT": {
"name": "Workshop on Asian Translation",
"type": "workshop",
"aliases": ["Workshop on Asian Translation (WAT)"]
},
"EIJ": {
"name": "Egyptian Informatics Journal",
"type": "journal",
"aliases": []
},
"EDiS": {
"name": "International Conference on Signal, Image and Data Engineering",
"type": "conference",
"aliases": []
},
"PJACNS": {
"name": "The Polish Journal of the Arts and Culture. New Series",
"type": "journal",
"aliases": []
},
"AbjadNLP": {
"name": "Workshop on NLP for Languages Using Arabic Script",
"type": "workshop",
"aliases": []
},
"ESOLEC": {
"name": "International Conference on Language Engineering",
"type": "conference",
"aliases": [
"7th international conference on language engineering, Cairo, Egypt"
]
},
"SENSET": {
"name": "Sensors Networks Smart and Emerging Technologies",
"type": "conference",
"aliases": []
},
"ITS": {
"name": "IEEE Transactions on Intelligent Transportation Systems",
"type": "journal",
"aliases": []
},
"AIRS": {
"name": "Asia Information Retrieval Societies Conference",
"type": "conference",
"aliases": []
},
"AIxIA": {
"name": "International Conference of the Italian Association for Artificial Intelligence",
"type": "conference",
"aliases": []
},
"AMLTA": {
"name": "International Conference on Advanced Machine Learning Technologies and Applications",
"type": "conference",
"aliases": []
},
"ASONAM": {
"name": "IEEE/ACM International Conference on Advances in Social Networks Analysis and Mining",
"type": "conference",
"aliases": []
},
"BUCC": {
"name": "Workshop on Building and Using Comparable Corpora",
"type": "workshop",
"aliases": []
},
"CAMP": {
"name": "International Conference on Information Retrieval and Knowledge Management",
"type": "conference",
"aliases": []
},
"CBI": {
"name": "International Conference of Business Intelligence",
"type": "conference",
"aliases": []
},
"CCIS": {
"name": "Communications in Computer and Information Science",
"type": "journal",
"aliases": []
},
"CHR": {
"name": "Computational Humanities Research",
"type": "conference",
"aliases": []
},
"CSCI": {
"name": "International Conference on Computational Science and Computational Intelligence",
"type": "conference",
"aliases": ["Computer Science journal"]
},
"CSIT": {
"name": "International Conference on Computer Science and Information Technologies",
"type": "conference",
"aliases": []
},
"Cognitive Computation": {
"name": "Cognitive Computation",
"type": "journal",
"aliases": []
},
"Computación y Sistemas": {
"name": "Computación y Sistemas",
"type": "journal",
"aliases": []
},
"Corpora": {
"name": "Corpora",
"type": "journal",
"aliases": []
},
"Data": {
"name": "Data",
"type": "journal",
"aliases": []
},
"EAAI": {
"name": "Engineering Applications of Artificial Intelligence",
"type": "journal",
"aliases": []
},
"EAIT": {
"name": "Education and Information Technologies",
"type": "journal",
"aliases": []
},
"Expert Systems": {
"name": "Expert Systems",
"type": "journal",
"aliases": ["Expert Systems published by John Wiley & Sons Ltd"]
},
"FiCloud": {
"name": "International Conference on Future Internet of Things and Cloud",
"type": "conference",
"aliases": ["Conference on Future Internet of Things and Cloud"]
},
"Frontiers in Artificial Intelligence": {
"name": "Frontiers in Artificial Intelligence",
"type": "journal",
"aliases": []
},
"GEM": {
"name": "Workshop on Generation, Evaluation and Metrics",
"type": "workshop",
"aliases": ["Generation Evaluation and Metrics"]
},
"IC3K": {
"name": "International Joint Conference on Knowledge Discovery, Knowledge Engineering and Knowledge Management",
"type": "conference",
"aliases": [
"Joint Conference on Knowledge Discovery, Knowledge Engineering and Knowledge Management"
]
},
"ICAART": {
"name": "International Conference on Agents and Artificial Intelligence",
"type": "conference",
"aliases": ["Conference on Agents and Artificial Intelligence"]
},
"ICAISC": {
"name": "International Conference on Advanced Innovations in Smart Cities",
"type": "conference",
"aliases": [
"2023 1st International Conference on Advanced Innovations in Smart Cities"
]
},
"ICALP": {
"name": "Arabic Language Processing: From Theory to Practice",
"type": "conference",
"aliases": []
},
"ICANN": {
"name": "International Conference on Artificial Neural Networks",
"type": "conference",
"aliases": []
},
"ICCAIS": {
"name": "International Conference on Computer Applications & Information Security",
"type": "conference",
"aliases": []
},
"ICCCEEE": {
"name": "International Conference on Computer, Control, Electrical, and Electronics Engineering",
"type": "conference",
"aliases": [
"2020 International Conference on Computer, Control, Electrical, and Electronics Engineering",
"International Conference on Computer, Control, Electrical, and Electronics Engineering 2018"
]
},
"ICCCI": {
"name": "International Conference on Computational Collective Intelligence",
"type": "conference",
"aliases": [
"international scientific conference for research in the field of Computational Collective Intelligence"
]
},
"ICCIS": {
"name": "International Conference on Computer and Information Sciences",
"type": "conference",
"aliases": []
},
"ICCKE": {
"name": "International Conference on Computer and Knowledge Engineering",
"type": "conference",
"aliases": []
},
"ICCSAITCS": {
"name": "International Conference on Cyber Security, Artificial Intelligence and Theoretical Computer Science",
"type": "conference",
"aliases": []
},
"ICECCE": {
"name": "International Conference on Electrical, Communication and Computer Engineering",
"type": "conference",
"aliases": []
},
"ICECCME": {
"name": "International Conference on Electrical, Computer, Communications and Mechatronics Engineering",
"type": "conference",
"aliases": []
},
"ICICoS": {
"name": "IEEE International Conference on Intelligent Computing and Systems",
"type": "conference",
"aliases": []
},
"ICIHT": {
"name": "International Conference on Informatics, Health & Technology",
"type": "conference",
"aliases": [
"Proceeding of International Conference on Informatics, Health & Technology"
]
},
"IDEAS": {
"name": "International Conference on Intelligent Data Engineering and Automated Systems",
"type": "conference",
"aliases": []
},
"IEA/AIE": {
"name": "International Conference on Industrial, Engineering and Other Applications of Applied Intelligent Systems",
"type": "conference",
"aliases": []
},
"IEEE BigData": {
"name": "IEEE International Conference on Big Data",
"type": "conference",
"aliases": ["IEEE International Conference on Big Data (Big Data)"]
},
"IEEE FG": {
"name": "IEEE International Conference on Automatic Face and Gesture Recognition",
"type": "conference",
"aliases": []
},
"IJASAT": {
"name": "International Journal on Islamic Applications in Computer Science And Technologies",
"type": "journal",
"aliases": []
},
"IJCA": {
"name": "International Journal of Computer Applications",
"type": "journal",
"aliases": []
},
"IJCDS": {
"name": "International Journal of Computing and Digital Systems",
"type": "journal",
"aliases": []
},
"IJCI": {
"name": "Iraqi Journal of Computer and Informatics",
"type": "journal",
"aliases": []
},
"IJECE": {
"name": "International Journal of Electrical and Computer Engineering",
"type": "journal",
"aliases": []
},
"IJITCS": {
"name": "International Journal of Information Technology and Computer Science",
"type": "journal",
"aliases": []
},
"IJST": {
"name": "International Journal of Speech Technology",
"type": "journal",
"aliases": []
},
"INCoS": {
"name": "International Conference on Intelligent Networking and Collaborative Systems",
"type": "conference",
"aliases": []
},
"INLP": {
"name": "Intelligent Natural Language Processing: Trends and Applications",
"type": "conference",
"aliases": []
},
"PICICT": {
"name": "Palestinian International Conference on Information and Communication Technology",
"type": "conference",
"aliases": ["IPICICT"]
},
"IRJ": {
"name": "Information Retrieval Journal",
"type": "journal",
"aliases": []
},
"ISCKU": {
"name": "International Scientific Conference of Alkafeel University",
"type": "conference",
"aliases": []
},
"ITCE": {
"name": "International Conference on Innovative Trends in Communication and Computer Engineering",
"type": "conference",
"aliases": []
},
"Information Sciences": {
"name": "Information Sciences",
"type": "journal",
"aliases": []
},
"Inteligencia Artificial": {
"name": "Inteligencia Artificial",
"type": "journal",
"aliases": ["Inteligencia Artifical"]
},
"IntelliSys": {
"name": "Intelligent Systems Conference",
"type": "conference",
"aliases": []
},
"JASIST": {
"name": "Journal of the Association for Information Science and Technology",
"type": "journal",
"aliases": []
},
"JEA": {
"name": "Journal of Umm Al-Qura University for Engineering and Architecture",
"type": "journal",
"aliases": []
},
"JES": {
"name": "Journal of Engineering Sciences",
"type": "journal",
"aliases": []
},
"LDK": {
"name": "Language, Data and Knowledge Conference",
"type": "conference",
"aliases": []
},
"LT4DH": {
"name": "Workshop on Language Technology Resources and Tools for Digital Humanities",
"type": "workshop",
"aliases": []
},
"MEDI": {
"name": "International Conference on Model and Data Engineering",
"type": "conference",
"aliases": []
},
"NL4DH": {
"name": "International Conference on Natural Language Processing for Digital Humanities",
"type": "workshop",
"aliases": []
},
"NLP": {
"name": "Natural Language Processing",
"type": "journal",
"aliases": []
},
"NLP4PI": {
"name": "Workshop on NLP for Positive Impact",
"type": "workshop",
"aliases": ["NLP for Positive Impact"]
},
"Nakba-NLP": {
"name": "Nakba Narratives as Language Resources",
"type": "workshop",
"aliases": []
},
"PSBS": {
"name": "Procedia Social and Behavioral Sciences",
"type": "journal",
"aliases": []
},
"Pattern Recognition": {
"name": "Pattern Recognition",
"type": "journal",
"aliases": []
},
"RDSM": {
"name": "International Workshop on Rumours and Deception in Social Media",
"type": "workshop",
"aliases": []
},
"ResearchGate": {
"name": "ResearchGate",
"type": "preprint",
"aliases": []
},
"SCA": {
"name": "Smart City Applications International Conference",
"type": "conference",
"aliases": []
},
"SIGDAT": {
"name": "Special Interest Group on Linguistic data and corpus-based approaches to NLP",
"type": "conference",
"aliases": []
},
"SN Computer Science": {
"name": "SN Computer Science",
"type": "journal",
"aliases": []
},
"STJITMO": {
"name": "Scientific and Technical Journal of Information Technologies, Mechanics and Optics",
"type": "journal",
"aliases": []
},
"WCECS": {
"name": "World Congress on Engineering and Computer Science",
"type": "conference",
"aliases": []
},
"WISE": {
"name": "Web Information Systems Engineering",
"type": "conference",
"aliases": []
},
"LT-EDI": {
"name": "Workshop on Language Technology for Equality, Diversity and Inclusion",
"type": "workshop",
"aliases": ["ltedi"]
},
"NLP-KE": {
"name": "International Conference on Natural Language Processing and Knowledge Engineering",
"type": "conference",
"aliases": [
"IEEE International Conference on Natural Language Processing"
]
},
"CITALA": {
"name": "International Conference on Arabic Language Processing",
"type": "conference",
"aliases": []
},
"ICMLA": {
"name": "International Conference on Machine Learning and Applications",
"type": "conference",
"aliases": []
},
"NAACL-HLT": {
"name": "Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies",
"type": "conference",
"aliases": []
},
"AICSP": {
"name": "Analog Integrated Circuits and Signal Processing",
"type": "journal",
"aliases": []
},
"OSFPreprints": {
"name": "OSFPreprints",
"type": "preprint",
"aliases": []
},
"": {
"name": "",
"type": "other",
"aliases": []
},
"other": {
"name": "",
"type": "preprint",
"aliases": []
},
"WOAH": {
"name": "Workshop on Online Abuse and Harms",
"type": "workshop",
"aliases": []
},
"MRQA": {
"name": "Workshop on Machine Reading for Question Answering",
"type": "workshop",
"aliases": []
},
"Louhi": {
"name": "Workshop on Health Text Mining and Information Analysis",
"type": "workshop",
"aliases": []
},
"EMNLP Demo": {
"name": "Conference on Empirical Methods in Natural Language Processing: System Demonstrations",
"type": "conference",
"aliases": []
},
"SDM": {
"name": "SIAM International Conference on Data Mining",
"type": "conference",
"aliases": []
},
"MIA": {
"name": "Workshop on Multilingual Information Access",
"type": "workshop",
"aliases": []
},
"AfricaNLP": {
"name": "Workshop on African Natural Language Processing",
"type": "workshop",
"aliases": []
},
"Computers": {
"name": "Computers",
"type": "journal",
"aliases": []
},
"SLT": {
"name": "IEEE Spoken Language Technology Workshop",
"type": "workshop",
"aliases": []
},
"Computation": {
"name": "Computation",
"type": "journal",
"aliases": []
},
"Research Square": {
"name": "Research Square",
"type": "preprint",
"aliases": []
},
"Electronics": {
"name": "Electronics",
"type": "journal",
"aliases": []
},
"TMM": {
"name": "IEEE Transactions on Multimedia",
"type": "journal",
"aliases": []
},
"COLING-Rel": {
"name": "New Horizons in Computational Linguistics for Religious Texts",
"type": "workshop",
"aliases": []
},
"AEJ": {
"name": "Alexandria Engineering Journal",
"type": "journal",
"aliases": []
},
"SynData4GenAI": {
"name": "Synthetic Data’s Transformative Role in Foundational Speech Models",
"type": "workshop",
"aliases": []
},
"AJSE": {
"name": "Arabian Journal for Science and Engineering",
"type": "journal",
"aliases": []
},