forked from acl-org/acl-anthology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
venues.yaml
1062 lines (1062 loc) · 28.6 KB
/
venues.yaml
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
aacl:
acronym: AACL
is_acl: true
is_toplevel: true
name: Asian Chapter of the Association for Computational Linguistics
acl:
acronym: ACL
is_acl: true
is_toplevel: true
name: Annual Meeting of the Association for Computational Linguistics
oldstyle_letter: P
adaptnlp:
acronym: AdaptNLP
name: Workshop on Domain Adaptation for NLP
aespen:
acronym: AESPEN
name: Automated Extraction of Socio-political Events from News
url: https://emw.ku.edu.tr
aha:
acronym: AHA
name: AHA!-Workshop on Information Discovery in Text
ai4hi:
acronym: AI4HI
name: International Workshop on Artificial Intelligence for Historical Image Enrichment
and Access
url: https://chia.acdh.oeaw.ac.at/call-for-papers/
akbc:
acronym: AKBC
is_acl: true
name: Workshop on Automated Knowledge Base Construction
all:
acronym: all
name: 'The Joint Conference of the 59th Annual Meeting of the Association for Computational
Linguistics and the 11th International Joint Conference on Natural Language Processing:
System Demonstrations'
alnlp:
acronym: ALNLP
is_acl: true
name: Workshop on Active Learning for Natural Language Processing
alr:
acronym: ALR
name: Workshop on Asian Language Resources
alta:
acronym: ALTA
is_toplevel: true
name: Australasian Language Technology Association Workshop
oldstyle_letter: U
alvr:
acronym: ALVR
is_acl: true
name: The Workshop on Advances in Language and Vision Research
url: https://alvr-workshop.github.io/
alw:
acronym: ALW
is_acl: true
name: Workshop on Abusive Language Online
americasnlp:
acronym: AmericasNLP
name: First Workshop on Natural Language Processing for Indigenous Languages of
the Americas
amta:
acronym: AMTA
is_toplevel: true
name: Conference of the Association for Machine Translation in the Americas
anlp:
acronym: ANLP
is_acl: true
is_toplevel: true
name: Applied Natural Language Processing Conference
oldstyle_letter: A
argmining:
acronym: ArgMining
is_acl: true
name: Workshop on Argument Mining
atanlp:
acronym: ATANLP
is_acl: true
name: Workshop on Applications of Tree Automata Techniques in Natural Language Processing
atsma:
acronym: ATS-MA
name: Workshop on Automatic Text Simplification - Methods and Applications in the
Multilingual Society
autosimtrans:
acronym: AutoSimTrans
is_acl: true
name: The Workshop on Automatic Simultaneous Translation
url: https://autosimtrans.github.io/
bea:
acronym: BEA
is_acl: true
name: Workshop on Innovative Use of NLP for Building Educational Applications
bioasq:
acronym: BioASQ
is_acl: true
name: BioASQ Workshop
bionlp:
acronym: BioNLP
is_acl: true
name: Biomedical Natural Language Processing Workshop
birndl:
acronym: BIRNDL
name: Joint Workshop on Bibliometric-enhanced Information Retrieval and Natural
Language Processing for Digital Libraries
blackboxnlp:
acronym: BlackboxNLP
name: 'BlackboxNLP: Analyzing and Interpreting Neural Networks for NLP'
bppf:
acronym: BPPF
name: '1st Workshop on Benchmarking: Past, Present and Future'
bsnlp:
acronym: BSNLP
name: Workshop on Balto-Slavic Natural Language Processing
bucc:
acronym: BUCC
is_acl: true
name: Workshop on Building and Using Comparable Corpora
calcs:
acronym: CALCS
name: Workshop on Computational Approaches to Linguistic Code-Switching
url: https://cod1r.github.io/Code-Switching/
case:
acronym: CASE
name: Challenges and Applications of Automated Extraction of Socio-political Events
from Text
catocl:
acronym: CAtoCL
is_acl: true
name: Workshop on Computational Approaches to Causality in Language
ccl:
acronym: CCL
is_toplevel: true
name: The Chinese National Conference on Computational Linguistics
url: http://cips-cl.org
ccnlg:
acronym: CCNLG
is_acl: true
name: Workshop on Computational Creativity in Natural Language Generation
ccurl:
acronym: CCURL
name: Collaboration and Computing for Under-Resourced Languages Workshop
challengehml:
acronym: Challenge-HML
is_acl: true
name: The Grand Challenge and Workshop on Multimodal Language
url: http://multicomp.cs.cmu.edu/acl2020multimodalworkshop/
cl:
acronym: CL
is_acl: true
is_toplevel: true
name: Computational Linguistics Journal
oldstyle_letter: J
cl4lc:
acronym: CL4LC
is_acl: true
name: Workshop on Computational Linguistics for Linguistic Complexity
claw:
acronym: CLAW
is_acl: false
name: Workshop on Controlled Language Applications
clfl:
acronym: CLFL
is_acl: true
name: Workshop on Computational Linguistics for Literature
clinicalnlp:
acronym: ClinicalNLP
is_acl: true
name: Clinical Natural Language Processing Workshop
cllrd:
acronym: CLLRD
name: Citizen Linguistics in Language Resource Development
clp:
acronym: CLP
name: Chinese Language Processing
clpsych:
acronym: CLPsych
is_acl: true
name: Workshop on Computational Linguistics and Clinical Psychology
clssts:
acronym: CLSSTS
name: Workshop on Cross-Language Search and Summarization over Text and Speech
cltw:
acronym: CLTW
name: Celtic Language Technology Workshop
cmcl:
acronym: CMCL
is_acl: true
name: Workshop on Cognitive Modeling and Computational Linguistics
cmlc:
acronym: CMLC
name: Challenges in the Management of Large Corpora
cns:
acronym: CNS
is_acl: true
name: Workshop on Computing News Storylines
codeswitch:
acronym: CodeSwitch
is_acl: true
name: Workshop on Computational Approaches to Code Switching
codi:
acronym: CODI
name: Workshop on Computational Approaches to Discourse
cogacll:
acronym: CogACLL
is_acl: true
name: Workshop on Cognitive Aspects of Computational Language Learning
cogalex:
acronym: CogALex
is_acl: true
name: Workshop on Cognitive Aspects of the Lexicon
coling:
acronym: COLING
is_toplevel: true
name: International Conference on Computational Linguistics
oldstyle_letter: C
comacoma:
acronym: ComAComA
name: Workshop on Computational Approaches to Compound Analysis
computerm:
acronym: CompuTerm
name: International Workshop on Computational Terminology
conll:
acronym: CoNLL
is_acl: true
is_toplevel: true
name: Conference on Computational Natural Language Learning
oldstyle_letter: K
corbon:
acronym: CORBON
is_acl: true
name: Workshop on Coreference Resolution Beyond OntoNotes
cosli:
acronym: CoSLI
is_acl: true
name: Workshop on Computational Models of Spatial Language Interpretation and Generation
crac:
acronym: CRAC
is_acl: true
name: Workshop on Computational Models of Reference, Anaphora and Coreference
csct:
acronym: CSCT
name: Workshop on Computational Semantics in Clinical Text
cvir:
acronym: CVIR
is_acl: true
name: Content Visualization and Intermedia Representations
cvsc:
acronym: CVSC
is_acl: true
name: Workshop on Continuous Vector Space Models and their Compositionality
dash:
acronym: DaSH
name: 'Second Workshop on Data Science with Human in the Loop: Language Advances'
deelio:
acronym: DeeLIO
name: 'Deep Learning Inside Out (DeeLIO): The Workshop on Knowledge Extraction and
Integration for Deep Learning Architectures'
depling:
acronym: DepLing
name: International Conference on Dependency Linguistics
dialdoc:
acronym: dialdoc
name: 1st Workshop on Document-grounded Dialogue and Conversational Question Answering
(DialDoc 2021)
discomt:
acronym: DiscoMT
is_acl: true
name: Workshop on Discourse in Machine Translation
dmr:
acronym: DMR
name: International Workshop on Designing Meaning Representations
dmtw:
acronym: DMTW
name: Deep Machine Translation Workshop
dravidianlangtech:
acronym: DravidianLangTech
name: Workshop on Speech and Language Technologies for Dravidian Languages
dt4tp:
acronym: DT4TP
name: Workshop on Discourse Theories for Text Planning
eacl:
acronym: EACL
is_acl: true
is_toplevel: true
name: European Chapter of the Association for Computational Linguistics
oldstyle_letter: E
eamt:
acronym: EAMT
is_toplevel: true
name: Conference of the European Association for Machine Translation
url: http://www.eamt.org
ecnlp:
acronym: ECNLP
name: The Workshop on e-Commerce and NLP
url: https://sites.google.com/view/ecnlp/
ecomnlp:
acronym: EcomNLP
name: Workshop on Natural Language Processing in E-Commerce
emnlp:
acronym: EMNLP
is_acl: true
is_toplevel: true
name: Conference on Empirical Methods in Natural Language Processing (and forerunners)
oldstyle_letter: D
enlg:
acronym: ENLG
is_acl: true
name: European Workshop on Natural Language Generation
ethnlp:
acronym: EthNLP
is_acl: true
name: Workshop on Ethics in Natural Language Processing
eval4nlp:
acronym: Eval4NLP
name: The Workshop on Evaluation and Comparison of NLP Systems
evalnlgeval:
acronym: EvalNLGEval
name: Workshop on Evaluating NLG Evaluation
events:
acronym: EVENTS
is_acl: true
name: Workshop on EVENTS
eventstory:
acronym: EventStory
name: Workshop on Events and Stories in the News
exprom:
acronym: EXprom
is_acl: true
name: Workshop on Extra-Propositional Aspects of Meaning in Computational Semantics
fever:
acronym: FEVER
is_acl: true
name: Workshop on Fact Extraction and Verification
url: https://fever.ai/index.html
figlang:
acronym: Fig-Lang
is_acl: true
name: Workshop on Figurative Language Processing
findings:
acronym: Findings
is_acl: true
is_toplevel: true
name: Findings of the Association for Computational Linguistics
finnlp:
acronym: FinNLP
name: Financial Technology and Natural Language Processing
fnp:
acronym: FNP
name: Workshop on Financial Narrative Processing
framenet:
acronym: Framenet
name: International FrameNet Workshop
fsmnlp:
acronym: FSMNLP
is_acl: true
name: International Conference on Finite State Methods for Natural Language Processing
gamnlp:
acronym: GAMESandNLP
name: GAMES and Natural Language Processing Workshop
geaf:
acronym: GEAF
is_acl: true
name: Grammar Engineering Across Frameworks Workshop
gebnlp:
acronym: GeBNLP
name: Workshop on Gender Bias in Natural Language Processing
gem:
acronym: GEM
name: 1st Workshop on Natural Language Generation, Evaluation, and Metrics
gems:
acronym: GEMS
is_acl: true
name: GEometrical Models of Natural Language Semantics
gendeep:
acronym: Gen-Deep
is_acl: true
name: Workshop on Generalization in the Age of Deep Learning
gl:
acronym: GL
is_acl: true
name: International Conference on the Generative Lexicon
globalex:
acronym: GLOBALEX
name: Workshop on Linked Lexicography and Lexicography and Neologism
url: https://globalex.link
gramlex:
acronym: GramLex
is_acl: true
name: Workshop on Grammar and Lexicon
gwc:
acronym: GWC
name: Global WordNet Conference
hackashop:
acronym: Hackashop
name: EACL Hackashop on News Media Content Analysis and Automated Report Generation
hcinlp:
acronym: HCINLP
name: Workshop on Bridging Human--Computer Interaction and Natural Language Processing
hlt:
acronym: HLT
is_toplevel: true
name: Human Language Technology Conf.
oldstyle_letter: H
humeval:
acronym: HumEval
name: The Workshop on Human Evaluation of NLP Systems
url: https://humeval.github.io/
hytra:
acronym: HyTra
is_acl: true
name: Workshop on Hybrid Approaches to Machine Translation
icon:
acronym: ICON
name: International Conference on Natural Language Processing
icos:
acronym: ICoS
is_acl: true
name: International Workshop on Inference in Computational Semantics
ijclclp:
acronym: IJCLCLP
is_toplevel: true
name: International Journal of Computational Linguistics and Chinese Language Processing
ijcnlp:
acronym: IJCNLP
is_toplevel: true
name: International Joint Conference on Natural Language Processing
oldstyle_letter: I
inlg:
acronym: INLG
is_acl: true
name: International Natural Language Generation Conference
insights:
acronym: insights
name: Workshop on Insights from Negative Results in NLP
intellang:
acronym: IntelLanG
name: Intelligent Information Processing and Natural Language Generation
internlp:
acronym: InterNLP
name: First Workshop on Interactive Learning for Natural Language Processing
intexsempar:
acronym: intexsempar
name: Workshop on Interactive and Executable Semantic Parsing
isa:
acronym: ISA
name: ISO Workshop on Interoperable Semantic Annotation
iwclul:
acronym: IWCLUL
is_acl: true
joint: WS
name: International Workshop on Computational Linguistics for Uralic Languages
iwcs:
acronym: IWCS
is_acl: true
name: International Conference on Computational Semantics
iwdp:
acronym: iwdp
name: International Workshop of Discourse Processing
iwltp:
acronym: IWLTP
name: International Workshop on Language Technology Platforms
iwpt:
acronym: IWPT
is_acl: true
name: International Conference on Parsing Technologies
iwslt:
acronym: IWSLT
name: International Workshop on Spoken Language Translation
url: http://www.iwslt.org/
jec:
acronym: JEC
name: Joint EM+/CNGL Workshop
jeptalnrecital:
acronym: JEP/TALN/RECITAL
is_toplevel: true
name: Journées d'Etudes sur la Parole / Traitement Automatique de la Langue Naturelle
/ Rencontres des Etudiants Chercheurs en Informatique et Traitement Automatique
des Langues
oldstyle_letter: F
knlp:
acronym: knlp
name: 'Knowledgeable NLP: Workshop on Integrating Structured Knowledge and Neural
Networks for NLP'
lantern:
acronym: LANTERN
name: 'The Workshop Beyond Vision and LANguage: inTEgrating Real-world kNowledge'
lasm:
acronym: LASM
is_acl: true
name: Workshop on Language Analysis for Social Media
latech:
acronym: LaTeCH
is_acl: true
name: Workshop on Language Technology for Cultural Heritage, Social Sciences, and
Humanities
latechclfl:
acronym: LaTeCHCLfL
name: SIGHUM Workshop on Computational Linguistics for Cultural Heritage, Social
Sciences, Humanities and Literature
latentvar:
acronym: LatentVar
is_acl: true
name: Workshop on Vector Space Modeling for Natural Language Processing
law:
acronym: LAW
is_acl: true
name: Linguistic Annotation Workshop
lccm:
acronym: LCCM
name: Workshop on Language, Cognition and Computational Models
lchange:
acronym: LChange
name: The 2nd International Workshop on Computational Approaches to Historical Language
Change 2021
ldl:
acronym: LDL
is_acl: true
name: Workshop on Linked Data in Linguistics
url: http://linguistic-lod.org
lglp:
acronym: LG-LP
is_acl: true
name: Workshop on Lexical and Grammatical Resources for Language Processing
lifelongnlp:
acronym: lifelongnlp
name: Workshop on Life-long Learning for Spoken Language Systems
lilt:
acronym: LILT
is_toplevel: true
name: Linguistic Issues in Language Technology
lincr:
acronym: LiNCr
name: Linguistic and Neurocognitive Resources
loresmt:
acronym: loresmt
name: Workshop on Technologies for MT of Low Resource Languages
louhi:
acronym: Louhi
is_acl: true
name: International Workshop on Health Text Mining and Information Analysis
lr4nlp:
acronym: LR4NLP
name: Workshop on Linguistic Resources for NLP
lr4sshoc:
acronym: LR4SSHOC
name: 'Language Resources in the SSH Cloud: Bringing Language Technologies for Social
Sciences and Humanities (in)to the European Open Science Cloud'
url: https://www.sshopencloud.eu
lrec:
acronym: LREC
is_toplevel: true
name: International Conference on Language Resources and Evaluation
oldstyle_letter: L
lsdsem:
acronym: LSDSem
is_acl: true
name: Workshop on Linking Computational Models of Lexical, Sentential and Discourse-level
Semantics
lt4dh:
acronym: LT4DH
is_acl: true
name: Workshop on Language Technology Resources and Tools for Digital Humanities
lt4gov:
acronym: LT4Gov
name: Language Technologies for Government and Public Administration
lt4hala:
acronym: LT4HALA
name: Language Technologies for Historical and Ancient Languages
lt4var:
acronym: LT4VAR
is_acl: true
name: Workshop on Language Technology for Closely Related Languages and Language
Variants
ltedi:
acronym: LTEDI
name: Workshop on Language Technology for Equality, Diversity, and Inclusion
maiworkshop:
acronym: maiworkshop
name: Third Workshop on Multimodal Artificial Intelligence
metanlp:
acronym: MetaNLP
name: 1st Workshop on Meta Learning and Its Applications to Natural Language Processing
metaphor:
acronym: Metaphor
is_acl: true
name: Workshop on Metaphor in NLP
mmw:
acronym: MMW
name: Workshop on Multimodal Wordnets
mol:
acronym: MoL
is_acl: true
name: Meeting on the Mathematics of Language
moocs:
acronym: MOOCs
is_acl: true
name: Workshop on Modeling Large Scale Social Interaction In Massively Open Online
Courses
motra:
acronym: MoTra
name: Workshop on Modelling Translation
msr:
acronym: MSR
name: Workshop on Multilingual Surface Realisation
mtsummit:
acronym: MTSummit
name: Machine Translation Summit
muc:
acronym: MUC
is_toplevel: true
name: Message Understanding Conf.
oldstyle_letter: M
multiling:
acronym: MultiLing
is_acl: true
name: Workshop on Multilingual Summarization
multilingualbio:
acronym: MultilingualBIO
name: Multilingual Biomedical Text Processing
mwe:
acronym: MWE
is_acl: true
name: Workshop on Multiword Expressions
naacl:
acronym: NAACL
is_acl: true
is_toplevel: true
name: North American Chapter of the Association for Computational Linguistics
oldstyle_letter: N
nespnlp:
acronym: NeSp-NLP
is_acl: true
name: Negation and Speculation in Natural Language Processing
news:
acronym: NEWS
is_acl: true
name: Named Entities Workshop
ngt:
acronym: NGT
is_acl: true
name: Workshop on Neural Generation and Translation
nl4xai:
acronym: NL4XAI
name: Workshop on Interactive Natural Language Technology for Explainable Artificial
Intelligence
nli:
acronym: NLI
is_acl: true
name: The Workshop on Natural Language Interfaces
nlp4call:
acronym: NLP4CALL
name: Workshop on NLP for Computer-Assisted Language Learning
nlp4convai:
acronym: NLP4ConvAI
is_acl: true
name: The Workshop on Natural Language Processing for Conversational AI
url: https://sites.google.com/view/2ndnlp4convai/home
nlp4if:
acronym: NLP4IF
name: Workshop on NLP for Internet Freedom
nlp4ita:
acronym: NLP4ITA
is_acl: true
name: Workshop on Natural Language Processing for Improving Textual Accessibility
nlp4musa:
acronym: NLP4MusA
name: Workshop on NLP for Music and Audio
nlp4posimpact:
acronym: NLP4PosImpact
name: 1st Workshop on NLP for Positive Impact
nlp4prog:
acronym: NLP4Prog
name: First Workshop on Natural Language Processing for Programming
nlp4tm:
acronym: NLP4TM
name: Workshop on Natural Language Processing for Translation Memories
nlpbt:
acronym: nlpbt
name: International Workshop on Natural Language Processing Beyond Text
nlpcovid19:
acronym: NLP-COVID19
name: Workshop on NLP for COVID-19
nlpcss:
acronym: NLP+CSS
is_acl: true
name: Workshop on NLP and Computational Social Science
nlplod:
acronym: NLPLOD
name: Workshop on Natural Language Processing and Linked Open Data
nlpmc:
acronym: NLPMC
is_acl: true
name: The Workshop on NLP for Medical Conversations
url: https://sites.google.com/view/nlp4medicalconversations/
nlposs:
acronym: NLPOSS
name: Workshop for NLP Open Source Software
nlptea:
acronym: NLP-TEA
is_acl: true
name: Workshop on Natural Language Processing Techniques for Educational Applications
nmt:
acronym: NMT
is_acl: true
name: Workshop on Neural Machine Translation
nodalida:
acronym: NoDaLiDa
name: Nordic Conference of Computational Linguistics
nsurl:
acronym: NSURL
name: The International Workshop on NLP Solutions for Under Resourced Languages
nuse:
acronym: NUSE
is_acl: true
name: The Workshop on Narrative Understanding, Storylines, and Events
url: https://sites.google.com/view/nuse
oiaf4hlt:
acronym: OIAF4HLT
name: Workshop on Open Infrastructures and Analysis Frameworks for HLT
onion:
acronym: ONION
name: People in Language, Vision and the Mind
osact:
acronym: OSACT
name: Workshop on Open-Source Arabic Corpora and Processing Tools
paclic:
acronym: PACLIC
is_toplevel: true
name: Pacific Asia Conference on Language, Information and Computation
oldstyle_letter: Y
pam:
acronym: PaM
name: Probability and Meaning Conference
url: https://sites.google.com/view/pam2020/home
parlaclarin:
acronym: ParlaCLARIN
name: Workshop on Creating, Using And Linking Parliamentary Corpora
peoples:
acronym: PEOPLES
is_acl: true
name: Workshop on Computational Modeling of People's Opinions, Personality, and
Emotions in Social Media
pitr:
acronym: PITR
is_acl: true
name: Workshop on Predicting and Improving Text Readability for Target Reader Populations
prep:
acronym: PREP
is_acl: true
name: Workshop on Prepositions
privatenlp:
acronym: PrivateNLP
name: Workshop on Privacy in NLP
pylo:
acronym: PYLO
name: Workshop on Computational Modeling of Polysynthetic Languages
rail:
acronym: RAIL
name: Workshop on Resources for African Indigenous Languages
ranlp:
acronym: RANLP
is_toplevel: true
name: International Conference Recent Advances in Natural Language Processing
oldstyle_letter: R
rdsm:
acronym: RDSM
name: International Workshop on Rumours and Deception in Social Media
readi:
acronym: READI
name: Tools and Resources to Empower People with REAding Difficulties
repeval:
acronym: RepEval
is_acl: true
name: Workshop on Evaluating Vector-Space Representations for NLP
repl4nlp:
acronym: RepL4NLP
is_acl: true
name: Workshop on Representation Learning for NLP
restup:
acronym: ResTUP
name: Resources and Techniques for User and Author Profiling in Abusive Language
robonlp:
acronym: RoboNLP
is_acl: true
name: Workshop on Language Grounding for Robotics
rocling:
acronym: ROCLING
is_toplevel: true
name: Conference on Computational Linguistics and Speech Processing
s2mt:
acronym: S2MT
is_acl: true
name: Workshop on Semantics-Driven Statistical Machine Translation
sadaatl:
acronym: SADAATL
name: Workshop on Synchronic and Diachronic Approaches to Analyzing Technical Language
scai:
acronym: scai
name: International Workshop on Search-Oriented Conversational AI
scil:
acronym: SCiL
name: Society for Computation in Linguistics
sclem:
acronym: SCLeM
is_acl: true
name: Workshop on Subword and Character LEvel Models in NLP
sdp:
acronym: sdp
name: Workshop on Scholarly Document Processing
sedmt:
acronym: SedMT
is_acl: true
name: Workshop on Semantics-Driven Machine Translation
sembear:
acronym: SemBEaR
is_acl: true
name: Workshop on Computational Semantics Beyond Events and Roles
semdeep:
acronym: SemDeep
name: Workshop on Semantic Deep Learning
semeval:
acronym: SemEval
is_acl: true
is_toplevel: true
name: Lexical and Computational Semantics and Semantic Evaluation (formerly Workshop
on Sense Evaluation)
oldstyle_letter: S
semitic:
acronym: SEMITIC
is_acl: true
name: Workshop on Computational Approaches to Semitic Languages
sense:
acronym: SENSE
is_acl: true
name: Workshop on Sense, Concept and Entity Representations and their Applications
sew:
acronym: SEW
is_acl: true
name: Workshop on Semantic Evaluations
sigdial:
acronym: SIGDIAL
is_acl: true
name: SIGDial Conference
sighan:
acronym: SIGHAN
is_acl: true
name: SIGHAN Workshop on Chinese Language Processing
sigmorphon:
acronym: SIGMORPHON
is_acl: true
name: Meeting of the ACL Special Interest Group on Computational Morphology and
Phonology
signlang:
acronym: SignLang
name: Workshop on the Representation and Processing of Sign Languages
sigtyp:
acronym: SIGTYP
is_acl: true
name: Special Interest Group on Typology
url: https://sigtyp.github.io
slpat:
acronym: SLPAT
is_acl: true
name: Workshop on Speech and Language Processing for Assistive Technologies
sltu:
acronym: SLTU
name: Workshop on Spoken Language Technologies for Under-resourced languages
smm4h:
acronym: SMM4H
name: Social Media Mining for Health Applications Workshop
socialnlp:
acronym: SocialNLP
name: Workshop on Natural Language Processing for Social Media
splu:
acronym: SpLU
is_acl: true
name: Spatial Language Understanding
splurobonlp:
acronym: splurobonlp
name: Second International Combined Workshop on Spatial Language Understanding and
Grounded Communication for Robotics
spmrl:
acronym: SPMRL
is_acl: true
name: Workshop on Statistical Parsing of Morphologically Rich Languages
spnlp:
acronym: spnlp
name: Workshop on Structured Prediction for NLP
spnlp21:
acronym: SPNLP21
name: 5th Workshop on Structured Prediction for NLP
srw:
acronym: SRW
name: ACL-IJCNLP 2021 Student Research Workshop
ssst:
acronym: SSST
is_acl: true
name: Workshop on Syntax, Semantics and Structure in Statistical Translation
starsem:
acronym: '*SEM'
is_acl: true
is_toplevel: true
name: Joint Conference on Lexical and Computational Semantics
statfsm:
acronym: StatFSM
is_acl: true
name: Workshop on Statistical NLP and Weighted Automata
step:
acronym: STEP
is_acl: true
name: Semantics in Text Processing
stil:
acronym: STIL
name: Brazilian Symposium in Information and Human Language Technology
stoc:
acronym: STOC
name: Social Threats in Online Conversations
storynlp:
acronym: Story-NLP
is_acl: true
name: Workshop on Storytelling
stylevar:
acronym: Style-Var
is_acl: true
name: Workshop on Stylistic Variation
sustainlp:
acronym: sustainlp
name: Workshop on Simple and Efficient Natural Language Processing
swaie:
acronym: SWAIE
name: Workshop on Semantic Web and Information Extraction
tacl:
acronym: TACL
is_acl: true
is_toplevel: true
name: Transactions of the Association for Computational Linguistics
oldstyle_letter: Q
tag:
acronym: TAG+
name: International Workshop on Tree Adjoining Grammars and Related Formalisms
tc:
acronym: TC
name: Translating and the Computer
teachingnlp:
acronym: TeachingNLP
is_acl: true
name: Workshop on Teaching Natural Language Processing
textgraphs:
acronym: TextGraphs
is_acl: true
name: Graph-based Methods for Natural Language Processing
textinfer:
acronym: TextInfer
is_acl: true
name: Workshop on Textual Entailment
tinlap:
acronym: TINLAP
is_toplevel: true
name: Theoretical Issues In Natural Language Processing
oldstyle_letter: T
tipster:
acronym: TIPSTER
is_toplevel: true
name: NIST's TIPSTER Text Program
oldstyle_letter: X
tlt:
acronym: TLT
is_acl: true
name: International Workshop on Treebanks and Linguistic Theories
url: https://tlt2020.phil.hhu.de/
trac:
acronym: TRAC
name: Workshop on Trolling, Aggression and Cyberbullying
trustnlp:
acronym: TrustNLP
name: First Workshop on Trustworthy Natural Language Processing
ttnls:
acronym: TTNLS
is_acl: true
name: Workshop on Type Theory and Natural Language Semantics
tutorials:
acronym: tutorials
name: 'Proceedings of the 59th Annual Meeting of the Association for Computational
Linguistics and the 11th International Joint Conference on Natural Language Processing:
Tutorial Abstracts'
udw:
acronym: UDW
name: Universal Dependencies Workshop
unimplicit:
acronym: unimplicit
name: Proceedings of the 1st Workshop on Understanding Implicit and Underspecified
Language (UnImplicit 2021)
vardial:
acronym: VarDial
name: Workshop on Applying NLP Tools to Similar Languages, Varieties and Dialects
vigil:
acronym: ViGIL
name: The Fourth Workshop on Visually Grounded Interaction and Language
vl:
acronym: VL
is_acl: true