<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.aclweb.org/aclwiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=PabloDuboue</id>
	<title>ACL Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.aclweb.org/aclwiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=PabloDuboue"/>
	<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/Special:Contributions/PabloDuboue"/>
	<updated>2026-04-21T21:47:54Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.6</generator>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=User:PabloDuboue/Area_Chairs_Script&amp;diff=11156</id>
		<title>User:PabloDuboue/Area Chairs Script</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=User:PabloDuboue/Area_Chairs_Script&amp;diff=11156"/>
		<updated>2015-07-04T04:52:56Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: Created page with &amp;quot;&amp;lt;pre&amp;gt; #!/usr/bin/perl  # I, Pablo Duboue, dedicate this to the Public Domain.  use strict;  my@rows; my$prev;  while(&amp;lt;STDIN&amp;gt;){     chomp;     next if($_ eq $prev);     $prev =...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/usr/bin/perl&lt;br /&gt;
&lt;br /&gt;
# I, Pablo Duboue, dedicate this to the Public Domain.&lt;br /&gt;
&lt;br /&gt;
use strict;&lt;br /&gt;
&lt;br /&gt;
my@rows;&lt;br /&gt;
my$prev;&lt;br /&gt;
&lt;br /&gt;
while(&amp;lt;STDIN&amp;gt;){&lt;br /&gt;
    chomp;&lt;br /&gt;
    next if($_ eq $prev);&lt;br /&gt;
    $prev = $_;&lt;br /&gt;
    push@rows, [ split(/\t/,$_) ];&lt;br /&gt;
};&lt;br /&gt;
&lt;br /&gt;
my @header = @{shift @rows};&lt;br /&gt;
my%idx=();&lt;br /&gt;
foreach my$i(0..$#header){&lt;br /&gt;
    $idx{$header[$i]}=$i; &lt;br /&gt;
    print &amp;quot;$i $header[$i]\n&amp;quot;&lt;br /&gt;
};&lt;br /&gt;
foreach my$r(@rows){&lt;br /&gt;
    my@row = @{$r};&lt;br /&gt;
    print &amp;quot;== [&amp;quot; . $row[1] . &amp;quot; &amp;quot; . $row[0] .&amp;quot;] ==\n\n&amp;quot;;&lt;br /&gt;
    #print $row[0].&amp;quot;\n&amp;quot;.$row[1].&amp;quot;\n&amp;quot;;&lt;br /&gt;
    print &#039;{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
&#039;;&lt;br /&gt;
    print &amp;quot;| General Chair || &amp;quot;.$row[$idx{&amp;quot;Answer.general_chair&amp;quot;}].&amp;quot; (&amp;quot;.$row[$idx{&amp;quot;Answer.affiliation_general_chair&amp;quot;}].&amp;quot;) ||\n&amp;quot;;&lt;br /&gt;
    print &amp;quot;|-\n&amp;quot;;&lt;br /&gt;
    print &amp;quot;| Program Chairs || &amp;quot;;&lt;br /&gt;
    foreach my$k(1..2){&lt;br /&gt;
        if($k == 2){&lt;br /&gt;
            print &amp;quot;, &amp;quot;;&lt;br /&gt;
        }&lt;br /&gt;
        print $row[$idx{&amp;quot;Answer.program_chair_$k&amp;quot;}].&amp;quot; (&amp;quot;.$row[$idx{&amp;quot;Answer.affiliation_program_chair_$k&amp;quot;}].&amp;quot;)&amp;quot;;&lt;br /&gt;
    };&lt;br /&gt;
    print &amp;quot; || \n&amp;quot;;&lt;br /&gt;
    $prev = 0;&lt;br /&gt;
    foreach my$k(0..39){&lt;br /&gt;
        if($row[$idx{&amp;quot;Answer.area_&amp;quot;.$k}] eq $prev){&lt;br /&gt;
            print &amp;quot;, &amp;quot; . $row[$idx{&amp;quot;Answer.name_&amp;quot;.$k}].&amp;quot; (&amp;quot;.$row[$idx{&amp;quot;Answer.affiliation_&amp;quot;.$k}].&amp;quot;)&amp;quot;;&lt;br /&gt;
        }else{&lt;br /&gt;
            if($prev){&lt;br /&gt;
                print &amp;quot; ||\n&amp;quot;;&lt;br /&gt;
            }&lt;br /&gt;
            print &amp;quot;|-\n&amp;quot;;&lt;br /&gt;
            print &amp;quot;| &amp;quot; . $row[$idx{&amp;quot;Answer.area_&amp;quot;.$k}].&amp;quot; || &amp;quot;.$row[$idx{&amp;quot;Answer.name_&amp;quot;.$k}].&amp;quot; (&amp;quot;.$row[$idx{&amp;quot;Answer.affiliation_&amp;quot;.$k}].&amp;quot;)&amp;quot;;&lt;br /&gt;
        }&lt;br /&gt;
        $prev = $row[$idx{&amp;quot;Answer.area_&amp;quot;.$k}];&lt;br /&gt;
    }&lt;br /&gt;
    print &amp;quot; ||\n&amp;quot;;&lt;br /&gt;
    print &amp;quot;| * || * || \n&amp;quot;;&lt;br /&gt;
    print &amp;quot;|}\n&amp;quot;;&lt;br /&gt;
    print &amp;quot;\n* No information is found for the area chair for each specific area. Below is the list of all area chairs for &amp;quot; . $row[0] . &amp;quot;:\n\n&amp;quot;;&lt;br /&gt;
&lt;br /&gt;
    foreach my$k(0..39){&lt;br /&gt;
        print $row[$idx{&amp;quot;Answer.name_&amp;quot;.$k}].&amp;quot; (&amp;quot;.$row[$idx{&amp;quot;Answer.affiliation_&amp;quot;.$k}].&amp;quot;), &amp;quot;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    print &amp;quot;\n\n\n&amp;quot; . $row[$idx{&amp;quot;Answer.comment&amp;quot;}] . &amp;quot;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=User:PabloDuboue&amp;diff=11155</id>
		<title>User:PabloDuboue</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=User:PabloDuboue&amp;diff=11155"/>
		<updated>2015-07-04T04:51:57Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;See [http://duboue.net/pablo my personal website for details].&lt;br /&gt;
&lt;br /&gt;
[[User:PabloDuboue/Area Chairs Script]] the script I wrote for http://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=User:PabloDuboue&amp;diff=11154</id>
		<title>User:PabloDuboue</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=User:PabloDuboue&amp;diff=11154"/>
		<updated>2015-07-04T04:51:20Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;See [http://duboue.net/pablo my personal website for details].&lt;br /&gt;
&lt;br /&gt;
[[Area Chairs Script]] the script I wrote for http://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11153</id>
		<title>Areas, chairs, and area submissions</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11153"/>
		<updated>2015-07-04T01:28:06Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: /* ACL 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.aclweb.org/anthology/P/P14/P14-1000.pdf ACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair  || Daniel Marcu (ISI/USC) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Kristina Toutanova (Microsoft Research), Hua Wu (Baidu) ||&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling and Psycholinguistics || Klinton Bicknell (Northwestern University) || 9, 14&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems || Asli Celikyilmaz (Microsoft Research) || 10, 8&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference and Pragmatics || Micha Elsner (Ohio State University), Michael Strube (HITS gGmbH) || 22, 20&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization, Sentiment Analysis and Topic Models || Jacob Eisenstein (Georgia Institute of Technology), Jun Zhao (Chinese Academy of Sciences) || 53, 48&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Barbara Di Eugenio (University of Illinois at Chicago) || 13, 7&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining || Marius Pasca (Google Research), Mihai Surdeanu (University of Arizona) || 54, 49&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || Ting	Liu (Harbin Institute of Technology) || 8, 9&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation || Nicoletta Calzolari (Institute of Computational Linguistics of the National Research Council), Nianwen Xue (Brandeis University) || 31, 28&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontology || Eneko Agirre (University of the Basque Country) || 26, 23&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Kevin Duh (Nara Institute of Science and Technology), Jason Eisner (Johns Hopkins University) || 39, 15&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Colin Cherry (National Research Council, Canada), Niyu Ge (IBM Research), Liang Huang (City University of New York), Yanjun Ma (Baidu) || 76, 72&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality and Multimodal NLP || Michel Galley (Microsoft Research) || 12, 14&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications and NLP-enabled Technology || Mamoru Komachi (Tokyo Metropolitan University) || 32, 34&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (Johns Hopkins University), Alan Ritter (Carnegie Mellon University) || 29, 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Iryna Gurevych (Technische Universität Darmstadt), Percy Liang (Stanford University), Shiqi Zhao (Baidu) || 53, 37&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Yang Liu (University of Texas at Dallas) || 19, 11&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Scott Wen-tau Yih (Microsoft Research) || 6, 4&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Ciprian Chelba (Google Research) || 9, 10&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Xavier Carreras (Universitat Politecnica de Catalunya), Slav Petrov (Google Research) || 35, 48&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology and Word Segmentation || Grzegorz Kondrak (University of Alberta) || 10, 18&lt;br /&gt;
|}&lt;br /&gt;
== [http://www.aclweb.org/anthology/E/E14/E14-1000.pdf EACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Shuly Wintner (University of Haifa, Israel) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Sharon Goldwater (University of Edinburgh, UK), Stefan Riezler (Heidelberg University, Germany)) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EACL 2014:&lt;br /&gt;
&lt;br /&gt;
Enrique Alfonseca, John Blitzer, Aoife Cahill, Vera Demberg, Chris Dyer, Jacob Eisenstein, Micha Elsner, Katrin Erk, Afsaneh Fazly, Katja Filippova, Alexander Fraser, Iryna Gurevych, Chin-Yew Lin, David McClosky, Yusuke Miyao, Hwee Tou Ng, Slav Petrov, Simone Paolo Ponzetto, Sebastian Riedel, Verena Rieser, Helmut Schmid, Izhak Shafran, Hiroya Takamura, Lucy Vanderwende&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D14/D14-1000.pdf EMNLP 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alessandro Moschitti (Qatar Computing Research Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Walter Daelemans (University of Antwerp), Bo Pang (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, and Segmentation || Tomaž Erjavec (Jožef Stefan Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Gosse Bouma (University of Groningen), Yuji Matsumoto (Nara Institute of Science and Technology) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Jennifer Chu-Carroll (IBM Watson Research Center), Olga Uryupina (University of Trento) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Rada Mihalcea (University of Michigan), Sameer Pradhan (Harvard Medical School) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz (University of Brighton), Dilek Hakkani-Tür (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Ivan Titov (University of Amsterdam), Jerry Zhu (University of Wisconsin-Madison) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Chris Callison-Burch (University of Pennsylvania), Dan Gildea (University of Rochester) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, Text Categorization, and Question Answering || Sien Moens (Katholieke Universiteit Leuven), Hinrich Schütze (Ludwig Maximilian University of M&lt;br /&gt;
unich) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Marius Pasca (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Massimiliano Ciaramita (Google), Hwee Tou Ng (National University of Singapore) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University), Minlie Huang (Tsinghua University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Irwin King (The Chinese University of Hong Kong), Qiaozhu Mei (University of Michigan) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Pascale Fung (Hong Kong University of Science and Technology), Hugo Van hamme (Katholieke Universiteit Leuven) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Psycholinguistics || Sharon Goldwater (University of Edinburgh) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/P/P13/P13-1000.pdf ACL 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Hinrich Schuetze (University of Munich) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Pascale Fung (The Hong Kong University of Science and Technology), Massimo Poesio (University of Essex) || &lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modelling and Psycholinguistics || * || 13, 12&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems ||  || 15, 10&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference, and Pragmatics ||  || 28, 19&lt;br /&gt;
|-&lt;br /&gt;
| Evaluation Methods ||  || 11, 15&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||  || 20, 20&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources ||  || 24, 27&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontologies ||  || 25, 25&lt;br /&gt;
|-&lt;br /&gt;
| Low Resource Language Processing ||  || 10, 13&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Methods, Applications and Evaluations ||  || 50, 58&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Statistical Models ||  || 44, 30&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications ||  || 46, 42&lt;br /&gt;
|-&lt;br /&gt;
| NLP and Creativity ||  || 3, 4&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Languages of Central and Eastern Europe and The Balkans ||  || 2, 8&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media ||  || 32, 26&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering ||  || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Semantics ||  || 50, 32&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification ||  || 46, 60&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing ||  || 9, 12&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods in NLP ||  || 35, 32&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||  || 31, 23&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing ||  || 39, 43&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Chunking ||  || 12, 13&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Information Extraction ||  || 68, 53&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation ||  || 13, 15&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for ACL 2013: &lt;br /&gt;
&lt;br /&gt;
Frank Keller, Roger Levy, Amanda Stent, David Suendermann, Andrew Kehler, Becky Passonneau, Hang Li, Nancy Ide, Piek Vossen, Philipp Cimiano, Sabine Schulte im Walde, Dekang Lin, Chiori Hori, Keh-Yih Su, Roland Kuhn, Dekai Wu, Benjamin Snyder, Thamar Solorio, Ehud Reiter, Massimiliano Ciaramita, Ken Church, Carlo Strapparava, Tomaz Erjavec, Adam Prziepiorkowski, Patrick Pantel, Owen Rambow, Chris Dyer, Jason Eisner, Jennifer Chu-Carroll, Bernardo Magnini, Lluis Marquez, Alessandro Moschitti, Claire Cardie, Rada Mihalcea, Dilek Hakkani-Tur, Walter Daelemans, Dan Roth, Alex Koller, Ani Nenkova, Jamie Henderson, Sadao Kurohashi, Yuji Matsumoto, Heng Ji, Marie-Francine Moens, Hwee Tou Ng&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D13/D13-1000.pdf EMNLP 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || David Yarowsky (John Hopkins University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Timothy Baldwin (University of Melbourne, Australia), Anna Korhonen (University of Cambridge, UK) || &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, Tagging, Chunking and Segmentation || Kemal Oflazer (Carnegie Mellon University Qatar), Anna Feldman (Montclair State University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Jennifer Foster (Dublin City University, Ireland), Yoav Goldberg (Bar Ilan University, Israel) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Mark Stevenson (University of Sheffield, UK), Luke Zettlemoyer (University of Washington, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Carolyn Rose (Carnegie Mellon University, USA), Matt Purver (Queen Mary, University of London, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language resources || Emily M. Bender (University of Washington, USA), Aline Villavicencio (Federal University of Rio Grande do Sul, Brazil) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Dragomir Radev (University of Michigan, USA), Yang Liu (University of Texas at Dallas, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Amir Globerson (The Hebrew University of Jerusalem, Israel), Antal van den Bosch (Radboud University &lt;br /&gt;
Nijmegen, Netherlands) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Taro Watanabe (NICT, Japan), Kevin Knight (Information Sciences Institute, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Bernardo Magnini (Fondazione Bruno Kessler, Italy), Soumen Chakrabarti (Indian Institute of Technology, India) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Mausam (Indian Institute of Technology, India), Heng Ji (City University of New York, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li (Institute for Infocomm Research, Singapore), Amanda Stent (AT&amp;amp;T Labs, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Hang Li (Huawei Noah’s Ark Lab, Hong Kong), Kevin Cohen (University of Colorado School of Medicine, USA) &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Janyce Weibe (University of Pittsburgh, USA), Bing Liu (University of Illinois at Chicago, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (University of Edinburgh, UK), Chin-Yew Lin (Microsoft Research Asia, China) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Models of Human Language Acquisition and Processing || Alessandro Lenci (University of Pisa, Italy), Afra Alishahi (Tilburg University, Netherlands) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N13/N13-1000.pdf NAACL 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Lucy Vanderwende (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hal Daumé III (University of Maryland), Katrin Kirchhoff (University of Washington) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology, Word Segmentation || Markus Dreyer (SDL Language Weaver) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax, Tagging, Chunking and Parsing || Joakim Nivre (Uppsala University), James Henderson (Université de Genève) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Percy Liang (Stanford University), Peter Turney (National Research Council of Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Multimodal NLP || Srinivas Bangalore (AT&amp;amp;T) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, Pragmatics || David Traum (Institute for Creative Technologies), Joyce Chai (Michigan State University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Linguistic Aspects of CL || Vera Demberg (Saarland University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Guy Lapalme ((Université de Montréal) ||&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Johanna Moore (University of Edinburgh) ||&lt;br /&gt;
|-&lt;br /&gt;
| ML for Language Processing || Phil Blunsom (University of Oxford), Mark Dredze (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Alon Lavie (Carnegie Mellon University), Marine Carpuat (National Research Council of Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and QA || Eugene Agichtein (Emory University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Sanda Harabagiu (University of Texas at Dallas) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Zak Shafran (Oregon Health and Science University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Bo Pang (Cornell University), Theresa Wilson (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-enabled Technology || David Bean (TDW) ||&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization and Topic Clustering || Jordan Boyd-Graber (University of Maryland) ||&lt;br /&gt;
|-&lt;br /&gt;
| Social Media Analysis and Processing || Bill Dolan (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation Methods || Ani Nenkova (University of Pennsylvania) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/P/P12/P12-1000.pdf ACL 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Haizhou Li (Institute for Infocomm Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Chin-Yew Lin (Microsoft Research Asia), Miles Osborne (University of Edinburgh) || &lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Dialogue || Mikio Nakano, Andrei Popescu-Belis || 39, 23&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Information Retrieval || Jian Su, Jianfeng Gao, Vincent Ng || 64, 37&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Fei Xia || 15, 13&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics || Evgeniy Gabrilovich, Naoaki Okazaki || 38, 31&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon and Ontology ||  Eneko Agirre || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning || Trevor Cohn, Mark Dredze || 56, 28&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Marcello Federico, Adam Lopez, David Talbot, Hua Wu || 75, 56&lt;br /&gt;
|-&lt;br /&gt;
| Multilingual || Daniel M. Bikel, Mona T. Diab || 31, 15&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications || Jason Baldridge, David Weir || 41, 18&lt;br /&gt;
|-&lt;br /&gt;
| Syntax/Parsing || Stephen Clark, Liang Huang || 64, 36&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Hongyuan Zha, Hsin-Hsi Chen || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Social Media and Sentiment || Noah Smith, Jan Wiebe || 51, 32&lt;br /&gt;
|-&lt;br /&gt;
| Speech || Chung-Hsien Wu || 16, 12&lt;br /&gt;
|-&lt;br /&gt;
| Summarization &amp;amp; Generation || Anja Belz, Ani Nenkova || 20, 23&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation, Morphology and Phonology || Kemal Oflazer || 36, 23&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/E/E12/E12-1000.pdf EACL 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Walter Daelemans (University of Antwerp, Belgium) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Mirella Lapata (University of Edinburgh, UK), Lluis Marquez (Universitat Politecnica de Catalunya, Spain) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EACL 2012:&lt;br /&gt;
&lt;br /&gt;
Katja Filippova (Google), Min-Yen Kan (National University of Singapore), Charles Sutton (University of Edinburgh), Ivan Titov (Saarland University), Xavier Carreras (&lt;br /&gt;
Universitat Politecnica de Catalunya(UPC)), Kenji Sagae (University of Southern California), Kallirroi Georgila (Institute for Creative Technologies, University of Sou&lt;br /&gt;
thern California), Michael Strube (HITS gGmbH), Pascale Fung (The Hong Kong University of Science and Tech), Bing Liu (University of Illinois at Chicago), Theresa Wils&lt;br /&gt;
on (Johns Hopkins University), David McClosky (Stanford University), Sebastian Riedel (University of Massachusetts), Phil Blunsom (University of Oxford), Mikel L. Forc&lt;br /&gt;
ada (Universitat d’Alacant), Christof Monz (University of Amsterdam), Sharon Goldwater (University of Edinburgh), Richard Wicentowski (Swarthmore College), Patrick Pan&lt;br /&gt;
tel (Microsoft Research), Hiroya Takamura (Tokyo Institute of Technology), Alexander Koller (University of Potsdam), Sebastian Pado (Universitat Heidelberg), Maarten d&lt;br /&gt;
e Rijke (University of Amsterdam), Julio Gonzalo (UNED), Lori Levin (Carnegie Mellon University), Piek Vossen (VU University Amsterdam), Afra Alishahi (Tilburg Univers&lt;br /&gt;
ity, The Netherlands), John Hale (Cornell University)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D12/D12-1000.pdf EMNLP 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jun’ichi Tsujii (Microsoft Research Asia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || James Henderson (Xerox Research Centre Europe), Marius Pasca (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2012:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yejin Choi (Stony Brook University), Hal Daume III (University of Maryland), Doug Downey (Northwestern University), Chris Dyer (Carnegie Mellon University), Adria de Gispert (University of Cambridge), Julia Hirschberg (Columbia University), Anna Korhonen (University of Cambridge), Bing Liu (University of Illinois at Chicago), Hwee Tou Ng (National University of Singapore), Patrick Pantel (Microsoft Research), Marco Pennacchiotti (Yahoo! Labs), Slav Petrov (Google), Simone Paolo Ponzetto (Sapienza University of Rome), John Prager (IBM Research), Chris Quirk (Microsoft Research), Sebastian Riedel (University of Massachusetts at Amherst), Hiroya Takamura (Tokyo Institute of Technology), Partha Talukdar (Carnegie Mellon University), Carnegie Mellon University (Microsoft Research), Reut Tsarfaty (Uppsala University), Marilyn Walker (University of California at Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N12/N12-1000.pdf NAACL 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jennifer Chu-Carroll (IBM T.J. Watson Research Center) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Eric Fosler-Lussier (The Ohio State University), Ellen Riloff (University of Utah) || &lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Roberto Basili (University of Rome) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Guiseppe Carenini (University of British Columbia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources Novel Evaluation Methods || Christy Doran (MITRE) ||&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology Word Segmentation || Jason Eisner (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || George Foster (National Research Council Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Social Media Analysis and Processing || Roxana Girju (University of Illinois Urbana-Champaign) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Heng Ji (City University of New York) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntactic Tagging and Chunking || Sadao Kurohashi (Kyoto University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Matt Lease (University of Texas Austin) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse Dialogue and Pragmatics || Diane Litman (University of Pittsburgh) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Deepak Ravichandran (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Guiseppe Ricardi (University of Trento), Richard Rose (McGill University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Giorgio Satta (University of Padova) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Fei Sha (University of Southern California) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Suzanne Stevenson (University of Toronto) ||&lt;br /&gt;
|-&lt;br /&gt;
| End-to-end Language Processing Systems || David Traum (University of Southern California) ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Scott Yih (Microsoft) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Luke Zettlemoyer (University of Washington) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Bowen Zhou (IBM) ||&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization/Topic Clustering || Jerry Zhu (University of Wisconsin) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/P/P11/P11-1000.pdf ACL 2011] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Dekang Lin (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Yuji Matsumoto (Nara Institute of Science and Technology), Rada Mihalcea (University of North Texas) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Anna Feldman, Greg Kondrak || 34,22&lt;br /&gt;
|-&lt;br /&gt;
|Syntax and Parsing || Xavier Carreras, Ryan McDonald  || 56,48&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Diana McCarthy, Deniz Yuret || 48, 41&lt;br /&gt;
|-&lt;br /&gt;
|Discourse, Dialogue, and Pragmatics || Kentaro Inui, Svetlana Stoyanchev|| 31, 23&lt;br /&gt;
|-&lt;br /&gt;
|Summarization and Generation || Yang Liu, Manabu Okumura  || 36, 35&lt;br /&gt;
|- &lt;br /&gt;
|Statistical and Machine Learning Methods ||Lluis Marquez, Alessandro Moschitti || 42, 27&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Statistical Models ||Shankar Kumar, Taro Watanabe || 56, 39&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Methods, Applications and Evaluations ||Elliott Macklovitch, Michel Simard || 33, 53&lt;br /&gt;
|-&lt;br /&gt;
|Information Retrieval ||  Fabrizio Sebastiani || 26, 11&lt;br /&gt;
|-&lt;br /&gt;
|Question Answering || Bernardo Magnini  || 19, 10&lt;br /&gt;
|-&lt;br /&gt;
|Text Mining and Information Extraction || Razvan Bunescu, Alexander Yates || 51, 38&lt;br /&gt;
|-&lt;br /&gt;
|Sentiment Analysis, Opinion Mining and Text Classification ||Katja Markert, Xiaojun Wan || 45, 38&lt;br /&gt;
|-&lt;br /&gt;
|Spoken Language Processing || Pascale Fung || 20, 13&lt;br /&gt;
|-&lt;br /&gt;
|Natural Language Processing Applications || Vasile Rus || 30, 51&lt;br /&gt;
|-&lt;br /&gt;
|Language Resources || Chu-Ren Huang, Dan Tufis|| 32, 26&lt;br /&gt;
|-&lt;br /&gt;
|Multilinguality || Thamar Solorio || 24, 16&lt;br /&gt;
|-&lt;br /&gt;
|NLP for Web 2.0 || Vivi Nastase || 31, 16&lt;br /&gt;
|-&lt;br /&gt;
|Linguistic Creativity || Carlo Strapparava || 20, 17&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D11/D11-1000.pdf EMNLP 2011] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Paola Merlo (University of Geneva) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Regina Barzilay (Massachusetts Institute of Technology), Mark Johnson (Macquarie University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2011:&lt;br /&gt;
&lt;br /&gt;
Emily M. Bender (University of Washington), Phil Blunsom (University of Oxford), Eugene Charniak (Brown University), Chris Dyer (Carnegie Mellon University), Jenny Finkel (Columbia University), Radu Florian (IBM Watson Research Center), Amir Globerson (The Hebrew University of Jerusalem), Keith Hall (Google Research), Minlie Huang (Tsinghua University), Katrin Kirchhoff (University of Washington), Mirella Lapata (University of Edinburgh), Chin-Yew Lin (Microsoft Research Asia), Bo Pang (Yahoo! Research), Stefan Riezler (University of Heidelberg), Ellen Riloff (University of Utah), Hinrich Schuetze (University of Stuttgart), Jian Su (Institute for Infocomm Research), Dekai Wu (Hong Kong University of Science and Technology), Luke Zettlemoyer (University of Washington)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/P/P10/P10-1000.pdf ACL 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long + short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jan Hajič (Charles University in Prague, Czech Republic) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Sandra Carberry (University of Delaware, USA), Stephen Clark (University of Cambridge, United Kingdom) ||&lt;br /&gt;
|- &lt;br /&gt;
| Lexical semantics || Tim Baldwin, Roberto Navigli || 87&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning|| Phil Blunsom, Walter Daelemans || 87&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction|| Kalina Bontcheva, Hang Li || 52&lt;br /&gt;
|-&lt;br /&gt;
| Formal semantics || Johan Bos || 24&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis || Claire Cardie, Theresa Wilson|| 69&lt;br /&gt;
|-&lt;br /&gt;
| Text mining || Rob Gaizauskas || 30&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Keith Hall, Chris Quirk|| 100&lt;br /&gt;
|-&lt;br /&gt;
| Speech processing|| Julia Hirschberg|| 33&lt;br /&gt;
|-&lt;br /&gt;
| Resources|| Nancy Ide|| 50&lt;br /&gt;
|-&lt;br /&gt;
| Multi-modal||Michael Johnston || 18&lt;br /&gt;
|-&lt;br /&gt;
| Psycholinguistics ||Roger Levy || 16&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering and paraphrasing|| Chin-Yew Lin || 40&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, grammatical inference, syntax||Yusuke Miyao, Khalil Sima&#039;an  || 88&lt;br /&gt;
|-&lt;br /&gt;
| Generation and summarisation || Ani Nenkova, Bonnie Webber|| 55&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and dialogue ||Jon Oberlander, Matthew Stone|| 56 &lt;br /&gt;
|-&lt;br /&gt;
| Mathematical linguistics||Stuart Shieber || 29&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, segmentation and morphology||Richard Sproat || 51&lt;br /&gt;
|-&lt;br /&gt;
| Bioinformatics || Jun&#039;ichi Tsujii|| 12&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || ChengXiang Zhai|| 33&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|- &lt;br /&gt;
| Machine Translation || Chris Callison-Burch, Qun Liu || 109&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Sebastian Pado, Takenobu Tokunaga || 102&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Text Classification || Bo Pang || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Gary Geunbae Lee || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Rosie Jones || 55&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Donia Scott || 53&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and NLP Applications || Ming Zhou || 50&lt;br /&gt;
|-&lt;br /&gt;
| Parsing || Sadao Kurohashi || 48&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods || David A Smith || 42&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Nicoletta Calzolari || 38&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Pragmatics || Caroline Sporleder || 38&lt;br /&gt;
|-&lt;br /&gt;
| Chinese Natural Language Processing || Nianwen Xue  || 34&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Morphology-Phonology || Rajeev Sangal || 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Grammar || Emily Bender || 28&lt;br /&gt;
|-&lt;br /&gt;
| Multilingualism || Pierre Isabelle || 26&lt;br /&gt;
|-&lt;br /&gt;
| Dialog and Multimodal || Justine Cassell || 16&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li || 9&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling || Roger Levy || 9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D10/D10-1000.pdf EMNLP 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hang Li (Microsoft Research Asia), Llu´ıs Marquez (Technical University of Catalonia) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2010:&lt;br /&gt;
&lt;br /&gt;
Eneko Agirre (University of the Basque Country), Kalina Bontcheva (University of Sheffield), Antal van den Bosch (Tilburg University), David Chiang (USC Information Sciences Institute), Jennifer Chu-Carroll (IBM Research), Evgeniy Gabrilovich (Yahoo! Research), Jianfeng Gao (Microsoft Research), Julio Gonzalo (UNED), Nancy Ide (Vassar College), Haizhou Li (Institute for Infocomm Research), Qun Liu (ICT, Chinese Academy of Sciences), Yusuke Miyao (National Institute of Informatics), Bo Pang (Yahoo! Research), Dragomir Radev (University of Michigan), Noah Smith (Carnegie Mellon University), Kristina Toutanova (Microsoft Research), Yoshimasa Tsuruoka (JAIST), Yi Zhang (University of California, Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N10/N10-1000.pdf NAACL 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Ronald Kaplan (Microsoft Bing) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Jill Burstein (Educational Testing Service), Mary Harper (University of Maryland and The Johns Hopkins University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for NAACL 2010:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yaser Al-Onaizan (IBM), Ciprian Chelba (Google), Mona Diab (Columbia University), Barbara Di Eugenio (University of Illinois at Chicago), Eric Fosler-Lussier (Ohio State University), Makoto Kanazawa (National Institute of Informatics, Tokyo), Damianos Karakos (Johns Hopkins University), Philip Koehn (University of Edinburgh), Mike Maxwell (University of Maryland), Diana McCarthy (Lexical Computing Ltd), Ani Nenkova (University of Pennsylvania), Stefan Oepen (University of Oslo), Dan Roth (University of Illinois at Urbana-Champaign), Noah Smith (Carnegie Mellon University), Amanda Stent (AT&amp;amp;T), Joel Tetreault (Educational Testing Service), Jan Wiebe (University of Pittsburgh)&lt;br /&gt;
&lt;br /&gt;
== ACL 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Greg Kondrak|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Noah Smith, James Curran || 47&lt;br /&gt;
|-&lt;br /&gt;
| Semantics|| Eneko Agirre, Rada Mihalcea|| 67&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Massimo Poesio, Michael Strube|| 41&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz|| 44&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods|| Jianfeng Gao, Jun Suzuki||36&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Hai Feng Wang, Philipp Koehn||80&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||Hsin-Hsi Chen ||29&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Ellen Riloff, Satoshi Sekine||52&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Giuseppe Carenini || 44&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing|| Helen Meng|| 20&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering|| Sanda Harabagiu|| 23&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications||Sophi Ananiadou ||19&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Keh-Jiann Chen || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/E/E09/E09-1000.pdf EACL 2009] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alex Lascarides (University of Edinburgh, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Claire Gardent (CNRS/LORIA Nancy, France), Joakim Nivre (Uppsala University and Vaxjö University,  Sweden) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EACL 2009:&lt;br /&gt;
&lt;br /&gt;
Anja Belz (University of Brighton, UK), Sabine Buchholz (Toshiba Research Europe, UK), Chris Callison-Burch (Johns Hopkins University, USA), Philipp Cimiano (Delft University of Technology, The Netherlands), Maarten de Rijke (University of Amsterdam, The Netherlands), Anna Korhonen (University of Cambridge, UK), Kimmo Koskenniemi (University of Helsinki, Finland), Bernardo Magnini (FBK-irst, Italy), Stephan Oepen (University of Oslo, Norway), Richard Power (The Open University, UK), Giuseppe Riccardi (University of Trento, Italy)&lt;br /&gt;
&lt;br /&gt;
== EMNLP 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Jason Eisner || 24&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Steve Clark|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics||Vivi Nastase || 45&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Tim Paek|| 28&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||Chin-Yew Lin || 25&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods||Miles Osborne ||32&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Adam Lopez ||68&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering||Hang Li ||33&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining||Marius Pasca ||39&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Theresa Wilson || 37&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing||Eric Fosler-Lussier || 11&lt;br /&gt;
|-&lt;br /&gt;
| Natural Language Processing Applications||Carlo Strapparava ||22&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Katrin Erk || 26&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality|| Mona Diab||22&lt;br /&gt;
|-&lt;br /&gt;
| NLP for Web 2.0|| Iryna Gurevych||20&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2008 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon, lexical semantics, word sense disambiguation || Paul Buitelaar || 45&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Stephen Pulman Mary Dalrymple || 46&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, dialogue || Eva Hajicova || 24&lt;br /&gt;
|-&lt;br /&gt;
| NLG, summarisation || Robert Dale || 36&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, morphology, grammar learning || Mark Johnson || 68&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation and Multilinguality || Pierre Isabelle, Miles Osborne || 86&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, text and web mining, multimedia || Junichi Tsujii || 54&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction, opinion and sentiment Analysis || Rob Gaizauskus || 24&lt;br /&gt;
|-&lt;br /&gt;
| Paraphrasing and Textual Entailment || Bill Dolan || 21&lt;br /&gt;
|-&lt;br /&gt;
| Speech and multimodality || Julia Hirschberg || 16&lt;br /&gt;
|-&lt;br /&gt;
| Resources || Chu-Ren Huang || 56&lt;br /&gt;
|-&lt;br /&gt;
| Learning || Dan Roth || 29&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11152</id>
		<title>Areas, chairs, and area submissions</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11152"/>
		<updated>2015-07-04T01:27:16Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: /* ACL 2012 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.aclweb.org/anthology/P/P14/P14-1000.pdf ACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair  || Daniel Marcu (ISI/USC) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Kristina Toutanova (Microsoft Research), Hua Wu (Baidu) ||&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling and Psycholinguistics || Klinton Bicknell (Northwestern University) || 9, 14&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems || Asli Celikyilmaz (Microsoft Research) || 10, 8&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference and Pragmatics || Micha Elsner (Ohio State University), Michael Strube (HITS gGmbH) || 22, 20&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization, Sentiment Analysis and Topic Models || Jacob Eisenstein (Georgia Institute of Technology), Jun Zhao (Chinese Academy of Sciences) || 53, 48&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Barbara Di Eugenio (University of Illinois at Chicago) || 13, 7&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining || Marius Pasca (Google Research), Mihai Surdeanu (University of Arizona) || 54, 49&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || Ting	Liu (Harbin Institute of Technology) || 8, 9&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation || Nicoletta Calzolari (Institute of Computational Linguistics of the National Research Council), Nianwen Xue (Brandeis University) || 31, 28&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontology || Eneko Agirre (University of the Basque Country) || 26, 23&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Kevin Duh (Nara Institute of Science and Technology), Jason Eisner (Johns Hopkins University) || 39, 15&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Colin Cherry (National Research Council, Canada), Niyu Ge (IBM Research), Liang Huang (City University of New York), Yanjun Ma (Baidu) || 76, 72&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality and Multimodal NLP || Michel Galley (Microsoft Research) || 12, 14&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications and NLP-enabled Technology || Mamoru Komachi (Tokyo Metropolitan University) || 32, 34&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (Johns Hopkins University), Alan Ritter (Carnegie Mellon University) || 29, 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Iryna Gurevych (Technische Universität Darmstadt), Percy Liang (Stanford University), Shiqi Zhao (Baidu) || 53, 37&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Yang Liu (University of Texas at Dallas) || 19, 11&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Scott Wen-tau Yih (Microsoft Research) || 6, 4&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Ciprian Chelba (Google Research) || 9, 10&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Xavier Carreras (Universitat Politecnica de Catalunya), Slav Petrov (Google Research) || 35, 48&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology and Word Segmentation || Grzegorz Kondrak (University of Alberta) || 10, 18&lt;br /&gt;
|}&lt;br /&gt;
== [http://www.aclweb.org/anthology/E/E14/E14-1000.pdf EACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Shuly Wintner (University of Haifa, Israel) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Sharon Goldwater (University of Edinburgh, UK), Stefan Riezler (Heidelberg University, Germany)) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EACL 2014:&lt;br /&gt;
&lt;br /&gt;
Enrique Alfonseca, John Blitzer, Aoife Cahill, Vera Demberg, Chris Dyer, Jacob Eisenstein, Micha Elsner, Katrin Erk, Afsaneh Fazly, Katja Filippova, Alexander Fraser, Iryna Gurevych, Chin-Yew Lin, David McClosky, Yusuke Miyao, Hwee Tou Ng, Slav Petrov, Simone Paolo Ponzetto, Sebastian Riedel, Verena Rieser, Helmut Schmid, Izhak Shafran, Hiroya Takamura, Lucy Vanderwende&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D14/D14-1000.pdf EMNLP 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alessandro Moschitti (Qatar Computing Research Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Walter Daelemans (University of Antwerp), Bo Pang (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, and Segmentation || Tomaž Erjavec (Jožef Stefan Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Gosse Bouma (University of Groningen), Yuji Matsumoto (Nara Institute of Science and Technology) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Jennifer Chu-Carroll (IBM Watson Research Center), Olga Uryupina (University of Trento) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Rada Mihalcea (University of Michigan), Sameer Pradhan (Harvard Medical School) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz (University of Brighton), Dilek Hakkani-Tür (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Ivan Titov (University of Amsterdam), Jerry Zhu (University of Wisconsin-Madison) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Chris Callison-Burch (University of Pennsylvania), Dan Gildea (University of Rochester) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, Text Categorization, and Question Answering || Sien Moens (Katholieke Universiteit Leuven), Hinrich Schütze (Ludwig Maximilian University of M&lt;br /&gt;
unich) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Marius Pasca (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Massimiliano Ciaramita (Google), Hwee Tou Ng (National University of Singapore) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University), Minlie Huang (Tsinghua University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Irwin King (The Chinese University of Hong Kong), Qiaozhu Mei (University of Michigan) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Pascale Fung (Hong Kong University of Science and Technology), Hugo Van hamme (Katholieke Universiteit Leuven) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Psycholinguistics || Sharon Goldwater (University of Edinburgh) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2013 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modelling and Psycholinguistics || * || 13, 12&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems ||  || 15, 10&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference, and Pragmatics ||  || 28, 19&lt;br /&gt;
|-&lt;br /&gt;
| Evaluation Methods ||  || 11, 15&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||  || 20, 20&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources ||  || 24, 27&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontologies ||  || 25, 25&lt;br /&gt;
|-&lt;br /&gt;
| Low Resource Language Processing ||  || 10, 13&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Methods, Applications and Evaluations ||  || 50, 58&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Statistical Models ||  || 44, 30&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications ||  || 46, 42&lt;br /&gt;
|-&lt;br /&gt;
| NLP and Creativity ||  || 3, 4&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Languages of Central and Eastern Europe and The Balkans ||  || 2, 8&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media ||  || 32, 26&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering ||  || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Semantics ||  || 50, 32&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification ||  || 46, 60&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing ||  || 9, 12&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods in NLP ||  || 35, 32&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||  || 31, 23&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing ||  || 39, 43&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Chunking ||  || 12, 13&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Information Extraction ||  || 68, 53&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation ||  || 13, 15&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for ACL 2013: &lt;br /&gt;
&lt;br /&gt;
Frank Keller, Roger Levy, Amanda Stent, David Suendermann, Andrew Kehler, Becky Passonneau, Hang Li, Nancy Ide, Piek Vossen, Philipp Cimiano, Sabine Schulte im Walde, Dekang Lin, Chiori Hori, Keh-Yih Su, Roland Kuhn, Dekai Wu, Benjamin Snyder, Thamar Solorio, Ehud Reiter, Massimiliano Ciaramita, Ken Church, Carlo Strapparava, Tomaz Erjavec, Adam Prziepiorkowski, Patrick Pantel, Owen Rambow, Chris Dyer, Jason Eisner, Jennifer Chu-Carroll, Bernardo Magnini, Lluis Marquez, Alessandro Moschitti, Claire Cardie, Rada Mihalcea, Dilek Hakkani-Tur, Walter Daelemans, Dan Roth, Alex Koller, Ani Nenkova, Jamie Henderson, Sadao Kurohashi, Yuji Matsumoto, Heng Ji, Marie-Francine Moens, Hwee Tou Ng&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D13/D13-1000.pdf EMNLP 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || David Yarowsky (John Hopkins University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Timothy Baldwin (University of Melbourne, Australia), Anna Korhonen (University of Cambridge, UK) || &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, Tagging, Chunking and Segmentation || Kemal Oflazer (Carnegie Mellon University Qatar), Anna Feldman (Montclair State University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Jennifer Foster (Dublin City University, Ireland), Yoav Goldberg (Bar Ilan University, Israel) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Mark Stevenson (University of Sheffield, UK), Luke Zettlemoyer (University of Washington, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Carolyn Rose (Carnegie Mellon University, USA), Matt Purver (Queen Mary, University of London, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language resources || Emily M. Bender (University of Washington, USA), Aline Villavicencio (Federal University of Rio Grande do Sul, Brazil) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Dragomir Radev (University of Michigan, USA), Yang Liu (University of Texas at Dallas, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Amir Globerson (The Hebrew University of Jerusalem, Israel), Antal van den Bosch (Radboud University &lt;br /&gt;
Nijmegen, Netherlands) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Taro Watanabe (NICT, Japan), Kevin Knight (Information Sciences Institute, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Bernardo Magnini (Fondazione Bruno Kessler, Italy), Soumen Chakrabarti (Indian Institute of Technology, India) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Mausam (Indian Institute of Technology, India), Heng Ji (City University of New York, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li (Institute for Infocomm Research, Singapore), Amanda Stent (AT&amp;amp;T Labs, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Hang Li (Huawei Noah’s Ark Lab, Hong Kong), Kevin Cohen (University of Colorado School of Medicine, USA) &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Janyce Weibe (University of Pittsburgh, USA), Bing Liu (University of Illinois at Chicago, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (University of Edinburgh, UK), Chin-Yew Lin (Microsoft Research Asia, China) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Models of Human Language Acquisition and Processing || Alessandro Lenci (University of Pisa, Italy), Afra Alishahi (Tilburg University, Netherlands) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N13/N13-1000.pdf NAACL 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Lucy Vanderwende (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hal Daumé III (University of Maryland), Katrin Kirchhoff (University of Washington) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology, Word Segmentation || Markus Dreyer (SDL Language Weaver) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax, Tagging, Chunking and Parsing || Joakim Nivre (Uppsala University), James Henderson (Université de Genève) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Percy Liang (Stanford University), Peter Turney (National Research Council of Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Multimodal NLP || Srinivas Bangalore (AT&amp;amp;T) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, Pragmatics || David Traum (Institute for Creative Technologies), Joyce Chai (Michigan State University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Linguistic Aspects of CL || Vera Demberg (Saarland University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Guy Lapalme ((Université de Montréal) ||&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Johanna Moore (University of Edinburgh) ||&lt;br /&gt;
|-&lt;br /&gt;
| ML for Language Processing || Phil Blunsom (University of Oxford), Mark Dredze (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Alon Lavie (Carnegie Mellon University), Marine Carpuat (National Research Council of Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and QA || Eugene Agichtein (Emory University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Sanda Harabagiu (University of Texas at Dallas) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Zak Shafran (Oregon Health and Science University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Bo Pang (Cornell University), Theresa Wilson (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-enabled Technology || David Bean (TDW) ||&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization and Topic Clustering || Jordan Boyd-Graber (University of Maryland) ||&lt;br /&gt;
|-&lt;br /&gt;
| Social Media Analysis and Processing || Bill Dolan (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation Methods || Ani Nenkova (University of Pennsylvania) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/P/P12/P12-1000.pdf ACL 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Haizhou Li (Institute for Infocomm Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Chin-Yew Lin (Microsoft Research Asia), Miles Osborne (University of Edinburgh) || &lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Dialogue || Mikio Nakano, Andrei Popescu-Belis || 39, 23&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Information Retrieval || Jian Su, Jianfeng Gao, Vincent Ng || 64, 37&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Fei Xia || 15, 13&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics || Evgeniy Gabrilovich, Naoaki Okazaki || 38, 31&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon and Ontology ||  Eneko Agirre || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning || Trevor Cohn, Mark Dredze || 56, 28&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Marcello Federico, Adam Lopez, David Talbot, Hua Wu || 75, 56&lt;br /&gt;
|-&lt;br /&gt;
| Multilingual || Daniel M. Bikel, Mona T. Diab || 31, 15&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications || Jason Baldridge, David Weir || 41, 18&lt;br /&gt;
|-&lt;br /&gt;
| Syntax/Parsing || Stephen Clark, Liang Huang || 64, 36&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Hongyuan Zha, Hsin-Hsi Chen || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Social Media and Sentiment || Noah Smith, Jan Wiebe || 51, 32&lt;br /&gt;
|-&lt;br /&gt;
| Speech || Chung-Hsien Wu || 16, 12&lt;br /&gt;
|-&lt;br /&gt;
| Summarization &amp;amp; Generation || Anja Belz, Ani Nenkova || 20, 23&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation, Morphology and Phonology || Kemal Oflazer || 36, 23&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/E/E12/E12-1000.pdf EACL 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Walter Daelemans (University of Antwerp, Belgium) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Mirella Lapata (University of Edinburgh, UK), Lluis Marquez (Universitat Politecnica de Catalunya, Spain) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EACL 2012:&lt;br /&gt;
&lt;br /&gt;
Katja Filippova (Google), Min-Yen Kan (National University of Singapore), Charles Sutton (University of Edinburgh), Ivan Titov (Saarland University), Xavier Carreras (&lt;br /&gt;
Universitat Politecnica de Catalunya(UPC)), Kenji Sagae (University of Southern California), Kallirroi Georgila (Institute for Creative Technologies, University of Sou&lt;br /&gt;
thern California), Michael Strube (HITS gGmbH), Pascale Fung (The Hong Kong University of Science and Tech), Bing Liu (University of Illinois at Chicago), Theresa Wils&lt;br /&gt;
on (Johns Hopkins University), David McClosky (Stanford University), Sebastian Riedel (University of Massachusetts), Phil Blunsom (University of Oxford), Mikel L. Forc&lt;br /&gt;
ada (Universitat d’Alacant), Christof Monz (University of Amsterdam), Sharon Goldwater (University of Edinburgh), Richard Wicentowski (Swarthmore College), Patrick Pan&lt;br /&gt;
tel (Microsoft Research), Hiroya Takamura (Tokyo Institute of Technology), Alexander Koller (University of Potsdam), Sebastian Pado (Universitat Heidelberg), Maarten d&lt;br /&gt;
e Rijke (University of Amsterdam), Julio Gonzalo (UNED), Lori Levin (Carnegie Mellon University), Piek Vossen (VU University Amsterdam), Afra Alishahi (Tilburg Univers&lt;br /&gt;
ity, The Netherlands), John Hale (Cornell University)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D12/D12-1000.pdf EMNLP 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jun’ichi Tsujii (Microsoft Research Asia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || James Henderson (Xerox Research Centre Europe), Marius Pasca (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2012:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yejin Choi (Stony Brook University), Hal Daume III (University of Maryland), Doug Downey (Northwestern University), Chris Dyer (Carnegie Mellon University), Adria de Gispert (University of Cambridge), Julia Hirschberg (Columbia University), Anna Korhonen (University of Cambridge), Bing Liu (University of Illinois at Chicago), Hwee Tou Ng (National University of Singapore), Patrick Pantel (Microsoft Research), Marco Pennacchiotti (Yahoo! Labs), Slav Petrov (Google), Simone Paolo Ponzetto (Sapienza University of Rome), John Prager (IBM Research), Chris Quirk (Microsoft Research), Sebastian Riedel (University of Massachusetts at Amherst), Hiroya Takamura (Tokyo Institute of Technology), Partha Talukdar (Carnegie Mellon University), Carnegie Mellon University (Microsoft Research), Reut Tsarfaty (Uppsala University), Marilyn Walker (University of California at Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N12/N12-1000.pdf NAACL 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jennifer Chu-Carroll (IBM T.J. Watson Research Center) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Eric Fosler-Lussier (The Ohio State University), Ellen Riloff (University of Utah) || &lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Roberto Basili (University of Rome) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Guiseppe Carenini (University of British Columbia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources Novel Evaluation Methods || Christy Doran (MITRE) ||&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology Word Segmentation || Jason Eisner (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || George Foster (National Research Council Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Social Media Analysis and Processing || Roxana Girju (University of Illinois Urbana-Champaign) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Heng Ji (City University of New York) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntactic Tagging and Chunking || Sadao Kurohashi (Kyoto University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Matt Lease (University of Texas Austin) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse Dialogue and Pragmatics || Diane Litman (University of Pittsburgh) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Deepak Ravichandran (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Guiseppe Ricardi (University of Trento), Richard Rose (McGill University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Giorgio Satta (University of Padova) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Fei Sha (University of Southern California) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Suzanne Stevenson (University of Toronto) ||&lt;br /&gt;
|-&lt;br /&gt;
| End-to-end Language Processing Systems || David Traum (University of Southern California) ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Scott Yih (Microsoft) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Luke Zettlemoyer (University of Washington) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Bowen Zhou (IBM) ||&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization/Topic Clustering || Jerry Zhu (University of Wisconsin) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/P/P11/P11-1000.pdf ACL 2011] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Dekang Lin (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Yuji Matsumoto (Nara Institute of Science and Technology), Rada Mihalcea (University of North Texas) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Anna Feldman, Greg Kondrak || 34,22&lt;br /&gt;
|-&lt;br /&gt;
|Syntax and Parsing || Xavier Carreras, Ryan McDonald  || 56,48&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Diana McCarthy, Deniz Yuret || 48, 41&lt;br /&gt;
|-&lt;br /&gt;
|Discourse, Dialogue, and Pragmatics || Kentaro Inui, Svetlana Stoyanchev|| 31, 23&lt;br /&gt;
|-&lt;br /&gt;
|Summarization and Generation || Yang Liu, Manabu Okumura  || 36, 35&lt;br /&gt;
|- &lt;br /&gt;
|Statistical and Machine Learning Methods ||Lluis Marquez, Alessandro Moschitti || 42, 27&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Statistical Models ||Shankar Kumar, Taro Watanabe || 56, 39&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Methods, Applications and Evaluations ||Elliott Macklovitch, Michel Simard || 33, 53&lt;br /&gt;
|-&lt;br /&gt;
|Information Retrieval ||  Fabrizio Sebastiani || 26, 11&lt;br /&gt;
|-&lt;br /&gt;
|Question Answering || Bernardo Magnini  || 19, 10&lt;br /&gt;
|-&lt;br /&gt;
|Text Mining and Information Extraction || Razvan Bunescu, Alexander Yates || 51, 38&lt;br /&gt;
|-&lt;br /&gt;
|Sentiment Analysis, Opinion Mining and Text Classification ||Katja Markert, Xiaojun Wan || 45, 38&lt;br /&gt;
|-&lt;br /&gt;
|Spoken Language Processing || Pascale Fung || 20, 13&lt;br /&gt;
|-&lt;br /&gt;
|Natural Language Processing Applications || Vasile Rus || 30, 51&lt;br /&gt;
|-&lt;br /&gt;
|Language Resources || Chu-Ren Huang, Dan Tufis|| 32, 26&lt;br /&gt;
|-&lt;br /&gt;
|Multilinguality || Thamar Solorio || 24, 16&lt;br /&gt;
|-&lt;br /&gt;
|NLP for Web 2.0 || Vivi Nastase || 31, 16&lt;br /&gt;
|-&lt;br /&gt;
|Linguistic Creativity || Carlo Strapparava || 20, 17&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D11/D11-1000.pdf EMNLP 2011] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Paola Merlo (University of Geneva) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Regina Barzilay (Massachusetts Institute of Technology), Mark Johnson (Macquarie University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2011:&lt;br /&gt;
&lt;br /&gt;
Emily M. Bender (University of Washington), Phil Blunsom (University of Oxford), Eugene Charniak (Brown University), Chris Dyer (Carnegie Mellon University), Jenny Finkel (Columbia University), Radu Florian (IBM Watson Research Center), Amir Globerson (The Hebrew University of Jerusalem), Keith Hall (Google Research), Minlie Huang (Tsinghua University), Katrin Kirchhoff (University of Washington), Mirella Lapata (University of Edinburgh), Chin-Yew Lin (Microsoft Research Asia), Bo Pang (Yahoo! Research), Stefan Riezler (University of Heidelberg), Ellen Riloff (University of Utah), Hinrich Schuetze (University of Stuttgart), Jian Su (Institute for Infocomm Research), Dekai Wu (Hong Kong University of Science and Technology), Luke Zettlemoyer (University of Washington)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/P/P10/P10-1000.pdf ACL 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long + short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jan Hajič (Charles University in Prague, Czech Republic) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Sandra Carberry (University of Delaware, USA), Stephen Clark (University of Cambridge, United Kingdom) ||&lt;br /&gt;
|- &lt;br /&gt;
| Lexical semantics || Tim Baldwin, Roberto Navigli || 87&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning|| Phil Blunsom, Walter Daelemans || 87&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction|| Kalina Bontcheva, Hang Li || 52&lt;br /&gt;
|-&lt;br /&gt;
| Formal semantics || Johan Bos || 24&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis || Claire Cardie, Theresa Wilson|| 69&lt;br /&gt;
|-&lt;br /&gt;
| Text mining || Rob Gaizauskas || 30&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Keith Hall, Chris Quirk|| 100&lt;br /&gt;
|-&lt;br /&gt;
| Speech processing|| Julia Hirschberg|| 33&lt;br /&gt;
|-&lt;br /&gt;
| Resources|| Nancy Ide|| 50&lt;br /&gt;
|-&lt;br /&gt;
| Multi-modal||Michael Johnston || 18&lt;br /&gt;
|-&lt;br /&gt;
| Psycholinguistics ||Roger Levy || 16&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering and paraphrasing|| Chin-Yew Lin || 40&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, grammatical inference, syntax||Yusuke Miyao, Khalil Sima&#039;an  || 88&lt;br /&gt;
|-&lt;br /&gt;
| Generation and summarisation || Ani Nenkova, Bonnie Webber|| 55&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and dialogue ||Jon Oberlander, Matthew Stone|| 56 &lt;br /&gt;
|-&lt;br /&gt;
| Mathematical linguistics||Stuart Shieber || 29&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, segmentation and morphology||Richard Sproat || 51&lt;br /&gt;
|-&lt;br /&gt;
| Bioinformatics || Jun&#039;ichi Tsujii|| 12&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || ChengXiang Zhai|| 33&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|- &lt;br /&gt;
| Machine Translation || Chris Callison-Burch, Qun Liu || 109&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Sebastian Pado, Takenobu Tokunaga || 102&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Text Classification || Bo Pang || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Gary Geunbae Lee || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Rosie Jones || 55&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Donia Scott || 53&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and NLP Applications || Ming Zhou || 50&lt;br /&gt;
|-&lt;br /&gt;
| Parsing || Sadao Kurohashi || 48&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods || David A Smith || 42&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Nicoletta Calzolari || 38&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Pragmatics || Caroline Sporleder || 38&lt;br /&gt;
|-&lt;br /&gt;
| Chinese Natural Language Processing || Nianwen Xue  || 34&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Morphology-Phonology || Rajeev Sangal || 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Grammar || Emily Bender || 28&lt;br /&gt;
|-&lt;br /&gt;
| Multilingualism || Pierre Isabelle || 26&lt;br /&gt;
|-&lt;br /&gt;
| Dialog and Multimodal || Justine Cassell || 16&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li || 9&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling || Roger Levy || 9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D10/D10-1000.pdf EMNLP 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hang Li (Microsoft Research Asia), Llu´ıs Marquez (Technical University of Catalonia) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2010:&lt;br /&gt;
&lt;br /&gt;
Eneko Agirre (University of the Basque Country), Kalina Bontcheva (University of Sheffield), Antal van den Bosch (Tilburg University), David Chiang (USC Information Sciences Institute), Jennifer Chu-Carroll (IBM Research), Evgeniy Gabrilovich (Yahoo! Research), Jianfeng Gao (Microsoft Research), Julio Gonzalo (UNED), Nancy Ide (Vassar College), Haizhou Li (Institute for Infocomm Research), Qun Liu (ICT, Chinese Academy of Sciences), Yusuke Miyao (National Institute of Informatics), Bo Pang (Yahoo! Research), Dragomir Radev (University of Michigan), Noah Smith (Carnegie Mellon University), Kristina Toutanova (Microsoft Research), Yoshimasa Tsuruoka (JAIST), Yi Zhang (University of California, Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N10/N10-1000.pdf NAACL 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Ronald Kaplan (Microsoft Bing) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Jill Burstein (Educational Testing Service), Mary Harper (University of Maryland and The Johns Hopkins University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for NAACL 2010:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yaser Al-Onaizan (IBM), Ciprian Chelba (Google), Mona Diab (Columbia University), Barbara Di Eugenio (University of Illinois at Chicago), Eric Fosler-Lussier (Ohio State University), Makoto Kanazawa (National Institute of Informatics, Tokyo), Damianos Karakos (Johns Hopkins University), Philip Koehn (University of Edinburgh), Mike Maxwell (University of Maryland), Diana McCarthy (Lexical Computing Ltd), Ani Nenkova (University of Pennsylvania), Stefan Oepen (University of Oslo), Dan Roth (University of Illinois at Urbana-Champaign), Noah Smith (Carnegie Mellon University), Amanda Stent (AT&amp;amp;T), Joel Tetreault (Educational Testing Service), Jan Wiebe (University of Pittsburgh)&lt;br /&gt;
&lt;br /&gt;
== ACL 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Greg Kondrak|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Noah Smith, James Curran || 47&lt;br /&gt;
|-&lt;br /&gt;
| Semantics|| Eneko Agirre, Rada Mihalcea|| 67&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Massimo Poesio, Michael Strube|| 41&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz|| 44&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods|| Jianfeng Gao, Jun Suzuki||36&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Hai Feng Wang, Philipp Koehn||80&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||Hsin-Hsi Chen ||29&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Ellen Riloff, Satoshi Sekine||52&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Giuseppe Carenini || 44&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing|| Helen Meng|| 20&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering|| Sanda Harabagiu|| 23&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications||Sophi Ananiadou ||19&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Keh-Jiann Chen || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/E/E09/E09-1000.pdf EACL 2009] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alex Lascarides (University of Edinburgh, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Claire Gardent (CNRS/LORIA Nancy, France), Joakim Nivre (Uppsala University and Vaxjö University,  Sweden) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EACL 2009:&lt;br /&gt;
&lt;br /&gt;
Anja Belz (University of Brighton, UK), Sabine Buchholz (Toshiba Research Europe, UK), Chris Callison-Burch (Johns Hopkins University, USA), Philipp Cimiano (Delft University of Technology, The Netherlands), Maarten de Rijke (University of Amsterdam, The Netherlands), Anna Korhonen (University of Cambridge, UK), Kimmo Koskenniemi (University of Helsinki, Finland), Bernardo Magnini (FBK-irst, Italy), Stephan Oepen (University of Oslo, Norway), Richard Power (The Open University, UK), Giuseppe Riccardi (University of Trento, Italy)&lt;br /&gt;
&lt;br /&gt;
== EMNLP 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Jason Eisner || 24&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Steve Clark|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics||Vivi Nastase || 45&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Tim Paek|| 28&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||Chin-Yew Lin || 25&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods||Miles Osborne ||32&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Adam Lopez ||68&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering||Hang Li ||33&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining||Marius Pasca ||39&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Theresa Wilson || 37&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing||Eric Fosler-Lussier || 11&lt;br /&gt;
|-&lt;br /&gt;
| Natural Language Processing Applications||Carlo Strapparava ||22&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Katrin Erk || 26&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality|| Mona Diab||22&lt;br /&gt;
|-&lt;br /&gt;
| NLP for Web 2.0|| Iryna Gurevych||20&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2008 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon, lexical semantics, word sense disambiguation || Paul Buitelaar || 45&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Stephen Pulman Mary Dalrymple || 46&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, dialogue || Eva Hajicova || 24&lt;br /&gt;
|-&lt;br /&gt;
| NLG, summarisation || Robert Dale || 36&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, morphology, grammar learning || Mark Johnson || 68&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation and Multilinguality || Pierre Isabelle, Miles Osborne || 86&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, text and web mining, multimedia || Junichi Tsujii || 54&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction, opinion and sentiment Analysis || Rob Gaizauskus || 24&lt;br /&gt;
|-&lt;br /&gt;
| Paraphrasing and Textual Entailment || Bill Dolan || 21&lt;br /&gt;
|-&lt;br /&gt;
| Speech and multimodality || Julia Hirschberg || 16&lt;br /&gt;
|-&lt;br /&gt;
| Resources || Chu-Ren Huang || 56&lt;br /&gt;
|-&lt;br /&gt;
| Learning || Dan Roth || 29&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11151</id>
		<title>Areas, chairs, and area submissions</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11151"/>
		<updated>2015-07-04T01:25:56Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: /* ACL 2011 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.aclweb.org/anthology/P/P14/P14-1000.pdf ACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair  || Daniel Marcu (ISI/USC) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Kristina Toutanova (Microsoft Research), Hua Wu (Baidu) ||&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling and Psycholinguistics || Klinton Bicknell (Northwestern University) || 9, 14&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems || Asli Celikyilmaz (Microsoft Research) || 10, 8&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference and Pragmatics || Micha Elsner (Ohio State University), Michael Strube (HITS gGmbH) || 22, 20&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization, Sentiment Analysis and Topic Models || Jacob Eisenstein (Georgia Institute of Technology), Jun Zhao (Chinese Academy of Sciences) || 53, 48&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Barbara Di Eugenio (University of Illinois at Chicago) || 13, 7&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining || Marius Pasca (Google Research), Mihai Surdeanu (University of Arizona) || 54, 49&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || Ting	Liu (Harbin Institute of Technology) || 8, 9&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation || Nicoletta Calzolari (Institute of Computational Linguistics of the National Research Council), Nianwen Xue (Brandeis University) || 31, 28&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontology || Eneko Agirre (University of the Basque Country) || 26, 23&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Kevin Duh (Nara Institute of Science and Technology), Jason Eisner (Johns Hopkins University) || 39, 15&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Colin Cherry (National Research Council, Canada), Niyu Ge (IBM Research), Liang Huang (City University of New York), Yanjun Ma (Baidu) || 76, 72&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality and Multimodal NLP || Michel Galley (Microsoft Research) || 12, 14&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications and NLP-enabled Technology || Mamoru Komachi (Tokyo Metropolitan University) || 32, 34&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (Johns Hopkins University), Alan Ritter (Carnegie Mellon University) || 29, 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Iryna Gurevych (Technische Universität Darmstadt), Percy Liang (Stanford University), Shiqi Zhao (Baidu) || 53, 37&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Yang Liu (University of Texas at Dallas) || 19, 11&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Scott Wen-tau Yih (Microsoft Research) || 6, 4&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Ciprian Chelba (Google Research) || 9, 10&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Xavier Carreras (Universitat Politecnica de Catalunya), Slav Petrov (Google Research) || 35, 48&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology and Word Segmentation || Grzegorz Kondrak (University of Alberta) || 10, 18&lt;br /&gt;
|}&lt;br /&gt;
== [http://www.aclweb.org/anthology/E/E14/E14-1000.pdf EACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Shuly Wintner (University of Haifa, Israel) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Sharon Goldwater (University of Edinburgh, UK), Stefan Riezler (Heidelberg University, Germany)) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EACL 2014:&lt;br /&gt;
&lt;br /&gt;
Enrique Alfonseca, John Blitzer, Aoife Cahill, Vera Demberg, Chris Dyer, Jacob Eisenstein, Micha Elsner, Katrin Erk, Afsaneh Fazly, Katja Filippova, Alexander Fraser, Iryna Gurevych, Chin-Yew Lin, David McClosky, Yusuke Miyao, Hwee Tou Ng, Slav Petrov, Simone Paolo Ponzetto, Sebastian Riedel, Verena Rieser, Helmut Schmid, Izhak Shafran, Hiroya Takamura, Lucy Vanderwende&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D14/D14-1000.pdf EMNLP 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alessandro Moschitti (Qatar Computing Research Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Walter Daelemans (University of Antwerp), Bo Pang (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, and Segmentation || Tomaž Erjavec (Jožef Stefan Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Gosse Bouma (University of Groningen), Yuji Matsumoto (Nara Institute of Science and Technology) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Jennifer Chu-Carroll (IBM Watson Research Center), Olga Uryupina (University of Trento) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Rada Mihalcea (University of Michigan), Sameer Pradhan (Harvard Medical School) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz (University of Brighton), Dilek Hakkani-Tür (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Ivan Titov (University of Amsterdam), Jerry Zhu (University of Wisconsin-Madison) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Chris Callison-Burch (University of Pennsylvania), Dan Gildea (University of Rochester) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, Text Categorization, and Question Answering || Sien Moens (Katholieke Universiteit Leuven), Hinrich Schütze (Ludwig Maximilian University of M&lt;br /&gt;
unich) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Marius Pasca (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Massimiliano Ciaramita (Google), Hwee Tou Ng (National University of Singapore) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University), Minlie Huang (Tsinghua University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Irwin King (The Chinese University of Hong Kong), Qiaozhu Mei (University of Michigan) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Pascale Fung (Hong Kong University of Science and Technology), Hugo Van hamme (Katholieke Universiteit Leuven) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Psycholinguistics || Sharon Goldwater (University of Edinburgh) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2013 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modelling and Psycholinguistics || * || 13, 12&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems ||  || 15, 10&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference, and Pragmatics ||  || 28, 19&lt;br /&gt;
|-&lt;br /&gt;
| Evaluation Methods ||  || 11, 15&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||  || 20, 20&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources ||  || 24, 27&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontologies ||  || 25, 25&lt;br /&gt;
|-&lt;br /&gt;
| Low Resource Language Processing ||  || 10, 13&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Methods, Applications and Evaluations ||  || 50, 58&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Statistical Models ||  || 44, 30&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications ||  || 46, 42&lt;br /&gt;
|-&lt;br /&gt;
| NLP and Creativity ||  || 3, 4&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Languages of Central and Eastern Europe and The Balkans ||  || 2, 8&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media ||  || 32, 26&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering ||  || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Semantics ||  || 50, 32&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification ||  || 46, 60&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing ||  || 9, 12&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods in NLP ||  || 35, 32&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||  || 31, 23&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing ||  || 39, 43&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Chunking ||  || 12, 13&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Information Extraction ||  || 68, 53&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation ||  || 13, 15&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for ACL 2013: &lt;br /&gt;
&lt;br /&gt;
Frank Keller, Roger Levy, Amanda Stent, David Suendermann, Andrew Kehler, Becky Passonneau, Hang Li, Nancy Ide, Piek Vossen, Philipp Cimiano, Sabine Schulte im Walde, Dekang Lin, Chiori Hori, Keh-Yih Su, Roland Kuhn, Dekai Wu, Benjamin Snyder, Thamar Solorio, Ehud Reiter, Massimiliano Ciaramita, Ken Church, Carlo Strapparava, Tomaz Erjavec, Adam Prziepiorkowski, Patrick Pantel, Owen Rambow, Chris Dyer, Jason Eisner, Jennifer Chu-Carroll, Bernardo Magnini, Lluis Marquez, Alessandro Moschitti, Claire Cardie, Rada Mihalcea, Dilek Hakkani-Tur, Walter Daelemans, Dan Roth, Alex Koller, Ani Nenkova, Jamie Henderson, Sadao Kurohashi, Yuji Matsumoto, Heng Ji, Marie-Francine Moens, Hwee Tou Ng&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D13/D13-1000.pdf EMNLP 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || David Yarowsky (John Hopkins University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Timothy Baldwin (University of Melbourne, Australia), Anna Korhonen (University of Cambridge, UK) || &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, Tagging, Chunking and Segmentation || Kemal Oflazer (Carnegie Mellon University Qatar), Anna Feldman (Montclair State University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Jennifer Foster (Dublin City University, Ireland), Yoav Goldberg (Bar Ilan University, Israel) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Mark Stevenson (University of Sheffield, UK), Luke Zettlemoyer (University of Washington, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Carolyn Rose (Carnegie Mellon University, USA), Matt Purver (Queen Mary, University of London, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language resources || Emily M. Bender (University of Washington, USA), Aline Villavicencio (Federal University of Rio Grande do Sul, Brazil) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Dragomir Radev (University of Michigan, USA), Yang Liu (University of Texas at Dallas, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Amir Globerson (The Hebrew University of Jerusalem, Israel), Antal van den Bosch (Radboud University &lt;br /&gt;
Nijmegen, Netherlands) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Taro Watanabe (NICT, Japan), Kevin Knight (Information Sciences Institute, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Bernardo Magnini (Fondazione Bruno Kessler, Italy), Soumen Chakrabarti (Indian Institute of Technology, India) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Mausam (Indian Institute of Technology, India), Heng Ji (City University of New York, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li (Institute for Infocomm Research, Singapore), Amanda Stent (AT&amp;amp;T Labs, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Hang Li (Huawei Noah’s Ark Lab, Hong Kong), Kevin Cohen (University of Colorado School of Medicine, USA) &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Janyce Weibe (University of Pittsburgh, USA), Bing Liu (University of Illinois at Chicago, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (University of Edinburgh, UK), Chin-Yew Lin (Microsoft Research Asia, China) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Models of Human Language Acquisition and Processing || Alessandro Lenci (University of Pisa, Italy), Afra Alishahi (Tilburg University, Netherlands) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N13/N13-1000.pdf NAACL 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Lucy Vanderwende (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hal Daumé III (University of Maryland), Katrin Kirchhoff (University of Washington) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology, Word Segmentation || Markus Dreyer (SDL Language Weaver) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax, Tagging, Chunking and Parsing || Joakim Nivre (Uppsala University), James Henderson (Université de Genève) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Percy Liang (Stanford University), Peter Turney (National Research Council of Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Multimodal NLP || Srinivas Bangalore (AT&amp;amp;T) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, Pragmatics || David Traum (Institute for Creative Technologies), Joyce Chai (Michigan State University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Linguistic Aspects of CL || Vera Demberg (Saarland University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Guy Lapalme ((Université de Montréal) ||&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Johanna Moore (University of Edinburgh) ||&lt;br /&gt;
|-&lt;br /&gt;
| ML for Language Processing || Phil Blunsom (University of Oxford), Mark Dredze (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Alon Lavie (Carnegie Mellon University), Marine Carpuat (National Research Council of Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and QA || Eugene Agichtein (Emory University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Sanda Harabagiu (University of Texas at Dallas) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Zak Shafran (Oregon Health and Science University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Bo Pang (Cornell University), Theresa Wilson (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-enabled Technology || David Bean (TDW) ||&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization and Topic Clustering || Jordan Boyd-Graber (University of Maryland) ||&lt;br /&gt;
|-&lt;br /&gt;
| Social Media Analysis and Processing || Bill Dolan (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation Methods || Ani Nenkova (University of Pennsylvania) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2012 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Dialogue || Mikio Nakano, Andrei Popescu-Belis || 39, 23&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Information Retrieval || Jian Su, Jianfeng Gao, Vincent Ng || 64, 37&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Fei Xia || 15, 13&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics || Evgeniy Gabrilovich, Naoaki Okazaki || 38, 31&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon and Ontology ||  Eneko Agirre || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning || Trevor Cohn, Mark Dredze || 56, 28&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Marcello Federico, Adam Lopez, David Talbot, Hua Wu || 75, 56&lt;br /&gt;
|-&lt;br /&gt;
| Multilingual || Daniel M. Bikel, Mona T. Diab || 31, 15&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications || Jason Baldridge, David Weir || 41, 18&lt;br /&gt;
|-&lt;br /&gt;
| Syntax/Parsing || Stephen Clark, Liang Huang || 64, 36&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Hongyuan Zha, Hsin-Hsi Chen || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Social Media and Sentiment || Noah Smith, Jan Wiebe || 51, 32&lt;br /&gt;
|-&lt;br /&gt;
| Speech || Chung-Hsien Wu || 16, 12&lt;br /&gt;
|-&lt;br /&gt;
| Summarization &amp;amp; Generation || Anja Belz, Ani Nenkova || 20, 23&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation, Morphology and Phonology || Kemal Oflazer || 36, 23&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/E/E12/E12-1000.pdf EACL 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Walter Daelemans (University of Antwerp, Belgium) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Mirella Lapata (University of Edinburgh, UK), Lluis Marquez (Universitat Politecnica de Catalunya, Spain) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EACL 2012:&lt;br /&gt;
&lt;br /&gt;
Katja Filippova (Google), Min-Yen Kan (National University of Singapore), Charles Sutton (University of Edinburgh), Ivan Titov (Saarland University), Xavier Carreras (&lt;br /&gt;
Universitat Politecnica de Catalunya(UPC)), Kenji Sagae (University of Southern California), Kallirroi Georgila (Institute for Creative Technologies, University of Sou&lt;br /&gt;
thern California), Michael Strube (HITS gGmbH), Pascale Fung (The Hong Kong University of Science and Tech), Bing Liu (University of Illinois at Chicago), Theresa Wils&lt;br /&gt;
on (Johns Hopkins University), David McClosky (Stanford University), Sebastian Riedel (University of Massachusetts), Phil Blunsom (University of Oxford), Mikel L. Forc&lt;br /&gt;
ada (Universitat d’Alacant), Christof Monz (University of Amsterdam), Sharon Goldwater (University of Edinburgh), Richard Wicentowski (Swarthmore College), Patrick Pan&lt;br /&gt;
tel (Microsoft Research), Hiroya Takamura (Tokyo Institute of Technology), Alexander Koller (University of Potsdam), Sebastian Pado (Universitat Heidelberg), Maarten d&lt;br /&gt;
e Rijke (University of Amsterdam), Julio Gonzalo (UNED), Lori Levin (Carnegie Mellon University), Piek Vossen (VU University Amsterdam), Afra Alishahi (Tilburg Univers&lt;br /&gt;
ity, The Netherlands), John Hale (Cornell University)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D12/D12-1000.pdf EMNLP 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jun’ichi Tsujii (Microsoft Research Asia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || James Henderson (Xerox Research Centre Europe), Marius Pasca (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2012:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yejin Choi (Stony Brook University), Hal Daume III (University of Maryland), Doug Downey (Northwestern University), Chris Dyer (Carnegie Mellon University), Adria de Gispert (University of Cambridge), Julia Hirschberg (Columbia University), Anna Korhonen (University of Cambridge), Bing Liu (University of Illinois at Chicago), Hwee Tou Ng (National University of Singapore), Patrick Pantel (Microsoft Research), Marco Pennacchiotti (Yahoo! Labs), Slav Petrov (Google), Simone Paolo Ponzetto (Sapienza University of Rome), John Prager (IBM Research), Chris Quirk (Microsoft Research), Sebastian Riedel (University of Massachusetts at Amherst), Hiroya Takamura (Tokyo Institute of Technology), Partha Talukdar (Carnegie Mellon University), Carnegie Mellon University (Microsoft Research), Reut Tsarfaty (Uppsala University), Marilyn Walker (University of California at Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N12/N12-1000.pdf NAACL 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jennifer Chu-Carroll (IBM T.J. Watson Research Center) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Eric Fosler-Lussier (The Ohio State University), Ellen Riloff (University of Utah) || &lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Roberto Basili (University of Rome) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Guiseppe Carenini (University of British Columbia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources Novel Evaluation Methods || Christy Doran (MITRE) ||&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology Word Segmentation || Jason Eisner (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || George Foster (National Research Council Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Social Media Analysis and Processing || Roxana Girju (University of Illinois Urbana-Champaign) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Heng Ji (City University of New York) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntactic Tagging and Chunking || Sadao Kurohashi (Kyoto University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Matt Lease (University of Texas Austin) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse Dialogue and Pragmatics || Diane Litman (University of Pittsburgh) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Deepak Ravichandran (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Guiseppe Ricardi (University of Trento), Richard Rose (McGill University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Giorgio Satta (University of Padova) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Fei Sha (University of Southern California) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Suzanne Stevenson (University of Toronto) ||&lt;br /&gt;
|-&lt;br /&gt;
| End-to-end Language Processing Systems || David Traum (University of Southern California) ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Scott Yih (Microsoft) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Luke Zettlemoyer (University of Washington) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Bowen Zhou (IBM) ||&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization/Topic Clustering || Jerry Zhu (University of Wisconsin) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/P/P11/P11-1000.pdf ACL 2011] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Dekang Lin (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Yuji Matsumoto (Nara Institute of Science and Technology), Rada Mihalcea (University of North Texas) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Anna Feldman, Greg Kondrak || 34,22&lt;br /&gt;
|-&lt;br /&gt;
|Syntax and Parsing || Xavier Carreras, Ryan McDonald  || 56,48&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Diana McCarthy, Deniz Yuret || 48, 41&lt;br /&gt;
|-&lt;br /&gt;
|Discourse, Dialogue, and Pragmatics || Kentaro Inui, Svetlana Stoyanchev|| 31, 23&lt;br /&gt;
|-&lt;br /&gt;
|Summarization and Generation || Yang Liu, Manabu Okumura  || 36, 35&lt;br /&gt;
|- &lt;br /&gt;
|Statistical and Machine Learning Methods ||Lluis Marquez, Alessandro Moschitti || 42, 27&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Statistical Models ||Shankar Kumar, Taro Watanabe || 56, 39&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Methods, Applications and Evaluations ||Elliott Macklovitch, Michel Simard || 33, 53&lt;br /&gt;
|-&lt;br /&gt;
|Information Retrieval ||  Fabrizio Sebastiani || 26, 11&lt;br /&gt;
|-&lt;br /&gt;
|Question Answering || Bernardo Magnini  || 19, 10&lt;br /&gt;
|-&lt;br /&gt;
|Text Mining and Information Extraction || Razvan Bunescu, Alexander Yates || 51, 38&lt;br /&gt;
|-&lt;br /&gt;
|Sentiment Analysis, Opinion Mining and Text Classification ||Katja Markert, Xiaojun Wan || 45, 38&lt;br /&gt;
|-&lt;br /&gt;
|Spoken Language Processing || Pascale Fung || 20, 13&lt;br /&gt;
|-&lt;br /&gt;
|Natural Language Processing Applications || Vasile Rus || 30, 51&lt;br /&gt;
|-&lt;br /&gt;
|Language Resources || Chu-Ren Huang, Dan Tufis|| 32, 26&lt;br /&gt;
|-&lt;br /&gt;
|Multilinguality || Thamar Solorio || 24, 16&lt;br /&gt;
|-&lt;br /&gt;
|NLP for Web 2.0 || Vivi Nastase || 31, 16&lt;br /&gt;
|-&lt;br /&gt;
|Linguistic Creativity || Carlo Strapparava || 20, 17&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D11/D11-1000.pdf EMNLP 2011] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Paola Merlo (University of Geneva) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Regina Barzilay (Massachusetts Institute of Technology), Mark Johnson (Macquarie University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2011:&lt;br /&gt;
&lt;br /&gt;
Emily M. Bender (University of Washington), Phil Blunsom (University of Oxford), Eugene Charniak (Brown University), Chris Dyer (Carnegie Mellon University), Jenny Finkel (Columbia University), Radu Florian (IBM Watson Research Center), Amir Globerson (The Hebrew University of Jerusalem), Keith Hall (Google Research), Minlie Huang (Tsinghua University), Katrin Kirchhoff (University of Washington), Mirella Lapata (University of Edinburgh), Chin-Yew Lin (Microsoft Research Asia), Bo Pang (Yahoo! Research), Stefan Riezler (University of Heidelberg), Ellen Riloff (University of Utah), Hinrich Schuetze (University of Stuttgart), Jian Su (Institute for Infocomm Research), Dekai Wu (Hong Kong University of Science and Technology), Luke Zettlemoyer (University of Washington)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/P/P10/P10-1000.pdf ACL 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long + short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jan Hajič (Charles University in Prague, Czech Republic) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Sandra Carberry (University of Delaware, USA), Stephen Clark (University of Cambridge, United Kingdom) ||&lt;br /&gt;
|- &lt;br /&gt;
| Lexical semantics || Tim Baldwin, Roberto Navigli || 87&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning|| Phil Blunsom, Walter Daelemans || 87&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction|| Kalina Bontcheva, Hang Li || 52&lt;br /&gt;
|-&lt;br /&gt;
| Formal semantics || Johan Bos || 24&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis || Claire Cardie, Theresa Wilson|| 69&lt;br /&gt;
|-&lt;br /&gt;
| Text mining || Rob Gaizauskas || 30&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Keith Hall, Chris Quirk|| 100&lt;br /&gt;
|-&lt;br /&gt;
| Speech processing|| Julia Hirschberg|| 33&lt;br /&gt;
|-&lt;br /&gt;
| Resources|| Nancy Ide|| 50&lt;br /&gt;
|-&lt;br /&gt;
| Multi-modal||Michael Johnston || 18&lt;br /&gt;
|-&lt;br /&gt;
| Psycholinguistics ||Roger Levy || 16&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering and paraphrasing|| Chin-Yew Lin || 40&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, grammatical inference, syntax||Yusuke Miyao, Khalil Sima&#039;an  || 88&lt;br /&gt;
|-&lt;br /&gt;
| Generation and summarisation || Ani Nenkova, Bonnie Webber|| 55&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and dialogue ||Jon Oberlander, Matthew Stone|| 56 &lt;br /&gt;
|-&lt;br /&gt;
| Mathematical linguistics||Stuart Shieber || 29&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, segmentation and morphology||Richard Sproat || 51&lt;br /&gt;
|-&lt;br /&gt;
| Bioinformatics || Jun&#039;ichi Tsujii|| 12&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || ChengXiang Zhai|| 33&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|- &lt;br /&gt;
| Machine Translation || Chris Callison-Burch, Qun Liu || 109&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Sebastian Pado, Takenobu Tokunaga || 102&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Text Classification || Bo Pang || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Gary Geunbae Lee || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Rosie Jones || 55&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Donia Scott || 53&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and NLP Applications || Ming Zhou || 50&lt;br /&gt;
|-&lt;br /&gt;
| Parsing || Sadao Kurohashi || 48&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods || David A Smith || 42&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Nicoletta Calzolari || 38&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Pragmatics || Caroline Sporleder || 38&lt;br /&gt;
|-&lt;br /&gt;
| Chinese Natural Language Processing || Nianwen Xue  || 34&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Morphology-Phonology || Rajeev Sangal || 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Grammar || Emily Bender || 28&lt;br /&gt;
|-&lt;br /&gt;
| Multilingualism || Pierre Isabelle || 26&lt;br /&gt;
|-&lt;br /&gt;
| Dialog and Multimodal || Justine Cassell || 16&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li || 9&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling || Roger Levy || 9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D10/D10-1000.pdf EMNLP 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hang Li (Microsoft Research Asia), Llu´ıs Marquez (Technical University of Catalonia) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2010:&lt;br /&gt;
&lt;br /&gt;
Eneko Agirre (University of the Basque Country), Kalina Bontcheva (University of Sheffield), Antal van den Bosch (Tilburg University), David Chiang (USC Information Sciences Institute), Jennifer Chu-Carroll (IBM Research), Evgeniy Gabrilovich (Yahoo! Research), Jianfeng Gao (Microsoft Research), Julio Gonzalo (UNED), Nancy Ide (Vassar College), Haizhou Li (Institute for Infocomm Research), Qun Liu (ICT, Chinese Academy of Sciences), Yusuke Miyao (National Institute of Informatics), Bo Pang (Yahoo! Research), Dragomir Radev (University of Michigan), Noah Smith (Carnegie Mellon University), Kristina Toutanova (Microsoft Research), Yoshimasa Tsuruoka (JAIST), Yi Zhang (University of California, Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N10/N10-1000.pdf NAACL 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Ronald Kaplan (Microsoft Bing) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Jill Burstein (Educational Testing Service), Mary Harper (University of Maryland and The Johns Hopkins University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for NAACL 2010:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yaser Al-Onaizan (IBM), Ciprian Chelba (Google), Mona Diab (Columbia University), Barbara Di Eugenio (University of Illinois at Chicago), Eric Fosler-Lussier (Ohio State University), Makoto Kanazawa (National Institute of Informatics, Tokyo), Damianos Karakos (Johns Hopkins University), Philip Koehn (University of Edinburgh), Mike Maxwell (University of Maryland), Diana McCarthy (Lexical Computing Ltd), Ani Nenkova (University of Pennsylvania), Stefan Oepen (University of Oslo), Dan Roth (University of Illinois at Urbana-Champaign), Noah Smith (Carnegie Mellon University), Amanda Stent (AT&amp;amp;T), Joel Tetreault (Educational Testing Service), Jan Wiebe (University of Pittsburgh)&lt;br /&gt;
&lt;br /&gt;
== ACL 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Greg Kondrak|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Noah Smith, James Curran || 47&lt;br /&gt;
|-&lt;br /&gt;
| Semantics|| Eneko Agirre, Rada Mihalcea|| 67&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Massimo Poesio, Michael Strube|| 41&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz|| 44&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods|| Jianfeng Gao, Jun Suzuki||36&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Hai Feng Wang, Philipp Koehn||80&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||Hsin-Hsi Chen ||29&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Ellen Riloff, Satoshi Sekine||52&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Giuseppe Carenini || 44&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing|| Helen Meng|| 20&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering|| Sanda Harabagiu|| 23&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications||Sophi Ananiadou ||19&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Keh-Jiann Chen || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/E/E09/E09-1000.pdf EACL 2009] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alex Lascarides (University of Edinburgh, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Claire Gardent (CNRS/LORIA Nancy, France), Joakim Nivre (Uppsala University and Vaxjö University,  Sweden) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EACL 2009:&lt;br /&gt;
&lt;br /&gt;
Anja Belz (University of Brighton, UK), Sabine Buchholz (Toshiba Research Europe, UK), Chris Callison-Burch (Johns Hopkins University, USA), Philipp Cimiano (Delft University of Technology, The Netherlands), Maarten de Rijke (University of Amsterdam, The Netherlands), Anna Korhonen (University of Cambridge, UK), Kimmo Koskenniemi (University of Helsinki, Finland), Bernardo Magnini (FBK-irst, Italy), Stephan Oepen (University of Oslo, Norway), Richard Power (The Open University, UK), Giuseppe Riccardi (University of Trento, Italy)&lt;br /&gt;
&lt;br /&gt;
== EMNLP 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Jason Eisner || 24&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Steve Clark|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics||Vivi Nastase || 45&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Tim Paek|| 28&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||Chin-Yew Lin || 25&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods||Miles Osborne ||32&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Adam Lopez ||68&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering||Hang Li ||33&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining||Marius Pasca ||39&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Theresa Wilson || 37&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing||Eric Fosler-Lussier || 11&lt;br /&gt;
|-&lt;br /&gt;
| Natural Language Processing Applications||Carlo Strapparava ||22&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Katrin Erk || 26&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality|| Mona Diab||22&lt;br /&gt;
|-&lt;br /&gt;
| NLP for Web 2.0|| Iryna Gurevych||20&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2008 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon, lexical semantics, word sense disambiguation || Paul Buitelaar || 45&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Stephen Pulman Mary Dalrymple || 46&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, dialogue || Eva Hajicova || 24&lt;br /&gt;
|-&lt;br /&gt;
| NLG, summarisation || Robert Dale || 36&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, morphology, grammar learning || Mark Johnson || 68&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation and Multilinguality || Pierre Isabelle, Miles Osborne || 86&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, text and web mining, multimedia || Junichi Tsujii || 54&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction, opinion and sentiment Analysis || Rob Gaizauskus || 24&lt;br /&gt;
|-&lt;br /&gt;
| Paraphrasing and Textual Entailment || Bill Dolan || 21&lt;br /&gt;
|-&lt;br /&gt;
| Speech and multimodality || Julia Hirschberg || 16&lt;br /&gt;
|-&lt;br /&gt;
| Resources || Chu-Ren Huang || 56&lt;br /&gt;
|-&lt;br /&gt;
| Learning || Dan Roth || 29&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11150</id>
		<title>Areas, chairs, and area submissions</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11150"/>
		<updated>2015-07-04T01:24:50Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: /* ACL 2010 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.aclweb.org/anthology/P/P14/P14-1000.pdf ACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair  || Daniel Marcu (ISI/USC) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Kristina Toutanova (Microsoft Research), Hua Wu (Baidu) ||&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling and Psycholinguistics || Klinton Bicknell (Northwestern University) || 9, 14&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems || Asli Celikyilmaz (Microsoft Research) || 10, 8&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference and Pragmatics || Micha Elsner (Ohio State University), Michael Strube (HITS gGmbH) || 22, 20&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization, Sentiment Analysis and Topic Models || Jacob Eisenstein (Georgia Institute of Technology), Jun Zhao (Chinese Academy of Sciences) || 53, 48&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Barbara Di Eugenio (University of Illinois at Chicago) || 13, 7&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining || Marius Pasca (Google Research), Mihai Surdeanu (University of Arizona) || 54, 49&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || Ting	Liu (Harbin Institute of Technology) || 8, 9&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation || Nicoletta Calzolari (Institute of Computational Linguistics of the National Research Council), Nianwen Xue (Brandeis University) || 31, 28&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontology || Eneko Agirre (University of the Basque Country) || 26, 23&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Kevin Duh (Nara Institute of Science and Technology), Jason Eisner (Johns Hopkins University) || 39, 15&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Colin Cherry (National Research Council, Canada), Niyu Ge (IBM Research), Liang Huang (City University of New York), Yanjun Ma (Baidu) || 76, 72&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality and Multimodal NLP || Michel Galley (Microsoft Research) || 12, 14&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications and NLP-enabled Technology || Mamoru Komachi (Tokyo Metropolitan University) || 32, 34&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (Johns Hopkins University), Alan Ritter (Carnegie Mellon University) || 29, 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Iryna Gurevych (Technische Universität Darmstadt), Percy Liang (Stanford University), Shiqi Zhao (Baidu) || 53, 37&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Yang Liu (University of Texas at Dallas) || 19, 11&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Scott Wen-tau Yih (Microsoft Research) || 6, 4&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Ciprian Chelba (Google Research) || 9, 10&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Xavier Carreras (Universitat Politecnica de Catalunya), Slav Petrov (Google Research) || 35, 48&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology and Word Segmentation || Grzegorz Kondrak (University of Alberta) || 10, 18&lt;br /&gt;
|}&lt;br /&gt;
== [http://www.aclweb.org/anthology/E/E14/E14-1000.pdf EACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Shuly Wintner (University of Haifa, Israel) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Sharon Goldwater (University of Edinburgh, UK), Stefan Riezler (Heidelberg University, Germany)) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EACL 2014:&lt;br /&gt;
&lt;br /&gt;
Enrique Alfonseca, John Blitzer, Aoife Cahill, Vera Demberg, Chris Dyer, Jacob Eisenstein, Micha Elsner, Katrin Erk, Afsaneh Fazly, Katja Filippova, Alexander Fraser, Iryna Gurevych, Chin-Yew Lin, David McClosky, Yusuke Miyao, Hwee Tou Ng, Slav Petrov, Simone Paolo Ponzetto, Sebastian Riedel, Verena Rieser, Helmut Schmid, Izhak Shafran, Hiroya Takamura, Lucy Vanderwende&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D14/D14-1000.pdf EMNLP 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alessandro Moschitti (Qatar Computing Research Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Walter Daelemans (University of Antwerp), Bo Pang (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, and Segmentation || Tomaž Erjavec (Jožef Stefan Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Gosse Bouma (University of Groningen), Yuji Matsumoto (Nara Institute of Science and Technology) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Jennifer Chu-Carroll (IBM Watson Research Center), Olga Uryupina (University of Trento) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Rada Mihalcea (University of Michigan), Sameer Pradhan (Harvard Medical School) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz (University of Brighton), Dilek Hakkani-Tür (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Ivan Titov (University of Amsterdam), Jerry Zhu (University of Wisconsin-Madison) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Chris Callison-Burch (University of Pennsylvania), Dan Gildea (University of Rochester) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, Text Categorization, and Question Answering || Sien Moens (Katholieke Universiteit Leuven), Hinrich Schütze (Ludwig Maximilian University of M&lt;br /&gt;
unich) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Marius Pasca (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Massimiliano Ciaramita (Google), Hwee Tou Ng (National University of Singapore) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University), Minlie Huang (Tsinghua University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Irwin King (The Chinese University of Hong Kong), Qiaozhu Mei (University of Michigan) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Pascale Fung (Hong Kong University of Science and Technology), Hugo Van hamme (Katholieke Universiteit Leuven) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Psycholinguistics || Sharon Goldwater (University of Edinburgh) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2013 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modelling and Psycholinguistics || * || 13, 12&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems ||  || 15, 10&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference, and Pragmatics ||  || 28, 19&lt;br /&gt;
|-&lt;br /&gt;
| Evaluation Methods ||  || 11, 15&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||  || 20, 20&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources ||  || 24, 27&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontologies ||  || 25, 25&lt;br /&gt;
|-&lt;br /&gt;
| Low Resource Language Processing ||  || 10, 13&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Methods, Applications and Evaluations ||  || 50, 58&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Statistical Models ||  || 44, 30&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications ||  || 46, 42&lt;br /&gt;
|-&lt;br /&gt;
| NLP and Creativity ||  || 3, 4&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Languages of Central and Eastern Europe and The Balkans ||  || 2, 8&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media ||  || 32, 26&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering ||  || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Semantics ||  || 50, 32&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification ||  || 46, 60&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing ||  || 9, 12&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods in NLP ||  || 35, 32&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||  || 31, 23&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing ||  || 39, 43&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Chunking ||  || 12, 13&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Information Extraction ||  || 68, 53&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation ||  || 13, 15&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for ACL 2013: &lt;br /&gt;
&lt;br /&gt;
Frank Keller, Roger Levy, Amanda Stent, David Suendermann, Andrew Kehler, Becky Passonneau, Hang Li, Nancy Ide, Piek Vossen, Philipp Cimiano, Sabine Schulte im Walde, Dekang Lin, Chiori Hori, Keh-Yih Su, Roland Kuhn, Dekai Wu, Benjamin Snyder, Thamar Solorio, Ehud Reiter, Massimiliano Ciaramita, Ken Church, Carlo Strapparava, Tomaz Erjavec, Adam Prziepiorkowski, Patrick Pantel, Owen Rambow, Chris Dyer, Jason Eisner, Jennifer Chu-Carroll, Bernardo Magnini, Lluis Marquez, Alessandro Moschitti, Claire Cardie, Rada Mihalcea, Dilek Hakkani-Tur, Walter Daelemans, Dan Roth, Alex Koller, Ani Nenkova, Jamie Henderson, Sadao Kurohashi, Yuji Matsumoto, Heng Ji, Marie-Francine Moens, Hwee Tou Ng&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D13/D13-1000.pdf EMNLP 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || David Yarowsky (John Hopkins University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Timothy Baldwin (University of Melbourne, Australia), Anna Korhonen (University of Cambridge, UK) || &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, Tagging, Chunking and Segmentation || Kemal Oflazer (Carnegie Mellon University Qatar), Anna Feldman (Montclair State University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Jennifer Foster (Dublin City University, Ireland), Yoav Goldberg (Bar Ilan University, Israel) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Mark Stevenson (University of Sheffield, UK), Luke Zettlemoyer (University of Washington, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Carolyn Rose (Carnegie Mellon University, USA), Matt Purver (Queen Mary, University of London, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language resources || Emily M. Bender (University of Washington, USA), Aline Villavicencio (Federal University of Rio Grande do Sul, Brazil) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Dragomir Radev (University of Michigan, USA), Yang Liu (University of Texas at Dallas, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Amir Globerson (The Hebrew University of Jerusalem, Israel), Antal van den Bosch (Radboud University &lt;br /&gt;
Nijmegen, Netherlands) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Taro Watanabe (NICT, Japan), Kevin Knight (Information Sciences Institute, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Bernardo Magnini (Fondazione Bruno Kessler, Italy), Soumen Chakrabarti (Indian Institute of Technology, India) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Mausam (Indian Institute of Technology, India), Heng Ji (City University of New York, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li (Institute for Infocomm Research, Singapore), Amanda Stent (AT&amp;amp;T Labs, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Hang Li (Huawei Noah’s Ark Lab, Hong Kong), Kevin Cohen (University of Colorado School of Medicine, USA) &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Janyce Weibe (University of Pittsburgh, USA), Bing Liu (University of Illinois at Chicago, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (University of Edinburgh, UK), Chin-Yew Lin (Microsoft Research Asia, China) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Models of Human Language Acquisition and Processing || Alessandro Lenci (University of Pisa, Italy), Afra Alishahi (Tilburg University, Netherlands) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N13/N13-1000.pdf NAACL 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Lucy Vanderwende (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hal Daumé III (University of Maryland), Katrin Kirchhoff (University of Washington) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology, Word Segmentation || Markus Dreyer (SDL Language Weaver) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax, Tagging, Chunking and Parsing || Joakim Nivre (Uppsala University), James Henderson (Université de Genève) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Percy Liang (Stanford University), Peter Turney (National Research Council of Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Multimodal NLP || Srinivas Bangalore (AT&amp;amp;T) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, Pragmatics || David Traum (Institute for Creative Technologies), Joyce Chai (Michigan State University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Linguistic Aspects of CL || Vera Demberg (Saarland University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Guy Lapalme ((Université de Montréal) ||&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Johanna Moore (University of Edinburgh) ||&lt;br /&gt;
|-&lt;br /&gt;
| ML for Language Processing || Phil Blunsom (University of Oxford), Mark Dredze (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Alon Lavie (Carnegie Mellon University), Marine Carpuat (National Research Council of Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and QA || Eugene Agichtein (Emory University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Sanda Harabagiu (University of Texas at Dallas) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Zak Shafran (Oregon Health and Science University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Bo Pang (Cornell University), Theresa Wilson (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-enabled Technology || David Bean (TDW) ||&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization and Topic Clustering || Jordan Boyd-Graber (University of Maryland) ||&lt;br /&gt;
|-&lt;br /&gt;
| Social Media Analysis and Processing || Bill Dolan (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation Methods || Ani Nenkova (University of Pennsylvania) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2012 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Dialogue || Mikio Nakano, Andrei Popescu-Belis || 39, 23&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Information Retrieval || Jian Su, Jianfeng Gao, Vincent Ng || 64, 37&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Fei Xia || 15, 13&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics || Evgeniy Gabrilovich, Naoaki Okazaki || 38, 31&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon and Ontology ||  Eneko Agirre || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning || Trevor Cohn, Mark Dredze || 56, 28&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Marcello Federico, Adam Lopez, David Talbot, Hua Wu || 75, 56&lt;br /&gt;
|-&lt;br /&gt;
| Multilingual || Daniel M. Bikel, Mona T. Diab || 31, 15&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications || Jason Baldridge, David Weir || 41, 18&lt;br /&gt;
|-&lt;br /&gt;
| Syntax/Parsing || Stephen Clark, Liang Huang || 64, 36&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Hongyuan Zha, Hsin-Hsi Chen || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Social Media and Sentiment || Noah Smith, Jan Wiebe || 51, 32&lt;br /&gt;
|-&lt;br /&gt;
| Speech || Chung-Hsien Wu || 16, 12&lt;br /&gt;
|-&lt;br /&gt;
| Summarization &amp;amp; Generation || Anja Belz, Ani Nenkova || 20, 23&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation, Morphology and Phonology || Kemal Oflazer || 36, 23&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/E/E12/E12-1000.pdf EACL 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Walter Daelemans (University of Antwerp, Belgium) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Mirella Lapata (University of Edinburgh, UK), Lluis Marquez (Universitat Politecnica de Catalunya, Spain) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EACL 2012:&lt;br /&gt;
&lt;br /&gt;
Katja Filippova (Google), Min-Yen Kan (National University of Singapore), Charles Sutton (University of Edinburgh), Ivan Titov (Saarland University), Xavier Carreras (&lt;br /&gt;
Universitat Politecnica de Catalunya(UPC)), Kenji Sagae (University of Southern California), Kallirroi Georgila (Institute for Creative Technologies, University of Sou&lt;br /&gt;
thern California), Michael Strube (HITS gGmbH), Pascale Fung (The Hong Kong University of Science and Tech), Bing Liu (University of Illinois at Chicago), Theresa Wils&lt;br /&gt;
on (Johns Hopkins University), David McClosky (Stanford University), Sebastian Riedel (University of Massachusetts), Phil Blunsom (University of Oxford), Mikel L. Forc&lt;br /&gt;
ada (Universitat d’Alacant), Christof Monz (University of Amsterdam), Sharon Goldwater (University of Edinburgh), Richard Wicentowski (Swarthmore College), Patrick Pan&lt;br /&gt;
tel (Microsoft Research), Hiroya Takamura (Tokyo Institute of Technology), Alexander Koller (University of Potsdam), Sebastian Pado (Universitat Heidelberg), Maarten d&lt;br /&gt;
e Rijke (University of Amsterdam), Julio Gonzalo (UNED), Lori Levin (Carnegie Mellon University), Piek Vossen (VU University Amsterdam), Afra Alishahi (Tilburg Univers&lt;br /&gt;
ity, The Netherlands), John Hale (Cornell University)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D12/D12-1000.pdf EMNLP 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jun’ichi Tsujii (Microsoft Research Asia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || James Henderson (Xerox Research Centre Europe), Marius Pasca (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2012:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yejin Choi (Stony Brook University), Hal Daume III (University of Maryland), Doug Downey (Northwestern University), Chris Dyer (Carnegie Mellon University), Adria de Gispert (University of Cambridge), Julia Hirschberg (Columbia University), Anna Korhonen (University of Cambridge), Bing Liu (University of Illinois at Chicago), Hwee Tou Ng (National University of Singapore), Patrick Pantel (Microsoft Research), Marco Pennacchiotti (Yahoo! Labs), Slav Petrov (Google), Simone Paolo Ponzetto (Sapienza University of Rome), John Prager (IBM Research), Chris Quirk (Microsoft Research), Sebastian Riedel (University of Massachusetts at Amherst), Hiroya Takamura (Tokyo Institute of Technology), Partha Talukdar (Carnegie Mellon University), Carnegie Mellon University (Microsoft Research), Reut Tsarfaty (Uppsala University), Marilyn Walker (University of California at Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N12/N12-1000.pdf NAACL 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jennifer Chu-Carroll (IBM T.J. Watson Research Center) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Eric Fosler-Lussier (The Ohio State University), Ellen Riloff (University of Utah) || &lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Roberto Basili (University of Rome) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Guiseppe Carenini (University of British Columbia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources Novel Evaluation Methods || Christy Doran (MITRE) ||&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology Word Segmentation || Jason Eisner (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || George Foster (National Research Council Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Social Media Analysis and Processing || Roxana Girju (University of Illinois Urbana-Champaign) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Heng Ji (City University of New York) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntactic Tagging and Chunking || Sadao Kurohashi (Kyoto University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Matt Lease (University of Texas Austin) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse Dialogue and Pragmatics || Diane Litman (University of Pittsburgh) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Deepak Ravichandran (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Guiseppe Ricardi (University of Trento), Richard Rose (McGill University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Giorgio Satta (University of Padova) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Fei Sha (University of Southern California) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Suzanne Stevenson (University of Toronto) ||&lt;br /&gt;
|-&lt;br /&gt;
| End-to-end Language Processing Systems || David Traum (University of Southern California) ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Scott Yih (Microsoft) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Luke Zettlemoyer (University of Washington) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Bowen Zhou (IBM) ||&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization/Topic Clustering || Jerry Zhu (University of Wisconsin) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2011 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Anna Feldman, Greg Kondrak || 34,22&lt;br /&gt;
|-&lt;br /&gt;
|Syntax and Parsing || Xavier Carreras, Ryan McDonald  || 56,48&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Diana McCarthy, Deniz Yuret || 48, 41&lt;br /&gt;
|-&lt;br /&gt;
|Discourse, Dialogue, and Pragmatics || Kentaro Inui, Svetlana Stoyanchev|| 31, 23&lt;br /&gt;
|-&lt;br /&gt;
|Summarization and Generation || Yang Liu, Manabu Okumura  || 36, 35&lt;br /&gt;
|- &lt;br /&gt;
|Statistical and Machine Learning Methods ||Lluis Marquez, Alessandro Moschitti || 42, 27&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Statistical Models ||Shankar Kumar, Taro Watanabe || 56, 39&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Methods, Applications and Evaluations ||Elliott Macklovitch, Michel Simard || 33, 53&lt;br /&gt;
|-&lt;br /&gt;
|Information Retrieval ||  Fabrizio Sebastiani || 26, 11&lt;br /&gt;
|-&lt;br /&gt;
|Question Answering || Bernardo Magnini  || 19, 10&lt;br /&gt;
|-&lt;br /&gt;
|Text Mining and Information Extraction || Razvan Bunescu, Alexander Yates || 51, 38&lt;br /&gt;
|-&lt;br /&gt;
|Sentiment Analysis, Opinion Mining and Text Classification ||Katja Markert, Xiaojun Wan || 45, 38&lt;br /&gt;
|-&lt;br /&gt;
|Spoken Language Processing || Pascale Fung || 20, 13&lt;br /&gt;
|-&lt;br /&gt;
|Natural Language Processing Applications || Vasile Rus || 30, 51&lt;br /&gt;
|-&lt;br /&gt;
|Language Resources || Chu-Ren Huang, Dan Tufis|| 32, 26&lt;br /&gt;
|-&lt;br /&gt;
|Multilinguality || Thamar Solorio || 24, 16&lt;br /&gt;
|-&lt;br /&gt;
|NLP for Web 2.0 || Vivi Nastase || 31, 16&lt;br /&gt;
|-&lt;br /&gt;
|Linguistic Creativity || Carlo Strapparava || 20, 17&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D11/D11-1000.pdf EMNLP 2011] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Paola Merlo (University of Geneva) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Regina Barzilay (Massachusetts Institute of Technology), Mark Johnson (Macquarie University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2011:&lt;br /&gt;
&lt;br /&gt;
Emily M. Bender (University of Washington), Phil Blunsom (University of Oxford), Eugene Charniak (Brown University), Chris Dyer (Carnegie Mellon University), Jenny Finkel (Columbia University), Radu Florian (IBM Watson Research Center), Amir Globerson (The Hebrew University of Jerusalem), Keith Hall (Google Research), Minlie Huang (Tsinghua University), Katrin Kirchhoff (University of Washington), Mirella Lapata (University of Edinburgh), Chin-Yew Lin (Microsoft Research Asia), Bo Pang (Yahoo! Research), Stefan Riezler (University of Heidelberg), Ellen Riloff (University of Utah), Hinrich Schuetze (University of Stuttgart), Jian Su (Institute for Infocomm Research), Dekai Wu (Hong Kong University of Science and Technology), Luke Zettlemoyer (University of Washington)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/P/P10/P10-1000.pdf ACL 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long + short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jan Hajič (Charles University in Prague, Czech Republic) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Sandra Carberry (University of Delaware, USA), Stephen Clark (University of Cambridge, United Kingdom) ||&lt;br /&gt;
|- &lt;br /&gt;
| Lexical semantics || Tim Baldwin, Roberto Navigli || 87&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning|| Phil Blunsom, Walter Daelemans || 87&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction|| Kalina Bontcheva, Hang Li || 52&lt;br /&gt;
|-&lt;br /&gt;
| Formal semantics || Johan Bos || 24&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis || Claire Cardie, Theresa Wilson|| 69&lt;br /&gt;
|-&lt;br /&gt;
| Text mining || Rob Gaizauskas || 30&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Keith Hall, Chris Quirk|| 100&lt;br /&gt;
|-&lt;br /&gt;
| Speech processing|| Julia Hirschberg|| 33&lt;br /&gt;
|-&lt;br /&gt;
| Resources|| Nancy Ide|| 50&lt;br /&gt;
|-&lt;br /&gt;
| Multi-modal||Michael Johnston || 18&lt;br /&gt;
|-&lt;br /&gt;
| Psycholinguistics ||Roger Levy || 16&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering and paraphrasing|| Chin-Yew Lin || 40&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, grammatical inference, syntax||Yusuke Miyao, Khalil Sima&#039;an  || 88&lt;br /&gt;
|-&lt;br /&gt;
| Generation and summarisation || Ani Nenkova, Bonnie Webber|| 55&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and dialogue ||Jon Oberlander, Matthew Stone|| 56 &lt;br /&gt;
|-&lt;br /&gt;
| Mathematical linguistics||Stuart Shieber || 29&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, segmentation and morphology||Richard Sproat || 51&lt;br /&gt;
|-&lt;br /&gt;
| Bioinformatics || Jun&#039;ichi Tsujii|| 12&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || ChengXiang Zhai|| 33&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|- &lt;br /&gt;
| Machine Translation || Chris Callison-Burch, Qun Liu || 109&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Sebastian Pado, Takenobu Tokunaga || 102&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Text Classification || Bo Pang || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Gary Geunbae Lee || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Rosie Jones || 55&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Donia Scott || 53&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and NLP Applications || Ming Zhou || 50&lt;br /&gt;
|-&lt;br /&gt;
| Parsing || Sadao Kurohashi || 48&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods || David A Smith || 42&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Nicoletta Calzolari || 38&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Pragmatics || Caroline Sporleder || 38&lt;br /&gt;
|-&lt;br /&gt;
| Chinese Natural Language Processing || Nianwen Xue  || 34&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Morphology-Phonology || Rajeev Sangal || 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Grammar || Emily Bender || 28&lt;br /&gt;
|-&lt;br /&gt;
| Multilingualism || Pierre Isabelle || 26&lt;br /&gt;
|-&lt;br /&gt;
| Dialog and Multimodal || Justine Cassell || 16&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li || 9&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling || Roger Levy || 9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D10/D10-1000.pdf EMNLP 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hang Li (Microsoft Research Asia), Llu´ıs Marquez (Technical University of Catalonia) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2010:&lt;br /&gt;
&lt;br /&gt;
Eneko Agirre (University of the Basque Country), Kalina Bontcheva (University of Sheffield), Antal van den Bosch (Tilburg University), David Chiang (USC Information Sciences Institute), Jennifer Chu-Carroll (IBM Research), Evgeniy Gabrilovich (Yahoo! Research), Jianfeng Gao (Microsoft Research), Julio Gonzalo (UNED), Nancy Ide (Vassar College), Haizhou Li (Institute for Infocomm Research), Qun Liu (ICT, Chinese Academy of Sciences), Yusuke Miyao (National Institute of Informatics), Bo Pang (Yahoo! Research), Dragomir Radev (University of Michigan), Noah Smith (Carnegie Mellon University), Kristina Toutanova (Microsoft Research), Yoshimasa Tsuruoka (JAIST), Yi Zhang (University of California, Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N10/N10-1000.pdf NAACL 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Ronald Kaplan (Microsoft Bing) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Jill Burstein (Educational Testing Service), Mary Harper (University of Maryland and The Johns Hopkins University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for NAACL 2010:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yaser Al-Onaizan (IBM), Ciprian Chelba (Google), Mona Diab (Columbia University), Barbara Di Eugenio (University of Illinois at Chicago), Eric Fosler-Lussier (Ohio State University), Makoto Kanazawa (National Institute of Informatics, Tokyo), Damianos Karakos (Johns Hopkins University), Philip Koehn (University of Edinburgh), Mike Maxwell (University of Maryland), Diana McCarthy (Lexical Computing Ltd), Ani Nenkova (University of Pennsylvania), Stefan Oepen (University of Oslo), Dan Roth (University of Illinois at Urbana-Champaign), Noah Smith (Carnegie Mellon University), Amanda Stent (AT&amp;amp;T), Joel Tetreault (Educational Testing Service), Jan Wiebe (University of Pittsburgh)&lt;br /&gt;
&lt;br /&gt;
== ACL 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Greg Kondrak|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Noah Smith, James Curran || 47&lt;br /&gt;
|-&lt;br /&gt;
| Semantics|| Eneko Agirre, Rada Mihalcea|| 67&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Massimo Poesio, Michael Strube|| 41&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz|| 44&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods|| Jianfeng Gao, Jun Suzuki||36&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Hai Feng Wang, Philipp Koehn||80&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||Hsin-Hsi Chen ||29&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Ellen Riloff, Satoshi Sekine||52&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Giuseppe Carenini || 44&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing|| Helen Meng|| 20&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering|| Sanda Harabagiu|| 23&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications||Sophi Ananiadou ||19&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Keh-Jiann Chen || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/E/E09/E09-1000.pdf EACL 2009] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alex Lascarides (University of Edinburgh, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Claire Gardent (CNRS/LORIA Nancy, France), Joakim Nivre (Uppsala University and Vaxjö University,  Sweden) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EACL 2009:&lt;br /&gt;
&lt;br /&gt;
Anja Belz (University of Brighton, UK), Sabine Buchholz (Toshiba Research Europe, UK), Chris Callison-Burch (Johns Hopkins University, USA), Philipp Cimiano (Delft University of Technology, The Netherlands), Maarten de Rijke (University of Amsterdam, The Netherlands), Anna Korhonen (University of Cambridge, UK), Kimmo Koskenniemi (University of Helsinki, Finland), Bernardo Magnini (FBK-irst, Italy), Stephan Oepen (University of Oslo, Norway), Richard Power (The Open University, UK), Giuseppe Riccardi (University of Trento, Italy)&lt;br /&gt;
&lt;br /&gt;
== EMNLP 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Jason Eisner || 24&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Steve Clark|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics||Vivi Nastase || 45&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Tim Paek|| 28&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||Chin-Yew Lin || 25&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods||Miles Osborne ||32&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Adam Lopez ||68&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering||Hang Li ||33&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining||Marius Pasca ||39&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Theresa Wilson || 37&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing||Eric Fosler-Lussier || 11&lt;br /&gt;
|-&lt;br /&gt;
| Natural Language Processing Applications||Carlo Strapparava ||22&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Katrin Erk || 26&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality|| Mona Diab||22&lt;br /&gt;
|-&lt;br /&gt;
| NLP for Web 2.0|| Iryna Gurevych||20&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2008 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon, lexical semantics, word sense disambiguation || Paul Buitelaar || 45&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Stephen Pulman Mary Dalrymple || 46&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, dialogue || Eva Hajicova || 24&lt;br /&gt;
|-&lt;br /&gt;
| NLG, summarisation || Robert Dale || 36&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, morphology, grammar learning || Mark Johnson || 68&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation and Multilinguality || Pierre Isabelle, Miles Osborne || 86&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, text and web mining, multimedia || Junichi Tsujii || 54&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction, opinion and sentiment Analysis || Rob Gaizauskus || 24&lt;br /&gt;
|-&lt;br /&gt;
| Paraphrasing and Textual Entailment || Bill Dolan || 21&lt;br /&gt;
|-&lt;br /&gt;
| Speech and multimodality || Julia Hirschberg || 16&lt;br /&gt;
|-&lt;br /&gt;
| Resources || Chu-Ren Huang || 56&lt;br /&gt;
|-&lt;br /&gt;
| Learning || Dan Roth || 29&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11149</id>
		<title>Areas, chairs, and area submissions</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11149"/>
		<updated>2015-07-04T01:23:18Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: EACL 2014&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.aclweb.org/anthology/P/P14/P14-1000.pdf ACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair  || Daniel Marcu (ISI/USC) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Kristina Toutanova (Microsoft Research), Hua Wu (Baidu) ||&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling and Psycholinguistics || Klinton Bicknell (Northwestern University) || 9, 14&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems || Asli Celikyilmaz (Microsoft Research) || 10, 8&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference and Pragmatics || Micha Elsner (Ohio State University), Michael Strube (HITS gGmbH) || 22, 20&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization, Sentiment Analysis and Topic Models || Jacob Eisenstein (Georgia Institute of Technology), Jun Zhao (Chinese Academy of Sciences) || 53, 48&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Barbara Di Eugenio (University of Illinois at Chicago) || 13, 7&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining || Marius Pasca (Google Research), Mihai Surdeanu (University of Arizona) || 54, 49&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || Ting	Liu (Harbin Institute of Technology) || 8, 9&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation || Nicoletta Calzolari (Institute of Computational Linguistics of the National Research Council), Nianwen Xue (Brandeis University) || 31, 28&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontology || Eneko Agirre (University of the Basque Country) || 26, 23&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Kevin Duh (Nara Institute of Science and Technology), Jason Eisner (Johns Hopkins University) || 39, 15&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Colin Cherry (National Research Council, Canada), Niyu Ge (IBM Research), Liang Huang (City University of New York), Yanjun Ma (Baidu) || 76, 72&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality and Multimodal NLP || Michel Galley (Microsoft Research) || 12, 14&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications and NLP-enabled Technology || Mamoru Komachi (Tokyo Metropolitan University) || 32, 34&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (Johns Hopkins University), Alan Ritter (Carnegie Mellon University) || 29, 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Iryna Gurevych (Technische Universität Darmstadt), Percy Liang (Stanford University), Shiqi Zhao (Baidu) || 53, 37&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Yang Liu (University of Texas at Dallas) || 19, 11&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Scott Wen-tau Yih (Microsoft Research) || 6, 4&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Ciprian Chelba (Google Research) || 9, 10&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Xavier Carreras (Universitat Politecnica de Catalunya), Slav Petrov (Google Research) || 35, 48&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology and Word Segmentation || Grzegorz Kondrak (University of Alberta) || 10, 18&lt;br /&gt;
|}&lt;br /&gt;
== [http://www.aclweb.org/anthology/E/E14/E14-1000.pdf EACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Shuly Wintner (University of Haifa, Israel) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Sharon Goldwater (University of Edinburgh, UK), Stefan Riezler (Heidelberg University, Germany)) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EACL 2014:&lt;br /&gt;
&lt;br /&gt;
Enrique Alfonseca, John Blitzer, Aoife Cahill, Vera Demberg, Chris Dyer, Jacob Eisenstein, Micha Elsner, Katrin Erk, Afsaneh Fazly, Katja Filippova, Alexander Fraser, Iryna Gurevych, Chin-Yew Lin, David McClosky, Yusuke Miyao, Hwee Tou Ng, Slav Petrov, Simone Paolo Ponzetto, Sebastian Riedel, Verena Rieser, Helmut Schmid, Izhak Shafran, Hiroya Takamura, Lucy Vanderwende&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D14/D14-1000.pdf EMNLP 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alessandro Moschitti (Qatar Computing Research Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Walter Daelemans (University of Antwerp), Bo Pang (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, and Segmentation || Tomaž Erjavec (Jožef Stefan Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Gosse Bouma (University of Groningen), Yuji Matsumoto (Nara Institute of Science and Technology) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Jennifer Chu-Carroll (IBM Watson Research Center), Olga Uryupina (University of Trento) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Rada Mihalcea (University of Michigan), Sameer Pradhan (Harvard Medical School) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz (University of Brighton), Dilek Hakkani-Tür (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Ivan Titov (University of Amsterdam), Jerry Zhu (University of Wisconsin-Madison) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Chris Callison-Burch (University of Pennsylvania), Dan Gildea (University of Rochester) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, Text Categorization, and Question Answering || Sien Moens (Katholieke Universiteit Leuven), Hinrich Schütze (Ludwig Maximilian University of M&lt;br /&gt;
unich) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Marius Pasca (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Massimiliano Ciaramita (Google), Hwee Tou Ng (National University of Singapore) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University), Minlie Huang (Tsinghua University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Irwin King (The Chinese University of Hong Kong), Qiaozhu Mei (University of Michigan) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Pascale Fung (Hong Kong University of Science and Technology), Hugo Van hamme (Katholieke Universiteit Leuven) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Psycholinguistics || Sharon Goldwater (University of Edinburgh) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2013 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modelling and Psycholinguistics || * || 13, 12&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems ||  || 15, 10&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference, and Pragmatics ||  || 28, 19&lt;br /&gt;
|-&lt;br /&gt;
| Evaluation Methods ||  || 11, 15&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||  || 20, 20&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources ||  || 24, 27&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontologies ||  || 25, 25&lt;br /&gt;
|-&lt;br /&gt;
| Low Resource Language Processing ||  || 10, 13&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Methods, Applications and Evaluations ||  || 50, 58&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Statistical Models ||  || 44, 30&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications ||  || 46, 42&lt;br /&gt;
|-&lt;br /&gt;
| NLP and Creativity ||  || 3, 4&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Languages of Central and Eastern Europe and The Balkans ||  || 2, 8&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media ||  || 32, 26&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering ||  || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Semantics ||  || 50, 32&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification ||  || 46, 60&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing ||  || 9, 12&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods in NLP ||  || 35, 32&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||  || 31, 23&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing ||  || 39, 43&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Chunking ||  || 12, 13&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Information Extraction ||  || 68, 53&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation ||  || 13, 15&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for ACL 2013: &lt;br /&gt;
&lt;br /&gt;
Frank Keller, Roger Levy, Amanda Stent, David Suendermann, Andrew Kehler, Becky Passonneau, Hang Li, Nancy Ide, Piek Vossen, Philipp Cimiano, Sabine Schulte im Walde, Dekang Lin, Chiori Hori, Keh-Yih Su, Roland Kuhn, Dekai Wu, Benjamin Snyder, Thamar Solorio, Ehud Reiter, Massimiliano Ciaramita, Ken Church, Carlo Strapparava, Tomaz Erjavec, Adam Prziepiorkowski, Patrick Pantel, Owen Rambow, Chris Dyer, Jason Eisner, Jennifer Chu-Carroll, Bernardo Magnini, Lluis Marquez, Alessandro Moschitti, Claire Cardie, Rada Mihalcea, Dilek Hakkani-Tur, Walter Daelemans, Dan Roth, Alex Koller, Ani Nenkova, Jamie Henderson, Sadao Kurohashi, Yuji Matsumoto, Heng Ji, Marie-Francine Moens, Hwee Tou Ng&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D13/D13-1000.pdf EMNLP 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || David Yarowsky (John Hopkins University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Timothy Baldwin (University of Melbourne, Australia), Anna Korhonen (University of Cambridge, UK) || &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, Tagging, Chunking and Segmentation || Kemal Oflazer (Carnegie Mellon University Qatar), Anna Feldman (Montclair State University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Jennifer Foster (Dublin City University, Ireland), Yoav Goldberg (Bar Ilan University, Israel) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Mark Stevenson (University of Sheffield, UK), Luke Zettlemoyer (University of Washington, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Carolyn Rose (Carnegie Mellon University, USA), Matt Purver (Queen Mary, University of London, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language resources || Emily M. Bender (University of Washington, USA), Aline Villavicencio (Federal University of Rio Grande do Sul, Brazil) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Dragomir Radev (University of Michigan, USA), Yang Liu (University of Texas at Dallas, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Amir Globerson (The Hebrew University of Jerusalem, Israel), Antal van den Bosch (Radboud University &lt;br /&gt;
Nijmegen, Netherlands) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Taro Watanabe (NICT, Japan), Kevin Knight (Information Sciences Institute, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Bernardo Magnini (Fondazione Bruno Kessler, Italy), Soumen Chakrabarti (Indian Institute of Technology, India) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Mausam (Indian Institute of Technology, India), Heng Ji (City University of New York, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li (Institute for Infocomm Research, Singapore), Amanda Stent (AT&amp;amp;T Labs, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Hang Li (Huawei Noah’s Ark Lab, Hong Kong), Kevin Cohen (University of Colorado School of Medicine, USA) &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Janyce Weibe (University of Pittsburgh, USA), Bing Liu (University of Illinois at Chicago, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (University of Edinburgh, UK), Chin-Yew Lin (Microsoft Research Asia, China) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Models of Human Language Acquisition and Processing || Alessandro Lenci (University of Pisa, Italy), Afra Alishahi (Tilburg University, Netherlands) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N13/N13-1000.pdf NAACL 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Lucy Vanderwende (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hal Daumé III (University of Maryland), Katrin Kirchhoff (University of Washington) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology, Word Segmentation || Markus Dreyer (SDL Language Weaver) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax, Tagging, Chunking and Parsing || Joakim Nivre (Uppsala University), James Henderson (Université de Genève) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Percy Liang (Stanford University), Peter Turney (National Research Council of Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Multimodal NLP || Srinivas Bangalore (AT&amp;amp;T) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, Pragmatics || David Traum (Institute for Creative Technologies), Joyce Chai (Michigan State University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Linguistic Aspects of CL || Vera Demberg (Saarland University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Guy Lapalme ((Université de Montréal) ||&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Johanna Moore (University of Edinburgh) ||&lt;br /&gt;
|-&lt;br /&gt;
| ML for Language Processing || Phil Blunsom (University of Oxford), Mark Dredze (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Alon Lavie (Carnegie Mellon University), Marine Carpuat (National Research Council of Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and QA || Eugene Agichtein (Emory University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Sanda Harabagiu (University of Texas at Dallas) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Zak Shafran (Oregon Health and Science University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Bo Pang (Cornell University), Theresa Wilson (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-enabled Technology || David Bean (TDW) ||&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization and Topic Clustering || Jordan Boyd-Graber (University of Maryland) ||&lt;br /&gt;
|-&lt;br /&gt;
| Social Media Analysis and Processing || Bill Dolan (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation Methods || Ani Nenkova (University of Pennsylvania) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2012 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Dialogue || Mikio Nakano, Andrei Popescu-Belis || 39, 23&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Information Retrieval || Jian Su, Jianfeng Gao, Vincent Ng || 64, 37&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Fei Xia || 15, 13&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics || Evgeniy Gabrilovich, Naoaki Okazaki || 38, 31&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon and Ontology ||  Eneko Agirre || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning || Trevor Cohn, Mark Dredze || 56, 28&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Marcello Federico, Adam Lopez, David Talbot, Hua Wu || 75, 56&lt;br /&gt;
|-&lt;br /&gt;
| Multilingual || Daniel M. Bikel, Mona T. Diab || 31, 15&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications || Jason Baldridge, David Weir || 41, 18&lt;br /&gt;
|-&lt;br /&gt;
| Syntax/Parsing || Stephen Clark, Liang Huang || 64, 36&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Hongyuan Zha, Hsin-Hsi Chen || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Social Media and Sentiment || Noah Smith, Jan Wiebe || 51, 32&lt;br /&gt;
|-&lt;br /&gt;
| Speech || Chung-Hsien Wu || 16, 12&lt;br /&gt;
|-&lt;br /&gt;
| Summarization &amp;amp; Generation || Anja Belz, Ani Nenkova || 20, 23&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation, Morphology and Phonology || Kemal Oflazer || 36, 23&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/E/E12/E12-1000.pdf EACL 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Walter Daelemans (University of Antwerp, Belgium) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Mirella Lapata (University of Edinburgh, UK), Lluis Marquez (Universitat Politecnica de Catalunya, Spain) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EACL 2012:&lt;br /&gt;
&lt;br /&gt;
Katja Filippova (Google), Min-Yen Kan (National University of Singapore), Charles Sutton (University of Edinburgh), Ivan Titov (Saarland University), Xavier Carreras (&lt;br /&gt;
Universitat Politecnica de Catalunya(UPC)), Kenji Sagae (University of Southern California), Kallirroi Georgila (Institute for Creative Technologies, University of Sou&lt;br /&gt;
thern California), Michael Strube (HITS gGmbH), Pascale Fung (The Hong Kong University of Science and Tech), Bing Liu (University of Illinois at Chicago), Theresa Wils&lt;br /&gt;
on (Johns Hopkins University), David McClosky (Stanford University), Sebastian Riedel (University of Massachusetts), Phil Blunsom (University of Oxford), Mikel L. Forc&lt;br /&gt;
ada (Universitat d’Alacant), Christof Monz (University of Amsterdam), Sharon Goldwater (University of Edinburgh), Richard Wicentowski (Swarthmore College), Patrick Pan&lt;br /&gt;
tel (Microsoft Research), Hiroya Takamura (Tokyo Institute of Technology), Alexander Koller (University of Potsdam), Sebastian Pado (Universitat Heidelberg), Maarten d&lt;br /&gt;
e Rijke (University of Amsterdam), Julio Gonzalo (UNED), Lori Levin (Carnegie Mellon University), Piek Vossen (VU University Amsterdam), Afra Alishahi (Tilburg Univers&lt;br /&gt;
ity, The Netherlands), John Hale (Cornell University)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D12/D12-1000.pdf EMNLP 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jun’ichi Tsujii (Microsoft Research Asia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || James Henderson (Xerox Research Centre Europe), Marius Pasca (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2012:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yejin Choi (Stony Brook University), Hal Daume III (University of Maryland), Doug Downey (Northwestern University), Chris Dyer (Carnegie Mellon University), Adria de Gispert (University of Cambridge), Julia Hirschberg (Columbia University), Anna Korhonen (University of Cambridge), Bing Liu (University of Illinois at Chicago), Hwee Tou Ng (National University of Singapore), Patrick Pantel (Microsoft Research), Marco Pennacchiotti (Yahoo! Labs), Slav Petrov (Google), Simone Paolo Ponzetto (Sapienza University of Rome), John Prager (IBM Research), Chris Quirk (Microsoft Research), Sebastian Riedel (University of Massachusetts at Amherst), Hiroya Takamura (Tokyo Institute of Technology), Partha Talukdar (Carnegie Mellon University), Carnegie Mellon University (Microsoft Research), Reut Tsarfaty (Uppsala University), Marilyn Walker (University of California at Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N12/N12-1000.pdf NAACL 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jennifer Chu-Carroll (IBM T.J. Watson Research Center) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Eric Fosler-Lussier (The Ohio State University), Ellen Riloff (University of Utah) || &lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Roberto Basili (University of Rome) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Guiseppe Carenini (University of British Columbia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources Novel Evaluation Methods || Christy Doran (MITRE) ||&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology Word Segmentation || Jason Eisner (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || George Foster (National Research Council Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Social Media Analysis and Processing || Roxana Girju (University of Illinois Urbana-Champaign) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Heng Ji (City University of New York) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntactic Tagging and Chunking || Sadao Kurohashi (Kyoto University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Matt Lease (University of Texas Austin) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse Dialogue and Pragmatics || Diane Litman (University of Pittsburgh) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Deepak Ravichandran (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Guiseppe Ricardi (University of Trento), Richard Rose (McGill University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Giorgio Satta (University of Padova) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Fei Sha (University of Southern California) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Suzanne Stevenson (University of Toronto) ||&lt;br /&gt;
|-&lt;br /&gt;
| End-to-end Language Processing Systems || David Traum (University of Southern California) ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Scott Yih (Microsoft) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Luke Zettlemoyer (University of Washington) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Bowen Zhou (IBM) ||&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization/Topic Clustering || Jerry Zhu (University of Wisconsin) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2011 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Anna Feldman, Greg Kondrak || 34,22&lt;br /&gt;
|-&lt;br /&gt;
|Syntax and Parsing || Xavier Carreras, Ryan McDonald  || 56,48&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Diana McCarthy, Deniz Yuret || 48, 41&lt;br /&gt;
|-&lt;br /&gt;
|Discourse, Dialogue, and Pragmatics || Kentaro Inui, Svetlana Stoyanchev|| 31, 23&lt;br /&gt;
|-&lt;br /&gt;
|Summarization and Generation || Yang Liu, Manabu Okumura  || 36, 35&lt;br /&gt;
|- &lt;br /&gt;
|Statistical and Machine Learning Methods ||Lluis Marquez, Alessandro Moschitti || 42, 27&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Statistical Models ||Shankar Kumar, Taro Watanabe || 56, 39&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Methods, Applications and Evaluations ||Elliott Macklovitch, Michel Simard || 33, 53&lt;br /&gt;
|-&lt;br /&gt;
|Information Retrieval ||  Fabrizio Sebastiani || 26, 11&lt;br /&gt;
|-&lt;br /&gt;
|Question Answering || Bernardo Magnini  || 19, 10&lt;br /&gt;
|-&lt;br /&gt;
|Text Mining and Information Extraction || Razvan Bunescu, Alexander Yates || 51, 38&lt;br /&gt;
|-&lt;br /&gt;
|Sentiment Analysis, Opinion Mining and Text Classification ||Katja Markert, Xiaojun Wan || 45, 38&lt;br /&gt;
|-&lt;br /&gt;
|Spoken Language Processing || Pascale Fung || 20, 13&lt;br /&gt;
|-&lt;br /&gt;
|Natural Language Processing Applications || Vasile Rus || 30, 51&lt;br /&gt;
|-&lt;br /&gt;
|Language Resources || Chu-Ren Huang, Dan Tufis|| 32, 26&lt;br /&gt;
|-&lt;br /&gt;
|Multilinguality || Thamar Solorio || 24, 16&lt;br /&gt;
|-&lt;br /&gt;
|NLP for Web 2.0 || Vivi Nastase || 31, 16&lt;br /&gt;
|-&lt;br /&gt;
|Linguistic Creativity || Carlo Strapparava || 20, 17&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D11/D11-1000.pdf EMNLP 2011] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Paola Merlo (University of Geneva) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Regina Barzilay (Massachusetts Institute of Technology), Mark Johnson (Macquarie University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2011:&lt;br /&gt;
&lt;br /&gt;
Emily M. Bender (University of Washington), Phil Blunsom (University of Oxford), Eugene Charniak (Brown University), Chris Dyer (Carnegie Mellon University), Jenny Finkel (Columbia University), Radu Florian (IBM Watson Research Center), Amir Globerson (The Hebrew University of Jerusalem), Keith Hall (Google Research), Minlie Huang (Tsinghua University), Katrin Kirchhoff (University of Washington), Mirella Lapata (University of Edinburgh), Chin-Yew Lin (Microsoft Research Asia), Bo Pang (Yahoo! Research), Stefan Riezler (University of Heidelberg), Ellen Riloff (University of Utah), Hinrich Schuetze (University of Stuttgart), Jian Su (Institute for Infocomm Research), Dekai Wu (Hong Kong University of Science and Technology), Luke Zettlemoyer (University of Washington)&lt;br /&gt;
&lt;br /&gt;
== ACL 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long + short)&lt;br /&gt;
|- &lt;br /&gt;
| Lexical semantics || Tim Baldwin, Roberto Navigli || 87&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning|| Phil Blunsom, Walter Daelemans || 87&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction|| Kalina Bontcheva, Hang Li || 52&lt;br /&gt;
|-&lt;br /&gt;
| Formal semantics || Johan Bos || 24&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis || Claire Cardie, Theresa Wilson|| 69&lt;br /&gt;
|-&lt;br /&gt;
| Text mining || Rob Gaizauskas || 30&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Keith Hall, Chris Quirk|| 100&lt;br /&gt;
|-&lt;br /&gt;
| Speech processing|| Julia Hirschberg|| 33&lt;br /&gt;
|-&lt;br /&gt;
| Resources|| Nancy Ide|| 50&lt;br /&gt;
|-&lt;br /&gt;
| Multi-modal||Michael Johnston || 18&lt;br /&gt;
|-&lt;br /&gt;
| Psycholinguistics ||Roger Levy || 16&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering and paraphrasing|| Chin-Yew Lin || 40&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, grammatical inference, syntax||Yusuke Miyao, Khalil Sima&#039;an  || 88&lt;br /&gt;
|-&lt;br /&gt;
| Generation and summarisation || Ani Nenkova, Bonnie Webber|| 55&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and dialogue ||Jon Oberlander, Matthew Stone|| 56 &lt;br /&gt;
|-&lt;br /&gt;
| Mathematical linguistics||Stuart Shieber || 29&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, segmentation and morphology||Richard Sproat || 51&lt;br /&gt;
|-&lt;br /&gt;
| Bioinformatics || Jun&#039;ichi Tsujii|| 12&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || ChengXiang Zhai|| 33&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|- &lt;br /&gt;
| Machine Translation || Chris Callison-Burch, Qun Liu || 109&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Sebastian Pado, Takenobu Tokunaga || 102&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Text Classification || Bo Pang || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Gary Geunbae Lee || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Rosie Jones || 55&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Donia Scott || 53&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and NLP Applications || Ming Zhou || 50&lt;br /&gt;
|-&lt;br /&gt;
| Parsing || Sadao Kurohashi || 48&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods || David A Smith || 42&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Nicoletta Calzolari || 38&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Pragmatics || Caroline Sporleder || 38&lt;br /&gt;
|-&lt;br /&gt;
| Chinese Natural Language Processing || Nianwen Xue  || 34&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Morphology-Phonology || Rajeev Sangal || 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Grammar || Emily Bender || 28&lt;br /&gt;
|-&lt;br /&gt;
| Multilingualism || Pierre Isabelle || 26&lt;br /&gt;
|-&lt;br /&gt;
| Dialog and Multimodal || Justine Cassell || 16&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li || 9&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling || Roger Levy || 9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D10/D10-1000.pdf EMNLP 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hang Li (Microsoft Research Asia), Llu´ıs Marquez (Technical University of Catalonia) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2010:&lt;br /&gt;
&lt;br /&gt;
Eneko Agirre (University of the Basque Country), Kalina Bontcheva (University of Sheffield), Antal van den Bosch (Tilburg University), David Chiang (USC Information Sciences Institute), Jennifer Chu-Carroll (IBM Research), Evgeniy Gabrilovich (Yahoo! Research), Jianfeng Gao (Microsoft Research), Julio Gonzalo (UNED), Nancy Ide (Vassar College), Haizhou Li (Institute for Infocomm Research), Qun Liu (ICT, Chinese Academy of Sciences), Yusuke Miyao (National Institute of Informatics), Bo Pang (Yahoo! Research), Dragomir Radev (University of Michigan), Noah Smith (Carnegie Mellon University), Kristina Toutanova (Microsoft Research), Yoshimasa Tsuruoka (JAIST), Yi Zhang (University of California, Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N10/N10-1000.pdf NAACL 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Ronald Kaplan (Microsoft Bing) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Jill Burstein (Educational Testing Service), Mary Harper (University of Maryland and The Johns Hopkins University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for NAACL 2010:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yaser Al-Onaizan (IBM), Ciprian Chelba (Google), Mona Diab (Columbia University), Barbara Di Eugenio (University of Illinois at Chicago), Eric Fosler-Lussier (Ohio State University), Makoto Kanazawa (National Institute of Informatics, Tokyo), Damianos Karakos (Johns Hopkins University), Philip Koehn (University of Edinburgh), Mike Maxwell (University of Maryland), Diana McCarthy (Lexical Computing Ltd), Ani Nenkova (University of Pennsylvania), Stefan Oepen (University of Oslo), Dan Roth (University of Illinois at Urbana-Champaign), Noah Smith (Carnegie Mellon University), Amanda Stent (AT&amp;amp;T), Joel Tetreault (Educational Testing Service), Jan Wiebe (University of Pittsburgh)&lt;br /&gt;
&lt;br /&gt;
== ACL 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Greg Kondrak|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Noah Smith, James Curran || 47&lt;br /&gt;
|-&lt;br /&gt;
| Semantics|| Eneko Agirre, Rada Mihalcea|| 67&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Massimo Poesio, Michael Strube|| 41&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz|| 44&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods|| Jianfeng Gao, Jun Suzuki||36&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Hai Feng Wang, Philipp Koehn||80&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||Hsin-Hsi Chen ||29&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Ellen Riloff, Satoshi Sekine||52&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Giuseppe Carenini || 44&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing|| Helen Meng|| 20&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering|| Sanda Harabagiu|| 23&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications||Sophi Ananiadou ||19&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Keh-Jiann Chen || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/E/E09/E09-1000.pdf EACL 2009] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alex Lascarides (University of Edinburgh, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Claire Gardent (CNRS/LORIA Nancy, France), Joakim Nivre (Uppsala University and Vaxjö University,  Sweden) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EACL 2009:&lt;br /&gt;
&lt;br /&gt;
Anja Belz (University of Brighton, UK), Sabine Buchholz (Toshiba Research Europe, UK), Chris Callison-Burch (Johns Hopkins University, USA), Philipp Cimiano (Delft University of Technology, The Netherlands), Maarten de Rijke (University of Amsterdam, The Netherlands), Anna Korhonen (University of Cambridge, UK), Kimmo Koskenniemi (University of Helsinki, Finland), Bernardo Magnini (FBK-irst, Italy), Stephan Oepen (University of Oslo, Norway), Richard Power (The Open University, UK), Giuseppe Riccardi (University of Trento, Italy)&lt;br /&gt;
&lt;br /&gt;
== EMNLP 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Jason Eisner || 24&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Steve Clark|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics||Vivi Nastase || 45&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Tim Paek|| 28&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||Chin-Yew Lin || 25&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods||Miles Osborne ||32&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Adam Lopez ||68&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering||Hang Li ||33&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining||Marius Pasca ||39&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Theresa Wilson || 37&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing||Eric Fosler-Lussier || 11&lt;br /&gt;
|-&lt;br /&gt;
| Natural Language Processing Applications||Carlo Strapparava ||22&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Katrin Erk || 26&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality|| Mona Diab||22&lt;br /&gt;
|-&lt;br /&gt;
| NLP for Web 2.0|| Iryna Gurevych||20&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2008 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon, lexical semantics, word sense disambiguation || Paul Buitelaar || 45&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Stephen Pulman Mary Dalrymple || 46&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, dialogue || Eva Hajicova || 24&lt;br /&gt;
|-&lt;br /&gt;
| NLG, summarisation || Robert Dale || 36&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, morphology, grammar learning || Mark Johnson || 68&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation and Multilinguality || Pierre Isabelle, Miles Osborne || 86&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, text and web mining, multimedia || Junichi Tsujii || 54&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction, opinion and sentiment Analysis || Rob Gaizauskus || 24&lt;br /&gt;
|-&lt;br /&gt;
| Paraphrasing and Textual Entailment || Bill Dolan || 21&lt;br /&gt;
|-&lt;br /&gt;
| Speech and multimodality || Julia Hirschberg || 16&lt;br /&gt;
|-&lt;br /&gt;
| Resources || Chu-Ren Huang || 56&lt;br /&gt;
|-&lt;br /&gt;
| Learning || Dan Roth || 29&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11148</id>
		<title>Areas, chairs, and area submissions</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11148"/>
		<updated>2015-07-04T01:21:22Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: /* ACL 2012 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.aclweb.org/anthology/P/P14/P14-1000.pdf ACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair  || Daniel Marcu (ISI/USC) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Kristina Toutanova (Microsoft Research), Hua Wu (Baidu) ||&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling and Psycholinguistics || Klinton Bicknell (Northwestern University) || 9, 14&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems || Asli Celikyilmaz (Microsoft Research) || 10, 8&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference and Pragmatics || Micha Elsner (Ohio State University), Michael Strube (HITS gGmbH) || 22, 20&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization, Sentiment Analysis and Topic Models || Jacob Eisenstein (Georgia Institute of Technology), Jun Zhao (Chinese Academy of Sciences) || 53, 48&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Barbara Di Eugenio (University of Illinois at Chicago) || 13, 7&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining || Marius Pasca (Google Research), Mihai Surdeanu (University of Arizona) || 54, 49&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || Ting	Liu (Harbin Institute of Technology) || 8, 9&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation || Nicoletta Calzolari (Institute of Computational Linguistics of the National Research Council), Nianwen Xue (Brandeis University) || 31, 28&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontology || Eneko Agirre (University of the Basque Country) || 26, 23&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Kevin Duh (Nara Institute of Science and Technology), Jason Eisner (Johns Hopkins University) || 39, 15&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Colin Cherry (National Research Council, Canada), Niyu Ge (IBM Research), Liang Huang (City University of New York), Yanjun Ma (Baidu) || 76, 72&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality and Multimodal NLP || Michel Galley (Microsoft Research) || 12, 14&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications and NLP-enabled Technology || Mamoru Komachi (Tokyo Metropolitan University) || 32, 34&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (Johns Hopkins University), Alan Ritter (Carnegie Mellon University) || 29, 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Iryna Gurevych (Technische Universität Darmstadt), Percy Liang (Stanford University), Shiqi Zhao (Baidu) || 53, 37&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Yang Liu (University of Texas at Dallas) || 19, 11&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Scott Wen-tau Yih (Microsoft Research) || 6, 4&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Ciprian Chelba (Google Research) || 9, 10&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Xavier Carreras (Universitat Politecnica de Catalunya), Slav Petrov (Google Research) || 35, 48&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology and Word Segmentation || Grzegorz Kondrak (University of Alberta) || 10, 18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D14/D14-1000.pdf EMNLP 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alessandro Moschitti (Qatar Computing Research Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Walter Daelemans (University of Antwerp), Bo Pang (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, and Segmentation || Tomaž Erjavec (Jožef Stefan Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Gosse Bouma (University of Groningen), Yuji Matsumoto (Nara Institute of Science and Technology) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Jennifer Chu-Carroll (IBM Watson Research Center), Olga Uryupina (University of Trento) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Rada Mihalcea (University of Michigan), Sameer Pradhan (Harvard Medical School) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz (University of Brighton), Dilek Hakkani-Tür (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Ivan Titov (University of Amsterdam), Jerry Zhu (University of Wisconsin-Madison) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Chris Callison-Burch (University of Pennsylvania), Dan Gildea (University of Rochester) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, Text Categorization, and Question Answering || Sien Moens (Katholieke Universiteit Leuven), Hinrich Schütze (Ludwig Maximilian University of M&lt;br /&gt;
unich) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Marius Pasca (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Massimiliano Ciaramita (Google), Hwee Tou Ng (National University of Singapore) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University), Minlie Huang (Tsinghua University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Irwin King (The Chinese University of Hong Kong), Qiaozhu Mei (University of Michigan) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Pascale Fung (Hong Kong University of Science and Technology), Hugo Van hamme (Katholieke Universiteit Leuven) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Psycholinguistics || Sharon Goldwater (University of Edinburgh) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2013 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modelling and Psycholinguistics || * || 13, 12&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems ||  || 15, 10&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference, and Pragmatics ||  || 28, 19&lt;br /&gt;
|-&lt;br /&gt;
| Evaluation Methods ||  || 11, 15&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||  || 20, 20&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources ||  || 24, 27&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontologies ||  || 25, 25&lt;br /&gt;
|-&lt;br /&gt;
| Low Resource Language Processing ||  || 10, 13&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Methods, Applications and Evaluations ||  || 50, 58&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Statistical Models ||  || 44, 30&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications ||  || 46, 42&lt;br /&gt;
|-&lt;br /&gt;
| NLP and Creativity ||  || 3, 4&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Languages of Central and Eastern Europe and The Balkans ||  || 2, 8&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media ||  || 32, 26&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering ||  || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Semantics ||  || 50, 32&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification ||  || 46, 60&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing ||  || 9, 12&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods in NLP ||  || 35, 32&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||  || 31, 23&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing ||  || 39, 43&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Chunking ||  || 12, 13&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Information Extraction ||  || 68, 53&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation ||  || 13, 15&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for ACL 2013: &lt;br /&gt;
&lt;br /&gt;
Frank Keller, Roger Levy, Amanda Stent, David Suendermann, Andrew Kehler, Becky Passonneau, Hang Li, Nancy Ide, Piek Vossen, Philipp Cimiano, Sabine Schulte im Walde, Dekang Lin, Chiori Hori, Keh-Yih Su, Roland Kuhn, Dekai Wu, Benjamin Snyder, Thamar Solorio, Ehud Reiter, Massimiliano Ciaramita, Ken Church, Carlo Strapparava, Tomaz Erjavec, Adam Prziepiorkowski, Patrick Pantel, Owen Rambow, Chris Dyer, Jason Eisner, Jennifer Chu-Carroll, Bernardo Magnini, Lluis Marquez, Alessandro Moschitti, Claire Cardie, Rada Mihalcea, Dilek Hakkani-Tur, Walter Daelemans, Dan Roth, Alex Koller, Ani Nenkova, Jamie Henderson, Sadao Kurohashi, Yuji Matsumoto, Heng Ji, Marie-Francine Moens, Hwee Tou Ng&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D13/D13-1000.pdf EMNLP 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || David Yarowsky (John Hopkins University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Timothy Baldwin (University of Melbourne, Australia), Anna Korhonen (University of Cambridge, UK) || &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, Tagging, Chunking and Segmentation || Kemal Oflazer (Carnegie Mellon University Qatar), Anna Feldman (Montclair State University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Jennifer Foster (Dublin City University, Ireland), Yoav Goldberg (Bar Ilan University, Israel) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Mark Stevenson (University of Sheffield, UK), Luke Zettlemoyer (University of Washington, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Carolyn Rose (Carnegie Mellon University, USA), Matt Purver (Queen Mary, University of London, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language resources || Emily M. Bender (University of Washington, USA), Aline Villavicencio (Federal University of Rio Grande do Sul, Brazil) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Dragomir Radev (University of Michigan, USA), Yang Liu (University of Texas at Dallas, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Amir Globerson (The Hebrew University of Jerusalem, Israel), Antal van den Bosch (Radboud University &lt;br /&gt;
Nijmegen, Netherlands) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Taro Watanabe (NICT, Japan), Kevin Knight (Information Sciences Institute, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Bernardo Magnini (Fondazione Bruno Kessler, Italy), Soumen Chakrabarti (Indian Institute of Technology, India) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Mausam (Indian Institute of Technology, India), Heng Ji (City University of New York, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li (Institute for Infocomm Research, Singapore), Amanda Stent (AT&amp;amp;T Labs, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Hang Li (Huawei Noah’s Ark Lab, Hong Kong), Kevin Cohen (University of Colorado School of Medicine, USA) &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Janyce Weibe (University of Pittsburgh, USA), Bing Liu (University of Illinois at Chicago, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (University of Edinburgh, UK), Chin-Yew Lin (Microsoft Research Asia, China) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Models of Human Language Acquisition and Processing || Alessandro Lenci (University of Pisa, Italy), Afra Alishahi (Tilburg University, Netherlands) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N13/N13-1000.pdf NAACL 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Lucy Vanderwende (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hal Daumé III (University of Maryland), Katrin Kirchhoff (University of Washington) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology, Word Segmentation || Markus Dreyer (SDL Language Weaver) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax, Tagging, Chunking and Parsing || Joakim Nivre (Uppsala University), James Henderson (Université de Genève) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Percy Liang (Stanford University), Peter Turney (National Research Council of Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Multimodal NLP || Srinivas Bangalore (AT&amp;amp;T) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, Pragmatics || David Traum (Institute for Creative Technologies), Joyce Chai (Michigan State University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Linguistic Aspects of CL || Vera Demberg (Saarland University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Guy Lapalme ((Université de Montréal) ||&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Johanna Moore (University of Edinburgh) ||&lt;br /&gt;
|-&lt;br /&gt;
| ML for Language Processing || Phil Blunsom (University of Oxford), Mark Dredze (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Alon Lavie (Carnegie Mellon University), Marine Carpuat (National Research Council of Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and QA || Eugene Agichtein (Emory University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Sanda Harabagiu (University of Texas at Dallas) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Zak Shafran (Oregon Health and Science University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Bo Pang (Cornell University), Theresa Wilson (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-enabled Technology || David Bean (TDW) ||&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization and Topic Clustering || Jordan Boyd-Graber (University of Maryland) ||&lt;br /&gt;
|-&lt;br /&gt;
| Social Media Analysis and Processing || Bill Dolan (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation Methods || Ani Nenkova (University of Pennsylvania) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2012 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Dialogue || Mikio Nakano, Andrei Popescu-Belis || 39, 23&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Information Retrieval || Jian Su, Jianfeng Gao, Vincent Ng || 64, 37&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Fei Xia || 15, 13&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics || Evgeniy Gabrilovich, Naoaki Okazaki || 38, 31&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon and Ontology ||  Eneko Agirre || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning || Trevor Cohn, Mark Dredze || 56, 28&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Marcello Federico, Adam Lopez, David Talbot, Hua Wu || 75, 56&lt;br /&gt;
|-&lt;br /&gt;
| Multilingual || Daniel M. Bikel, Mona T. Diab || 31, 15&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications || Jason Baldridge, David Weir || 41, 18&lt;br /&gt;
|-&lt;br /&gt;
| Syntax/Parsing || Stephen Clark, Liang Huang || 64, 36&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Hongyuan Zha, Hsin-Hsi Chen || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Social Media and Sentiment || Noah Smith, Jan Wiebe || 51, 32&lt;br /&gt;
|-&lt;br /&gt;
| Speech || Chung-Hsien Wu || 16, 12&lt;br /&gt;
|-&lt;br /&gt;
| Summarization &amp;amp; Generation || Anja Belz, Ani Nenkova || 20, 23&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation, Morphology and Phonology || Kemal Oflazer || 36, 23&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/E/E12/E12-1000.pdf EACL 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Walter Daelemans (University of Antwerp, Belgium) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Mirella Lapata (University of Edinburgh, UK), Lluis Marquez (Universitat Politecnica de Catalunya, Spain) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EACL 2012:&lt;br /&gt;
&lt;br /&gt;
Katja Filippova (Google), Min-Yen Kan (National University of Singapore), Charles Sutton (University of Edinburgh), Ivan Titov (Saarland University), Xavier Carreras (&lt;br /&gt;
Universitat Politecnica de Catalunya(UPC)), Kenji Sagae (University of Southern California), Kallirroi Georgila (Institute for Creative Technologies, University of Sou&lt;br /&gt;
thern California), Michael Strube (HITS gGmbH), Pascale Fung (The Hong Kong University of Science and Tech), Bing Liu (University of Illinois at Chicago), Theresa Wils&lt;br /&gt;
on (Johns Hopkins University), David McClosky (Stanford University), Sebastian Riedel (University of Massachusetts), Phil Blunsom (University of Oxford), Mikel L. Forc&lt;br /&gt;
ada (Universitat d’Alacant), Christof Monz (University of Amsterdam), Sharon Goldwater (University of Edinburgh), Richard Wicentowski (Swarthmore College), Patrick Pan&lt;br /&gt;
tel (Microsoft Research), Hiroya Takamura (Tokyo Institute of Technology), Alexander Koller (University of Potsdam), Sebastian Pado (Universitat Heidelberg), Maarten d&lt;br /&gt;
e Rijke (University of Amsterdam), Julio Gonzalo (UNED), Lori Levin (Carnegie Mellon University), Piek Vossen (VU University Amsterdam), Afra Alishahi (Tilburg Univers&lt;br /&gt;
ity, The Netherlands), John Hale (Cornell University)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D12/D12-1000.pdf EMNLP 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jun’ichi Tsujii (Microsoft Research Asia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || James Henderson (Xerox Research Centre Europe), Marius Pasca (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2012:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yejin Choi (Stony Brook University), Hal Daume III (University of Maryland), Doug Downey (Northwestern University), Chris Dyer (Carnegie Mellon University), Adria de Gispert (University of Cambridge), Julia Hirschberg (Columbia University), Anna Korhonen (University of Cambridge), Bing Liu (University of Illinois at Chicago), Hwee Tou Ng (National University of Singapore), Patrick Pantel (Microsoft Research), Marco Pennacchiotti (Yahoo! Labs), Slav Petrov (Google), Simone Paolo Ponzetto (Sapienza University of Rome), John Prager (IBM Research), Chris Quirk (Microsoft Research), Sebastian Riedel (University of Massachusetts at Amherst), Hiroya Takamura (Tokyo Institute of Technology), Partha Talukdar (Carnegie Mellon University), Carnegie Mellon University (Microsoft Research), Reut Tsarfaty (Uppsala University), Marilyn Walker (University of California at Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N12/N12-1000.pdf NAACL 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jennifer Chu-Carroll (IBM T.J. Watson Research Center) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Eric Fosler-Lussier (The Ohio State University), Ellen Riloff (University of Utah) || &lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Roberto Basili (University of Rome) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Guiseppe Carenini (University of British Columbia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources Novel Evaluation Methods || Christy Doran (MITRE) ||&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology Word Segmentation || Jason Eisner (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || George Foster (National Research Council Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Social Media Analysis and Processing || Roxana Girju (University of Illinois Urbana-Champaign) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Heng Ji (City University of New York) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntactic Tagging and Chunking || Sadao Kurohashi (Kyoto University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Matt Lease (University of Texas Austin) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse Dialogue and Pragmatics || Diane Litman (University of Pittsburgh) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Deepak Ravichandran (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Guiseppe Ricardi (University of Trento), Richard Rose (McGill University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Giorgio Satta (University of Padova) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Fei Sha (University of Southern California) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Suzanne Stevenson (University of Toronto) ||&lt;br /&gt;
|-&lt;br /&gt;
| End-to-end Language Processing Systems || David Traum (University of Southern California) ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Scott Yih (Microsoft) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Luke Zettlemoyer (University of Washington) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Bowen Zhou (IBM) ||&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization/Topic Clustering || Jerry Zhu (University of Wisconsin) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2011 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Anna Feldman, Greg Kondrak || 34,22&lt;br /&gt;
|-&lt;br /&gt;
|Syntax and Parsing || Xavier Carreras, Ryan McDonald  || 56,48&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Diana McCarthy, Deniz Yuret || 48, 41&lt;br /&gt;
|-&lt;br /&gt;
|Discourse, Dialogue, and Pragmatics || Kentaro Inui, Svetlana Stoyanchev|| 31, 23&lt;br /&gt;
|-&lt;br /&gt;
|Summarization and Generation || Yang Liu, Manabu Okumura  || 36, 35&lt;br /&gt;
|- &lt;br /&gt;
|Statistical and Machine Learning Methods ||Lluis Marquez, Alessandro Moschitti || 42, 27&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Statistical Models ||Shankar Kumar, Taro Watanabe || 56, 39&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Methods, Applications and Evaluations ||Elliott Macklovitch, Michel Simard || 33, 53&lt;br /&gt;
|-&lt;br /&gt;
|Information Retrieval ||  Fabrizio Sebastiani || 26, 11&lt;br /&gt;
|-&lt;br /&gt;
|Question Answering || Bernardo Magnini  || 19, 10&lt;br /&gt;
|-&lt;br /&gt;
|Text Mining and Information Extraction || Razvan Bunescu, Alexander Yates || 51, 38&lt;br /&gt;
|-&lt;br /&gt;
|Sentiment Analysis, Opinion Mining and Text Classification ||Katja Markert, Xiaojun Wan || 45, 38&lt;br /&gt;
|-&lt;br /&gt;
|Spoken Language Processing || Pascale Fung || 20, 13&lt;br /&gt;
|-&lt;br /&gt;
|Natural Language Processing Applications || Vasile Rus || 30, 51&lt;br /&gt;
|-&lt;br /&gt;
|Language Resources || Chu-Ren Huang, Dan Tufis|| 32, 26&lt;br /&gt;
|-&lt;br /&gt;
|Multilinguality || Thamar Solorio || 24, 16&lt;br /&gt;
|-&lt;br /&gt;
|NLP for Web 2.0 || Vivi Nastase || 31, 16&lt;br /&gt;
|-&lt;br /&gt;
|Linguistic Creativity || Carlo Strapparava || 20, 17&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D11/D11-1000.pdf EMNLP 2011] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Paola Merlo (University of Geneva) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Regina Barzilay (Massachusetts Institute of Technology), Mark Johnson (Macquarie University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2011:&lt;br /&gt;
&lt;br /&gt;
Emily M. Bender (University of Washington), Phil Blunsom (University of Oxford), Eugene Charniak (Brown University), Chris Dyer (Carnegie Mellon University), Jenny Finkel (Columbia University), Radu Florian (IBM Watson Research Center), Amir Globerson (The Hebrew University of Jerusalem), Keith Hall (Google Research), Minlie Huang (Tsinghua University), Katrin Kirchhoff (University of Washington), Mirella Lapata (University of Edinburgh), Chin-Yew Lin (Microsoft Research Asia), Bo Pang (Yahoo! Research), Stefan Riezler (University of Heidelberg), Ellen Riloff (University of Utah), Hinrich Schuetze (University of Stuttgart), Jian Su (Institute for Infocomm Research), Dekai Wu (Hong Kong University of Science and Technology), Luke Zettlemoyer (University of Washington)&lt;br /&gt;
&lt;br /&gt;
== ACL 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long + short)&lt;br /&gt;
|- &lt;br /&gt;
| Lexical semantics || Tim Baldwin, Roberto Navigli || 87&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning|| Phil Blunsom, Walter Daelemans || 87&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction|| Kalina Bontcheva, Hang Li || 52&lt;br /&gt;
|-&lt;br /&gt;
| Formal semantics || Johan Bos || 24&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis || Claire Cardie, Theresa Wilson|| 69&lt;br /&gt;
|-&lt;br /&gt;
| Text mining || Rob Gaizauskas || 30&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Keith Hall, Chris Quirk|| 100&lt;br /&gt;
|-&lt;br /&gt;
| Speech processing|| Julia Hirschberg|| 33&lt;br /&gt;
|-&lt;br /&gt;
| Resources|| Nancy Ide|| 50&lt;br /&gt;
|-&lt;br /&gt;
| Multi-modal||Michael Johnston || 18&lt;br /&gt;
|-&lt;br /&gt;
| Psycholinguistics ||Roger Levy || 16&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering and paraphrasing|| Chin-Yew Lin || 40&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, grammatical inference, syntax||Yusuke Miyao, Khalil Sima&#039;an  || 88&lt;br /&gt;
|-&lt;br /&gt;
| Generation and summarisation || Ani Nenkova, Bonnie Webber|| 55&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and dialogue ||Jon Oberlander, Matthew Stone|| 56 &lt;br /&gt;
|-&lt;br /&gt;
| Mathematical linguistics||Stuart Shieber || 29&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, segmentation and morphology||Richard Sproat || 51&lt;br /&gt;
|-&lt;br /&gt;
| Bioinformatics || Jun&#039;ichi Tsujii|| 12&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || ChengXiang Zhai|| 33&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|- &lt;br /&gt;
| Machine Translation || Chris Callison-Burch, Qun Liu || 109&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Sebastian Pado, Takenobu Tokunaga || 102&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Text Classification || Bo Pang || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Gary Geunbae Lee || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Rosie Jones || 55&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Donia Scott || 53&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and NLP Applications || Ming Zhou || 50&lt;br /&gt;
|-&lt;br /&gt;
| Parsing || Sadao Kurohashi || 48&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods || David A Smith || 42&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Nicoletta Calzolari || 38&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Pragmatics || Caroline Sporleder || 38&lt;br /&gt;
|-&lt;br /&gt;
| Chinese Natural Language Processing || Nianwen Xue  || 34&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Morphology-Phonology || Rajeev Sangal || 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Grammar || Emily Bender || 28&lt;br /&gt;
|-&lt;br /&gt;
| Multilingualism || Pierre Isabelle || 26&lt;br /&gt;
|-&lt;br /&gt;
| Dialog and Multimodal || Justine Cassell || 16&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li || 9&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling || Roger Levy || 9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D10/D10-1000.pdf EMNLP 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hang Li (Microsoft Research Asia), Llu´ıs Marquez (Technical University of Catalonia) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2010:&lt;br /&gt;
&lt;br /&gt;
Eneko Agirre (University of the Basque Country), Kalina Bontcheva (University of Sheffield), Antal van den Bosch (Tilburg University), David Chiang (USC Information Sciences Institute), Jennifer Chu-Carroll (IBM Research), Evgeniy Gabrilovich (Yahoo! Research), Jianfeng Gao (Microsoft Research), Julio Gonzalo (UNED), Nancy Ide (Vassar College), Haizhou Li (Institute for Infocomm Research), Qun Liu (ICT, Chinese Academy of Sciences), Yusuke Miyao (National Institute of Informatics), Bo Pang (Yahoo! Research), Dragomir Radev (University of Michigan), Noah Smith (Carnegie Mellon University), Kristina Toutanova (Microsoft Research), Yoshimasa Tsuruoka (JAIST), Yi Zhang (University of California, Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N10/N10-1000.pdf NAACL 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Ronald Kaplan (Microsoft Bing) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Jill Burstein (Educational Testing Service), Mary Harper (University of Maryland and The Johns Hopkins University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for NAACL 2010:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yaser Al-Onaizan (IBM), Ciprian Chelba (Google), Mona Diab (Columbia University), Barbara Di Eugenio (University of Illinois at Chicago), Eric Fosler-Lussier (Ohio State University), Makoto Kanazawa (National Institute of Informatics, Tokyo), Damianos Karakos (Johns Hopkins University), Philip Koehn (University of Edinburgh), Mike Maxwell (University of Maryland), Diana McCarthy (Lexical Computing Ltd), Ani Nenkova (University of Pennsylvania), Stefan Oepen (University of Oslo), Dan Roth (University of Illinois at Urbana-Champaign), Noah Smith (Carnegie Mellon University), Amanda Stent (AT&amp;amp;T), Joel Tetreault (Educational Testing Service), Jan Wiebe (University of Pittsburgh)&lt;br /&gt;
&lt;br /&gt;
== ACL 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Greg Kondrak|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Noah Smith, James Curran || 47&lt;br /&gt;
|-&lt;br /&gt;
| Semantics|| Eneko Agirre, Rada Mihalcea|| 67&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Massimo Poesio, Michael Strube|| 41&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz|| 44&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods|| Jianfeng Gao, Jun Suzuki||36&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Hai Feng Wang, Philipp Koehn||80&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||Hsin-Hsi Chen ||29&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Ellen Riloff, Satoshi Sekine||52&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Giuseppe Carenini || 44&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing|| Helen Meng|| 20&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering|| Sanda Harabagiu|| 23&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications||Sophi Ananiadou ||19&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Keh-Jiann Chen || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/E/E09/E09-1000.pdf EACL 2009] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alex Lascarides (University of Edinburgh, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Claire Gardent (CNRS/LORIA Nancy, France), Joakim Nivre (Uppsala University and Vaxjö University,  Sweden) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EACL 2009:&lt;br /&gt;
&lt;br /&gt;
Anja Belz (University of Brighton, UK), Sabine Buchholz (Toshiba Research Europe, UK), Chris Callison-Burch (Johns Hopkins University, USA), Philipp Cimiano (Delft University of Technology, The Netherlands), Maarten de Rijke (University of Amsterdam, The Netherlands), Anna Korhonen (University of Cambridge, UK), Kimmo Koskenniemi (University of Helsinki, Finland), Bernardo Magnini (FBK-irst, Italy), Stephan Oepen (University of Oslo, Norway), Richard Power (The Open University, UK), Giuseppe Riccardi (University of Trento, Italy)&lt;br /&gt;
&lt;br /&gt;
== EMNLP 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Jason Eisner || 24&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Steve Clark|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics||Vivi Nastase || 45&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Tim Paek|| 28&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||Chin-Yew Lin || 25&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods||Miles Osborne ||32&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Adam Lopez ||68&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering||Hang Li ||33&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining||Marius Pasca ||39&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Theresa Wilson || 37&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing||Eric Fosler-Lussier || 11&lt;br /&gt;
|-&lt;br /&gt;
| Natural Language Processing Applications||Carlo Strapparava ||22&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Katrin Erk || 26&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality|| Mona Diab||22&lt;br /&gt;
|-&lt;br /&gt;
| NLP for Web 2.0|| Iryna Gurevych||20&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2008 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon, lexical semantics, word sense disambiguation || Paul Buitelaar || 45&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Stephen Pulman Mary Dalrymple || 46&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, dialogue || Eva Hajicova || 24&lt;br /&gt;
|-&lt;br /&gt;
| NLG, summarisation || Robert Dale || 36&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, morphology, grammar learning || Mark Johnson || 68&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation and Multilinguality || Pierre Isabelle, Miles Osborne || 86&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, text and web mining, multimedia || Junichi Tsujii || 54&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction, opinion and sentiment Analysis || Rob Gaizauskus || 24&lt;br /&gt;
|-&lt;br /&gt;
| Paraphrasing and Textual Entailment || Bill Dolan || 21&lt;br /&gt;
|-&lt;br /&gt;
| Speech and multimodality || Julia Hirschberg || 16&lt;br /&gt;
|-&lt;br /&gt;
| Resources || Chu-Ren Huang || 56&lt;br /&gt;
|-&lt;br /&gt;
| Learning || Dan Roth || 29&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11147</id>
		<title>Areas, chairs, and area submissions</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11147"/>
		<updated>2015-07-04T01:20:07Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: EACL 2009&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.aclweb.org/anthology/P/P14/P14-1000.pdf ACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair  || Daniel Marcu (ISI/USC) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Kristina Toutanova (Microsoft Research), Hua Wu (Baidu) ||&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling and Psycholinguistics || Klinton Bicknell (Northwestern University) || 9, 14&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems || Asli Celikyilmaz (Microsoft Research) || 10, 8&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference and Pragmatics || Micha Elsner (Ohio State University), Michael Strube (HITS gGmbH) || 22, 20&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization, Sentiment Analysis and Topic Models || Jacob Eisenstein (Georgia Institute of Technology), Jun Zhao (Chinese Academy of Sciences) || 53, 48&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Barbara Di Eugenio (University of Illinois at Chicago) || 13, 7&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining || Marius Pasca (Google Research), Mihai Surdeanu (University of Arizona) || 54, 49&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || Ting	Liu (Harbin Institute of Technology) || 8, 9&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation || Nicoletta Calzolari (Institute of Computational Linguistics of the National Research Council), Nianwen Xue (Brandeis University) || 31, 28&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontology || Eneko Agirre (University of the Basque Country) || 26, 23&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Kevin Duh (Nara Institute of Science and Technology), Jason Eisner (Johns Hopkins University) || 39, 15&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Colin Cherry (National Research Council, Canada), Niyu Ge (IBM Research), Liang Huang (City University of New York), Yanjun Ma (Baidu) || 76, 72&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality and Multimodal NLP || Michel Galley (Microsoft Research) || 12, 14&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications and NLP-enabled Technology || Mamoru Komachi (Tokyo Metropolitan University) || 32, 34&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (Johns Hopkins University), Alan Ritter (Carnegie Mellon University) || 29, 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Iryna Gurevych (Technische Universität Darmstadt), Percy Liang (Stanford University), Shiqi Zhao (Baidu) || 53, 37&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Yang Liu (University of Texas at Dallas) || 19, 11&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Scott Wen-tau Yih (Microsoft Research) || 6, 4&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Ciprian Chelba (Google Research) || 9, 10&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Xavier Carreras (Universitat Politecnica de Catalunya), Slav Petrov (Google Research) || 35, 48&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology and Word Segmentation || Grzegorz Kondrak (University of Alberta) || 10, 18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D14/D14-1000.pdf EMNLP 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alessandro Moschitti (Qatar Computing Research Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Walter Daelemans (University of Antwerp), Bo Pang (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, and Segmentation || Tomaž Erjavec (Jožef Stefan Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Gosse Bouma (University of Groningen), Yuji Matsumoto (Nara Institute of Science and Technology) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Jennifer Chu-Carroll (IBM Watson Research Center), Olga Uryupina (University of Trento) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Rada Mihalcea (University of Michigan), Sameer Pradhan (Harvard Medical School) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz (University of Brighton), Dilek Hakkani-Tür (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Ivan Titov (University of Amsterdam), Jerry Zhu (University of Wisconsin-Madison) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Chris Callison-Burch (University of Pennsylvania), Dan Gildea (University of Rochester) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, Text Categorization, and Question Answering || Sien Moens (Katholieke Universiteit Leuven), Hinrich Schütze (Ludwig Maximilian University of M&lt;br /&gt;
unich) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Marius Pasca (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Massimiliano Ciaramita (Google), Hwee Tou Ng (National University of Singapore) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University), Minlie Huang (Tsinghua University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Irwin King (The Chinese University of Hong Kong), Qiaozhu Mei (University of Michigan) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Pascale Fung (Hong Kong University of Science and Technology), Hugo Van hamme (Katholieke Universiteit Leuven) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Psycholinguistics || Sharon Goldwater (University of Edinburgh) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2013 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modelling and Psycholinguistics || * || 13, 12&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems ||  || 15, 10&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference, and Pragmatics ||  || 28, 19&lt;br /&gt;
|-&lt;br /&gt;
| Evaluation Methods ||  || 11, 15&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||  || 20, 20&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources ||  || 24, 27&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontologies ||  || 25, 25&lt;br /&gt;
|-&lt;br /&gt;
| Low Resource Language Processing ||  || 10, 13&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Methods, Applications and Evaluations ||  || 50, 58&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Statistical Models ||  || 44, 30&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications ||  || 46, 42&lt;br /&gt;
|-&lt;br /&gt;
| NLP and Creativity ||  || 3, 4&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Languages of Central and Eastern Europe and The Balkans ||  || 2, 8&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media ||  || 32, 26&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering ||  || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Semantics ||  || 50, 32&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification ||  || 46, 60&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing ||  || 9, 12&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods in NLP ||  || 35, 32&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||  || 31, 23&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing ||  || 39, 43&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Chunking ||  || 12, 13&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Information Extraction ||  || 68, 53&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation ||  || 13, 15&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for ACL 2013: &lt;br /&gt;
&lt;br /&gt;
Frank Keller, Roger Levy, Amanda Stent, David Suendermann, Andrew Kehler, Becky Passonneau, Hang Li, Nancy Ide, Piek Vossen, Philipp Cimiano, Sabine Schulte im Walde, Dekang Lin, Chiori Hori, Keh-Yih Su, Roland Kuhn, Dekai Wu, Benjamin Snyder, Thamar Solorio, Ehud Reiter, Massimiliano Ciaramita, Ken Church, Carlo Strapparava, Tomaz Erjavec, Adam Prziepiorkowski, Patrick Pantel, Owen Rambow, Chris Dyer, Jason Eisner, Jennifer Chu-Carroll, Bernardo Magnini, Lluis Marquez, Alessandro Moschitti, Claire Cardie, Rada Mihalcea, Dilek Hakkani-Tur, Walter Daelemans, Dan Roth, Alex Koller, Ani Nenkova, Jamie Henderson, Sadao Kurohashi, Yuji Matsumoto, Heng Ji, Marie-Francine Moens, Hwee Tou Ng&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D13/D13-1000.pdf EMNLP 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || David Yarowsky (John Hopkins University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Timothy Baldwin (University of Melbourne, Australia), Anna Korhonen (University of Cambridge, UK) || &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, Tagging, Chunking and Segmentation || Kemal Oflazer (Carnegie Mellon University Qatar), Anna Feldman (Montclair State University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Jennifer Foster (Dublin City University, Ireland), Yoav Goldberg (Bar Ilan University, Israel) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Mark Stevenson (University of Sheffield, UK), Luke Zettlemoyer (University of Washington, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Carolyn Rose (Carnegie Mellon University, USA), Matt Purver (Queen Mary, University of London, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language resources || Emily M. Bender (University of Washington, USA), Aline Villavicencio (Federal University of Rio Grande do Sul, Brazil) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Dragomir Radev (University of Michigan, USA), Yang Liu (University of Texas at Dallas, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Amir Globerson (The Hebrew University of Jerusalem, Israel), Antal van den Bosch (Radboud University &lt;br /&gt;
Nijmegen, Netherlands) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Taro Watanabe (NICT, Japan), Kevin Knight (Information Sciences Institute, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Bernardo Magnini (Fondazione Bruno Kessler, Italy), Soumen Chakrabarti (Indian Institute of Technology, India) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Mausam (Indian Institute of Technology, India), Heng Ji (City University of New York, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li (Institute for Infocomm Research, Singapore), Amanda Stent (AT&amp;amp;T Labs, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Hang Li (Huawei Noah’s Ark Lab, Hong Kong), Kevin Cohen (University of Colorado School of Medicine, USA) &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Janyce Weibe (University of Pittsburgh, USA), Bing Liu (University of Illinois at Chicago, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (University of Edinburgh, UK), Chin-Yew Lin (Microsoft Research Asia, China) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Models of Human Language Acquisition and Processing || Alessandro Lenci (University of Pisa, Italy), Afra Alishahi (Tilburg University, Netherlands) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N13/N13-1000.pdf NAACL 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Lucy Vanderwende (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hal Daumé III (University of Maryland), Katrin Kirchhoff (University of Washington) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology, Word Segmentation || Markus Dreyer (SDL Language Weaver) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax, Tagging, Chunking and Parsing || Joakim Nivre (Uppsala University), James Henderson (Université de Genève) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Percy Liang (Stanford University), Peter Turney (National Research Council of Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Multimodal NLP || Srinivas Bangalore (AT&amp;amp;T) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, Pragmatics || David Traum (Institute for Creative Technologies), Joyce Chai (Michigan State University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Linguistic Aspects of CL || Vera Demberg (Saarland University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Guy Lapalme ((Université de Montréal) ||&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Johanna Moore (University of Edinburgh) ||&lt;br /&gt;
|-&lt;br /&gt;
| ML for Language Processing || Phil Blunsom (University of Oxford), Mark Dredze (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Alon Lavie (Carnegie Mellon University), Marine Carpuat (National Research Council of Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and QA || Eugene Agichtein (Emory University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Sanda Harabagiu (University of Texas at Dallas) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Zak Shafran (Oregon Health and Science University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Bo Pang (Cornell University), Theresa Wilson (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-enabled Technology || David Bean (TDW) ||&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization and Topic Clustering || Jordan Boyd-Graber (University of Maryland) ||&lt;br /&gt;
|-&lt;br /&gt;
| Social Media Analysis and Processing || Bill Dolan (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation Methods || Ani Nenkova (University of Pennsylvania) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2012 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Dialogue || Mikio Nakano, Andrei Popescu-Belis || 39, 23&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Information Retrieval || Jian Su, Jianfeng Gao, Vincent Ng || 64, 37&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Fei Xia || 15, 13&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics || Evgeniy Gabrilovich, Naoaki Okazaki || 38, 31&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon and Ontology ||  Eneko Agirre || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning || Trevor Cohn, Mark Dredze || 56, 28&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Marcello Federico, Adam Lopez, David Talbot, Hua Wu || 75, 56&lt;br /&gt;
|-&lt;br /&gt;
| Multilingual || Daniel M. Bikel, Mona T. Diab || 31, 15&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications || Jason Baldridge, David Weir || 41, 18&lt;br /&gt;
|-&lt;br /&gt;
| Syntax/Parsing || Stephen Clark, Liang Huang || 64, 36&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Hongyuan Zha, Hsin-Hsi Chen || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Social Media and Sentiment || Noah Smith, Jan Wiebe || 51, 32&lt;br /&gt;
|-&lt;br /&gt;
| Speech || Chung-Hsien Wu || 16, 12&lt;br /&gt;
|-&lt;br /&gt;
| Summarization &amp;amp; Generation || Anja Belz, Ani Nenkova || 20, 23&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation, Morphology and Phonology || Kemal Oflazer || 36, 23&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D12/D12-1000.pdf EMNLP 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jun’ichi Tsujii (Microsoft Research Asia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || James Henderson (Xerox Research Centre Europe), Marius Pasca (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2012:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yejin Choi (Stony Brook University), Hal Daume III (University of Maryland), Doug Downey (Northwestern University), Chris Dyer (Carnegie Mellon University), Adria de Gispert (University of Cambridge), Julia Hirschberg (Columbia University), Anna Korhonen (University of Cambridge), Bing Liu (University of Illinois at Chicago), Hwee Tou Ng (National University of Singapore), Patrick Pantel (Microsoft Research), Marco Pennacchiotti (Yahoo! Labs), Slav Petrov (Google), Simone Paolo Ponzetto (Sapienza University of Rome), John Prager (IBM Research), Chris Quirk (Microsoft Research), Sebastian Riedel (University of Massachusetts at Amherst), Hiroya Takamura (Tokyo Institute of Technology), Partha Talukdar (Carnegie Mellon University), Carnegie Mellon University (Microsoft Research), Reut Tsarfaty (Uppsala University), Marilyn Walker (University of California at Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N12/N12-1000.pdf NAACL 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jennifer Chu-Carroll (IBM T.J. Watson Research Center) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Eric Fosler-Lussier (The Ohio State University), Ellen Riloff (University of Utah) || &lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Roberto Basili (University of Rome) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Guiseppe Carenini (University of British Columbia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources Novel Evaluation Methods || Christy Doran (MITRE) ||&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology Word Segmentation || Jason Eisner (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || George Foster (National Research Council Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Social Media Analysis and Processing || Roxana Girju (University of Illinois Urbana-Champaign) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Heng Ji (City University of New York) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntactic Tagging and Chunking || Sadao Kurohashi (Kyoto University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Matt Lease (University of Texas Austin) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse Dialogue and Pragmatics || Diane Litman (University of Pittsburgh) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Deepak Ravichandran (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Guiseppe Ricardi (University of Trento), Richard Rose (McGill University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Giorgio Satta (University of Padova) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Fei Sha (University of Southern California) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Suzanne Stevenson (University of Toronto) ||&lt;br /&gt;
|-&lt;br /&gt;
| End-to-end Language Processing Systems || David Traum (University of Southern California) ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Scott Yih (Microsoft) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Luke Zettlemoyer (University of Washington) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Bowen Zhou (IBM) ||&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization/Topic Clustering || Jerry Zhu (University of Wisconsin) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2011 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Anna Feldman, Greg Kondrak || 34,22&lt;br /&gt;
|-&lt;br /&gt;
|Syntax and Parsing || Xavier Carreras, Ryan McDonald  || 56,48&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Diana McCarthy, Deniz Yuret || 48, 41&lt;br /&gt;
|-&lt;br /&gt;
|Discourse, Dialogue, and Pragmatics || Kentaro Inui, Svetlana Stoyanchev|| 31, 23&lt;br /&gt;
|-&lt;br /&gt;
|Summarization and Generation || Yang Liu, Manabu Okumura  || 36, 35&lt;br /&gt;
|- &lt;br /&gt;
|Statistical and Machine Learning Methods ||Lluis Marquez, Alessandro Moschitti || 42, 27&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Statistical Models ||Shankar Kumar, Taro Watanabe || 56, 39&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Methods, Applications and Evaluations ||Elliott Macklovitch, Michel Simard || 33, 53&lt;br /&gt;
|-&lt;br /&gt;
|Information Retrieval ||  Fabrizio Sebastiani || 26, 11&lt;br /&gt;
|-&lt;br /&gt;
|Question Answering || Bernardo Magnini  || 19, 10&lt;br /&gt;
|-&lt;br /&gt;
|Text Mining and Information Extraction || Razvan Bunescu, Alexander Yates || 51, 38&lt;br /&gt;
|-&lt;br /&gt;
|Sentiment Analysis, Opinion Mining and Text Classification ||Katja Markert, Xiaojun Wan || 45, 38&lt;br /&gt;
|-&lt;br /&gt;
|Spoken Language Processing || Pascale Fung || 20, 13&lt;br /&gt;
|-&lt;br /&gt;
|Natural Language Processing Applications || Vasile Rus || 30, 51&lt;br /&gt;
|-&lt;br /&gt;
|Language Resources || Chu-Ren Huang, Dan Tufis|| 32, 26&lt;br /&gt;
|-&lt;br /&gt;
|Multilinguality || Thamar Solorio || 24, 16&lt;br /&gt;
|-&lt;br /&gt;
|NLP for Web 2.0 || Vivi Nastase || 31, 16&lt;br /&gt;
|-&lt;br /&gt;
|Linguistic Creativity || Carlo Strapparava || 20, 17&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D11/D11-1000.pdf EMNLP 2011] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Paola Merlo (University of Geneva) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Regina Barzilay (Massachusetts Institute of Technology), Mark Johnson (Macquarie University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2011:&lt;br /&gt;
&lt;br /&gt;
Emily M. Bender (University of Washington), Phil Blunsom (University of Oxford), Eugene Charniak (Brown University), Chris Dyer (Carnegie Mellon University), Jenny Finkel (Columbia University), Radu Florian (IBM Watson Research Center), Amir Globerson (The Hebrew University of Jerusalem), Keith Hall (Google Research), Minlie Huang (Tsinghua University), Katrin Kirchhoff (University of Washington), Mirella Lapata (University of Edinburgh), Chin-Yew Lin (Microsoft Research Asia), Bo Pang (Yahoo! Research), Stefan Riezler (University of Heidelberg), Ellen Riloff (University of Utah), Hinrich Schuetze (University of Stuttgart), Jian Su (Institute for Infocomm Research), Dekai Wu (Hong Kong University of Science and Technology), Luke Zettlemoyer (University of Washington)&lt;br /&gt;
&lt;br /&gt;
== ACL 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long + short)&lt;br /&gt;
|- &lt;br /&gt;
| Lexical semantics || Tim Baldwin, Roberto Navigli || 87&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning|| Phil Blunsom, Walter Daelemans || 87&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction|| Kalina Bontcheva, Hang Li || 52&lt;br /&gt;
|-&lt;br /&gt;
| Formal semantics || Johan Bos || 24&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis || Claire Cardie, Theresa Wilson|| 69&lt;br /&gt;
|-&lt;br /&gt;
| Text mining || Rob Gaizauskas || 30&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Keith Hall, Chris Quirk|| 100&lt;br /&gt;
|-&lt;br /&gt;
| Speech processing|| Julia Hirschberg|| 33&lt;br /&gt;
|-&lt;br /&gt;
| Resources|| Nancy Ide|| 50&lt;br /&gt;
|-&lt;br /&gt;
| Multi-modal||Michael Johnston || 18&lt;br /&gt;
|-&lt;br /&gt;
| Psycholinguistics ||Roger Levy || 16&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering and paraphrasing|| Chin-Yew Lin || 40&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, grammatical inference, syntax||Yusuke Miyao, Khalil Sima&#039;an  || 88&lt;br /&gt;
|-&lt;br /&gt;
| Generation and summarisation || Ani Nenkova, Bonnie Webber|| 55&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and dialogue ||Jon Oberlander, Matthew Stone|| 56 &lt;br /&gt;
|-&lt;br /&gt;
| Mathematical linguistics||Stuart Shieber || 29&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, segmentation and morphology||Richard Sproat || 51&lt;br /&gt;
|-&lt;br /&gt;
| Bioinformatics || Jun&#039;ichi Tsujii|| 12&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || ChengXiang Zhai|| 33&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|- &lt;br /&gt;
| Machine Translation || Chris Callison-Burch, Qun Liu || 109&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Sebastian Pado, Takenobu Tokunaga || 102&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Text Classification || Bo Pang || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Gary Geunbae Lee || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Rosie Jones || 55&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Donia Scott || 53&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and NLP Applications || Ming Zhou || 50&lt;br /&gt;
|-&lt;br /&gt;
| Parsing || Sadao Kurohashi || 48&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods || David A Smith || 42&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Nicoletta Calzolari || 38&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Pragmatics || Caroline Sporleder || 38&lt;br /&gt;
|-&lt;br /&gt;
| Chinese Natural Language Processing || Nianwen Xue  || 34&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Morphology-Phonology || Rajeev Sangal || 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Grammar || Emily Bender || 28&lt;br /&gt;
|-&lt;br /&gt;
| Multilingualism || Pierre Isabelle || 26&lt;br /&gt;
|-&lt;br /&gt;
| Dialog and Multimodal || Justine Cassell || 16&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li || 9&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling || Roger Levy || 9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D10/D10-1000.pdf EMNLP 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hang Li (Microsoft Research Asia), Llu´ıs Marquez (Technical University of Catalonia) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2010:&lt;br /&gt;
&lt;br /&gt;
Eneko Agirre (University of the Basque Country), Kalina Bontcheva (University of Sheffield), Antal van den Bosch (Tilburg University), David Chiang (USC Information Sciences Institute), Jennifer Chu-Carroll (IBM Research), Evgeniy Gabrilovich (Yahoo! Research), Jianfeng Gao (Microsoft Research), Julio Gonzalo (UNED), Nancy Ide (Vassar College), Haizhou Li (Institute for Infocomm Research), Qun Liu (ICT, Chinese Academy of Sciences), Yusuke Miyao (National Institute of Informatics), Bo Pang (Yahoo! Research), Dragomir Radev (University of Michigan), Noah Smith (Carnegie Mellon University), Kristina Toutanova (Microsoft Research), Yoshimasa Tsuruoka (JAIST), Yi Zhang (University of California, Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N10/N10-1000.pdf NAACL 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Ronald Kaplan (Microsoft Bing) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Jill Burstein (Educational Testing Service), Mary Harper (University of Maryland and The Johns Hopkins University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for NAACL 2010:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yaser Al-Onaizan (IBM), Ciprian Chelba (Google), Mona Diab (Columbia University), Barbara Di Eugenio (University of Illinois at Chicago), Eric Fosler-Lussier (Ohio State University), Makoto Kanazawa (National Institute of Informatics, Tokyo), Damianos Karakos (Johns Hopkins University), Philip Koehn (University of Edinburgh), Mike Maxwell (University of Maryland), Diana McCarthy (Lexical Computing Ltd), Ani Nenkova (University of Pennsylvania), Stefan Oepen (University of Oslo), Dan Roth (University of Illinois at Urbana-Champaign), Noah Smith (Carnegie Mellon University), Amanda Stent (AT&amp;amp;T), Joel Tetreault (Educational Testing Service), Jan Wiebe (University of Pittsburgh)&lt;br /&gt;
&lt;br /&gt;
== ACL 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Greg Kondrak|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Noah Smith, James Curran || 47&lt;br /&gt;
|-&lt;br /&gt;
| Semantics|| Eneko Agirre, Rada Mihalcea|| 67&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Massimo Poesio, Michael Strube|| 41&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz|| 44&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods|| Jianfeng Gao, Jun Suzuki||36&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Hai Feng Wang, Philipp Koehn||80&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||Hsin-Hsi Chen ||29&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Ellen Riloff, Satoshi Sekine||52&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Giuseppe Carenini || 44&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing|| Helen Meng|| 20&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering|| Sanda Harabagiu|| 23&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications||Sophi Ananiadou ||19&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Keh-Jiann Chen || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/E/E09/E09-1000.pdf EACL 2009] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alex Lascarides (University of Edinburgh, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Claire Gardent (CNRS/LORIA Nancy, France), Joakim Nivre (Uppsala University and Vaxjö University,  Sweden) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EACL 2009:&lt;br /&gt;
&lt;br /&gt;
Anja Belz (University of Brighton, UK), Sabine Buchholz (Toshiba Research Europe, UK), Chris Callison-Burch (Johns Hopkins University, USA), Philipp Cimiano (Delft University of Technology, The Netherlands), Maarten de Rijke (University of Amsterdam, The Netherlands), Anna Korhonen (University of Cambridge, UK), Kimmo Koskenniemi (University of Helsinki, Finland), Bernardo Magnini (FBK-irst, Italy), Stephan Oepen (University of Oslo, Norway), Richard Power (The Open University, UK), Giuseppe Riccardi (University of Trento, Italy)&lt;br /&gt;
&lt;br /&gt;
== EMNLP 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Jason Eisner || 24&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Steve Clark|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics||Vivi Nastase || 45&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Tim Paek|| 28&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||Chin-Yew Lin || 25&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods||Miles Osborne ||32&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Adam Lopez ||68&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering||Hang Li ||33&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining||Marius Pasca ||39&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Theresa Wilson || 37&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing||Eric Fosler-Lussier || 11&lt;br /&gt;
|-&lt;br /&gt;
| Natural Language Processing Applications||Carlo Strapparava ||22&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Katrin Erk || 26&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality|| Mona Diab||22&lt;br /&gt;
|-&lt;br /&gt;
| NLP for Web 2.0|| Iryna Gurevych||20&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2008 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon, lexical semantics, word sense disambiguation || Paul Buitelaar || 45&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Stephen Pulman Mary Dalrymple || 46&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, dialogue || Eva Hajicova || 24&lt;br /&gt;
|-&lt;br /&gt;
| NLG, summarisation || Robert Dale || 36&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, morphology, grammar learning || Mark Johnson || 68&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation and Multilinguality || Pierre Isabelle, Miles Osborne || 86&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, text and web mining, multimedia || Junichi Tsujii || 54&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction, opinion and sentiment Analysis || Rob Gaizauskus || 24&lt;br /&gt;
|-&lt;br /&gt;
| Paraphrasing and Textual Entailment || Bill Dolan || 21&lt;br /&gt;
|-&lt;br /&gt;
| Speech and multimodality || Julia Hirschberg || 16&lt;br /&gt;
|-&lt;br /&gt;
| Resources || Chu-Ren Huang || 56&lt;br /&gt;
|-&lt;br /&gt;
| Learning || Dan Roth || 29&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11146</id>
		<title>Areas, chairs, and area submissions</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11146"/>
		<updated>2015-07-04T01:16:33Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: NAACL 2013&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.aclweb.org/anthology/P/P14/P14-1000.pdf ACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair  || Daniel Marcu (ISI/USC) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Kristina Toutanova (Microsoft Research), Hua Wu (Baidu) ||&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling and Psycholinguistics || Klinton Bicknell (Northwestern University) || 9, 14&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems || Asli Celikyilmaz (Microsoft Research) || 10, 8&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference and Pragmatics || Micha Elsner (Ohio State University), Michael Strube (HITS gGmbH) || 22, 20&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization, Sentiment Analysis and Topic Models || Jacob Eisenstein (Georgia Institute of Technology), Jun Zhao (Chinese Academy of Sciences) || 53, 48&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Barbara Di Eugenio (University of Illinois at Chicago) || 13, 7&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining || Marius Pasca (Google Research), Mihai Surdeanu (University of Arizona) || 54, 49&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || Ting	Liu (Harbin Institute of Technology) || 8, 9&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation || Nicoletta Calzolari (Institute of Computational Linguistics of the National Research Council), Nianwen Xue (Brandeis University) || 31, 28&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontology || Eneko Agirre (University of the Basque Country) || 26, 23&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Kevin Duh (Nara Institute of Science and Technology), Jason Eisner (Johns Hopkins University) || 39, 15&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Colin Cherry (National Research Council, Canada), Niyu Ge (IBM Research), Liang Huang (City University of New York), Yanjun Ma (Baidu) || 76, 72&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality and Multimodal NLP || Michel Galley (Microsoft Research) || 12, 14&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications and NLP-enabled Technology || Mamoru Komachi (Tokyo Metropolitan University) || 32, 34&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (Johns Hopkins University), Alan Ritter (Carnegie Mellon University) || 29, 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Iryna Gurevych (Technische Universität Darmstadt), Percy Liang (Stanford University), Shiqi Zhao (Baidu) || 53, 37&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Yang Liu (University of Texas at Dallas) || 19, 11&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Scott Wen-tau Yih (Microsoft Research) || 6, 4&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Ciprian Chelba (Google Research) || 9, 10&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Xavier Carreras (Universitat Politecnica de Catalunya), Slav Petrov (Google Research) || 35, 48&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology and Word Segmentation || Grzegorz Kondrak (University of Alberta) || 10, 18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D14/D14-1000.pdf EMNLP 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alessandro Moschitti (Qatar Computing Research Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Walter Daelemans (University of Antwerp), Bo Pang (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, and Segmentation || Tomaž Erjavec (Jožef Stefan Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Gosse Bouma (University of Groningen), Yuji Matsumoto (Nara Institute of Science and Technology) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Jennifer Chu-Carroll (IBM Watson Research Center), Olga Uryupina (University of Trento) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Rada Mihalcea (University of Michigan), Sameer Pradhan (Harvard Medical School) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz (University of Brighton), Dilek Hakkani-Tür (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Ivan Titov (University of Amsterdam), Jerry Zhu (University of Wisconsin-Madison) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Chris Callison-Burch (University of Pennsylvania), Dan Gildea (University of Rochester) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, Text Categorization, and Question Answering || Sien Moens (Katholieke Universiteit Leuven), Hinrich Schütze (Ludwig Maximilian University of M&lt;br /&gt;
unich) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Marius Pasca (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Massimiliano Ciaramita (Google), Hwee Tou Ng (National University of Singapore) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University), Minlie Huang (Tsinghua University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Irwin King (The Chinese University of Hong Kong), Qiaozhu Mei (University of Michigan) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Pascale Fung (Hong Kong University of Science and Technology), Hugo Van hamme (Katholieke Universiteit Leuven) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Psycholinguistics || Sharon Goldwater (University of Edinburgh) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2013 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modelling and Psycholinguistics || * || 13, 12&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems ||  || 15, 10&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference, and Pragmatics ||  || 28, 19&lt;br /&gt;
|-&lt;br /&gt;
| Evaluation Methods ||  || 11, 15&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||  || 20, 20&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources ||  || 24, 27&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontologies ||  || 25, 25&lt;br /&gt;
|-&lt;br /&gt;
| Low Resource Language Processing ||  || 10, 13&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Methods, Applications and Evaluations ||  || 50, 58&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Statistical Models ||  || 44, 30&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications ||  || 46, 42&lt;br /&gt;
|-&lt;br /&gt;
| NLP and Creativity ||  || 3, 4&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Languages of Central and Eastern Europe and The Balkans ||  || 2, 8&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media ||  || 32, 26&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering ||  || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Semantics ||  || 50, 32&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification ||  || 46, 60&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing ||  || 9, 12&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods in NLP ||  || 35, 32&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||  || 31, 23&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing ||  || 39, 43&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Chunking ||  || 12, 13&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Information Extraction ||  || 68, 53&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation ||  || 13, 15&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for ACL 2013: &lt;br /&gt;
&lt;br /&gt;
Frank Keller, Roger Levy, Amanda Stent, David Suendermann, Andrew Kehler, Becky Passonneau, Hang Li, Nancy Ide, Piek Vossen, Philipp Cimiano, Sabine Schulte im Walde, Dekang Lin, Chiori Hori, Keh-Yih Su, Roland Kuhn, Dekai Wu, Benjamin Snyder, Thamar Solorio, Ehud Reiter, Massimiliano Ciaramita, Ken Church, Carlo Strapparava, Tomaz Erjavec, Adam Prziepiorkowski, Patrick Pantel, Owen Rambow, Chris Dyer, Jason Eisner, Jennifer Chu-Carroll, Bernardo Magnini, Lluis Marquez, Alessandro Moschitti, Claire Cardie, Rada Mihalcea, Dilek Hakkani-Tur, Walter Daelemans, Dan Roth, Alex Koller, Ani Nenkova, Jamie Henderson, Sadao Kurohashi, Yuji Matsumoto, Heng Ji, Marie-Francine Moens, Hwee Tou Ng&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D13/D13-1000.pdf EMNLP 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || David Yarowsky (John Hopkins University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Timothy Baldwin (University of Melbourne, Australia), Anna Korhonen (University of Cambridge, UK) || &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, Tagging, Chunking and Segmentation || Kemal Oflazer (Carnegie Mellon University Qatar), Anna Feldman (Montclair State University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Jennifer Foster (Dublin City University, Ireland), Yoav Goldberg (Bar Ilan University, Israel) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Mark Stevenson (University of Sheffield, UK), Luke Zettlemoyer (University of Washington, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Carolyn Rose (Carnegie Mellon University, USA), Matt Purver (Queen Mary, University of London, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language resources || Emily M. Bender (University of Washington, USA), Aline Villavicencio (Federal University of Rio Grande do Sul, Brazil) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Dragomir Radev (University of Michigan, USA), Yang Liu (University of Texas at Dallas, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Amir Globerson (The Hebrew University of Jerusalem, Israel), Antal van den Bosch (Radboud University &lt;br /&gt;
Nijmegen, Netherlands) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Taro Watanabe (NICT, Japan), Kevin Knight (Information Sciences Institute, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Bernardo Magnini (Fondazione Bruno Kessler, Italy), Soumen Chakrabarti (Indian Institute of Technology, India) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Mausam (Indian Institute of Technology, India), Heng Ji (City University of New York, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li (Institute for Infocomm Research, Singapore), Amanda Stent (AT&amp;amp;T Labs, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Hang Li (Huawei Noah’s Ark Lab, Hong Kong), Kevin Cohen (University of Colorado School of Medicine, USA) &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Janyce Weibe (University of Pittsburgh, USA), Bing Liu (University of Illinois at Chicago, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (University of Edinburgh, UK), Chin-Yew Lin (Microsoft Research Asia, China) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Models of Human Language Acquisition and Processing || Alessandro Lenci (University of Pisa, Italy), Afra Alishahi (Tilburg University, Netherlands) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N13/N13-1000.pdf NAACL 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Lucy Vanderwende (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hal Daumé III (University of Maryland), Katrin Kirchhoff (University of Washington) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology, Word Segmentation || Markus Dreyer (SDL Language Weaver) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax, Tagging, Chunking and Parsing || Joakim Nivre (Uppsala University), James Henderson (Université de Genève) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Percy Liang (Stanford University), Peter Turney (National Research Council of Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Multimodal NLP || Srinivas Bangalore (AT&amp;amp;T) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, Pragmatics || David Traum (Institute for Creative Technologies), Joyce Chai (Michigan State University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Linguistic Aspects of CL || Vera Demberg (Saarland University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Guy Lapalme ((Université de Montréal) ||&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Johanna Moore (University of Edinburgh) ||&lt;br /&gt;
|-&lt;br /&gt;
| ML for Language Processing || Phil Blunsom (University of Oxford), Mark Dredze (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Alon Lavie (Carnegie Mellon University), Marine Carpuat (National Research Council of Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and QA || Eugene Agichtein (Emory University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Sanda Harabagiu (University of Texas at Dallas) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Zak Shafran (Oregon Health and Science University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Bo Pang (Cornell University), Theresa Wilson (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-enabled Technology || David Bean (TDW) ||&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization and Topic Clustering || Jordan Boyd-Graber (University of Maryland) ||&lt;br /&gt;
|-&lt;br /&gt;
| Social Media Analysis and Processing || Bill Dolan (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation Methods || Ani Nenkova (University of Pennsylvania) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2012 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Dialogue || Mikio Nakano, Andrei Popescu-Belis || 39, 23&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Information Retrieval || Jian Su, Jianfeng Gao, Vincent Ng || 64, 37&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Fei Xia || 15, 13&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics || Evgeniy Gabrilovich, Naoaki Okazaki || 38, 31&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon and Ontology ||  Eneko Agirre || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning || Trevor Cohn, Mark Dredze || 56, 28&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Marcello Federico, Adam Lopez, David Talbot, Hua Wu || 75, 56&lt;br /&gt;
|-&lt;br /&gt;
| Multilingual || Daniel M. Bikel, Mona T. Diab || 31, 15&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications || Jason Baldridge, David Weir || 41, 18&lt;br /&gt;
|-&lt;br /&gt;
| Syntax/Parsing || Stephen Clark, Liang Huang || 64, 36&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Hongyuan Zha, Hsin-Hsi Chen || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Social Media and Sentiment || Noah Smith, Jan Wiebe || 51, 32&lt;br /&gt;
|-&lt;br /&gt;
| Speech || Chung-Hsien Wu || 16, 12&lt;br /&gt;
|-&lt;br /&gt;
| Summarization &amp;amp; Generation || Anja Belz, Ani Nenkova || 20, 23&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation, Morphology and Phonology || Kemal Oflazer || 36, 23&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D12/D12-1000.pdf EMNLP 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jun’ichi Tsujii (Microsoft Research Asia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || James Henderson (Xerox Research Centre Europe), Marius Pasca (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2012:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yejin Choi (Stony Brook University), Hal Daume III (University of Maryland), Doug Downey (Northwestern University), Chris Dyer (Carnegie Mellon University), Adria de Gispert (University of Cambridge), Julia Hirschberg (Columbia University), Anna Korhonen (University of Cambridge), Bing Liu (University of Illinois at Chicago), Hwee Tou Ng (National University of Singapore), Patrick Pantel (Microsoft Research), Marco Pennacchiotti (Yahoo! Labs), Slav Petrov (Google), Simone Paolo Ponzetto (Sapienza University of Rome), John Prager (IBM Research), Chris Quirk (Microsoft Research), Sebastian Riedel (University of Massachusetts at Amherst), Hiroya Takamura (Tokyo Institute of Technology), Partha Talukdar (Carnegie Mellon University), Carnegie Mellon University (Microsoft Research), Reut Tsarfaty (Uppsala University), Marilyn Walker (University of California at Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N12/N12-1000.pdf NAACL 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jennifer Chu-Carroll (IBM T.J. Watson Research Center) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Eric Fosler-Lussier (The Ohio State University), Ellen Riloff (University of Utah) || &lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Roberto Basili (University of Rome) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Guiseppe Carenini (University of British Columbia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources Novel Evaluation Methods || Christy Doran (MITRE) ||&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology Word Segmentation || Jason Eisner (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || George Foster (National Research Council Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Social Media Analysis and Processing || Roxana Girju (University of Illinois Urbana-Champaign) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Heng Ji (City University of New York) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntactic Tagging and Chunking || Sadao Kurohashi (Kyoto University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Matt Lease (University of Texas Austin) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse Dialogue and Pragmatics || Diane Litman (University of Pittsburgh) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Deepak Ravichandran (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Guiseppe Ricardi (University of Trento), Richard Rose (McGill University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Giorgio Satta (University of Padova) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Fei Sha (University of Southern California) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Suzanne Stevenson (University of Toronto) ||&lt;br /&gt;
|-&lt;br /&gt;
| End-to-end Language Processing Systems || David Traum (University of Southern California) ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Scott Yih (Microsoft) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Luke Zettlemoyer (University of Washington) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Bowen Zhou (IBM) ||&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization/Topic Clustering || Jerry Zhu (University of Wisconsin) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2011 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Anna Feldman, Greg Kondrak || 34,22&lt;br /&gt;
|-&lt;br /&gt;
|Syntax and Parsing || Xavier Carreras, Ryan McDonald  || 56,48&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Diana McCarthy, Deniz Yuret || 48, 41&lt;br /&gt;
|-&lt;br /&gt;
|Discourse, Dialogue, and Pragmatics || Kentaro Inui, Svetlana Stoyanchev|| 31, 23&lt;br /&gt;
|-&lt;br /&gt;
|Summarization and Generation || Yang Liu, Manabu Okumura  || 36, 35&lt;br /&gt;
|- &lt;br /&gt;
|Statistical and Machine Learning Methods ||Lluis Marquez, Alessandro Moschitti || 42, 27&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Statistical Models ||Shankar Kumar, Taro Watanabe || 56, 39&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Methods, Applications and Evaluations ||Elliott Macklovitch, Michel Simard || 33, 53&lt;br /&gt;
|-&lt;br /&gt;
|Information Retrieval ||  Fabrizio Sebastiani || 26, 11&lt;br /&gt;
|-&lt;br /&gt;
|Question Answering || Bernardo Magnini  || 19, 10&lt;br /&gt;
|-&lt;br /&gt;
|Text Mining and Information Extraction || Razvan Bunescu, Alexander Yates || 51, 38&lt;br /&gt;
|-&lt;br /&gt;
|Sentiment Analysis, Opinion Mining and Text Classification ||Katja Markert, Xiaojun Wan || 45, 38&lt;br /&gt;
|-&lt;br /&gt;
|Spoken Language Processing || Pascale Fung || 20, 13&lt;br /&gt;
|-&lt;br /&gt;
|Natural Language Processing Applications || Vasile Rus || 30, 51&lt;br /&gt;
|-&lt;br /&gt;
|Language Resources || Chu-Ren Huang, Dan Tufis|| 32, 26&lt;br /&gt;
|-&lt;br /&gt;
|Multilinguality || Thamar Solorio || 24, 16&lt;br /&gt;
|-&lt;br /&gt;
|NLP for Web 2.0 || Vivi Nastase || 31, 16&lt;br /&gt;
|-&lt;br /&gt;
|Linguistic Creativity || Carlo Strapparava || 20, 17&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D11/D11-1000.pdf EMNLP 2011] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Paola Merlo (University of Geneva) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Regina Barzilay (Massachusetts Institute of Technology), Mark Johnson (Macquarie University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2011:&lt;br /&gt;
&lt;br /&gt;
Emily M. Bender (University of Washington), Phil Blunsom (University of Oxford), Eugene Charniak (Brown University), Chris Dyer (Carnegie Mellon University), Jenny Finkel (Columbia University), Radu Florian (IBM Watson Research Center), Amir Globerson (The Hebrew University of Jerusalem), Keith Hall (Google Research), Minlie Huang (Tsinghua University), Katrin Kirchhoff (University of Washington), Mirella Lapata (University of Edinburgh), Chin-Yew Lin (Microsoft Research Asia), Bo Pang (Yahoo! Research), Stefan Riezler (University of Heidelberg), Ellen Riloff (University of Utah), Hinrich Schuetze (University of Stuttgart), Jian Su (Institute for Infocomm Research), Dekai Wu (Hong Kong University of Science and Technology), Luke Zettlemoyer (University of Washington)&lt;br /&gt;
&lt;br /&gt;
== ACL 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long + short)&lt;br /&gt;
|- &lt;br /&gt;
| Lexical semantics || Tim Baldwin, Roberto Navigli || 87&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning|| Phil Blunsom, Walter Daelemans || 87&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction|| Kalina Bontcheva, Hang Li || 52&lt;br /&gt;
|-&lt;br /&gt;
| Formal semantics || Johan Bos || 24&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis || Claire Cardie, Theresa Wilson|| 69&lt;br /&gt;
|-&lt;br /&gt;
| Text mining || Rob Gaizauskas || 30&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Keith Hall, Chris Quirk|| 100&lt;br /&gt;
|-&lt;br /&gt;
| Speech processing|| Julia Hirschberg|| 33&lt;br /&gt;
|-&lt;br /&gt;
| Resources|| Nancy Ide|| 50&lt;br /&gt;
|-&lt;br /&gt;
| Multi-modal||Michael Johnston || 18&lt;br /&gt;
|-&lt;br /&gt;
| Psycholinguistics ||Roger Levy || 16&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering and paraphrasing|| Chin-Yew Lin || 40&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, grammatical inference, syntax||Yusuke Miyao, Khalil Sima&#039;an  || 88&lt;br /&gt;
|-&lt;br /&gt;
| Generation and summarisation || Ani Nenkova, Bonnie Webber|| 55&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and dialogue ||Jon Oberlander, Matthew Stone|| 56 &lt;br /&gt;
|-&lt;br /&gt;
| Mathematical linguistics||Stuart Shieber || 29&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, segmentation and morphology||Richard Sproat || 51&lt;br /&gt;
|-&lt;br /&gt;
| Bioinformatics || Jun&#039;ichi Tsujii|| 12&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || ChengXiang Zhai|| 33&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|- &lt;br /&gt;
| Machine Translation || Chris Callison-Burch, Qun Liu || 109&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Sebastian Pado, Takenobu Tokunaga || 102&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Text Classification || Bo Pang || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Gary Geunbae Lee || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Rosie Jones || 55&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Donia Scott || 53&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and NLP Applications || Ming Zhou || 50&lt;br /&gt;
|-&lt;br /&gt;
| Parsing || Sadao Kurohashi || 48&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods || David A Smith || 42&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Nicoletta Calzolari || 38&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Pragmatics || Caroline Sporleder || 38&lt;br /&gt;
|-&lt;br /&gt;
| Chinese Natural Language Processing || Nianwen Xue  || 34&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Morphology-Phonology || Rajeev Sangal || 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Grammar || Emily Bender || 28&lt;br /&gt;
|-&lt;br /&gt;
| Multilingualism || Pierre Isabelle || 26&lt;br /&gt;
|-&lt;br /&gt;
| Dialog and Multimodal || Justine Cassell || 16&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li || 9&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling || Roger Levy || 9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D10/D10-1000.pdf EMNLP 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hang Li (Microsoft Research Asia), Llu´ıs Marquez (Technical University of Catalonia) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2010:&lt;br /&gt;
&lt;br /&gt;
Eneko Agirre (University of the Basque Country), Kalina Bontcheva (University of Sheffield), Antal van den Bosch (Tilburg University), David Chiang (USC Information Sciences Institute), Jennifer Chu-Carroll (IBM Research), Evgeniy Gabrilovich (Yahoo! Research), Jianfeng Gao (Microsoft Research), Julio Gonzalo (UNED), Nancy Ide (Vassar College), Haizhou Li (Institute for Infocomm Research), Qun Liu (ICT, Chinese Academy of Sciences), Yusuke Miyao (National Institute of Informatics), Bo Pang (Yahoo! Research), Dragomir Radev (University of Michigan), Noah Smith (Carnegie Mellon University), Kristina Toutanova (Microsoft Research), Yoshimasa Tsuruoka (JAIST), Yi Zhang (University of California, Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N10/N10-1000.pdf NAACL 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Ronald Kaplan (Microsoft Bing) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Jill Burstein (Educational Testing Service), Mary Harper (University of Maryland and The Johns Hopkins University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for NAACL 2010:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yaser Al-Onaizan (IBM), Ciprian Chelba (Google), Mona Diab (Columbia University), Barbara Di Eugenio (University of Illinois at Chicago), Eric Fosler-Lussier (Ohio State University), Makoto Kanazawa (National Institute of Informatics, Tokyo), Damianos Karakos (Johns Hopkins University), Philip Koehn (University of Edinburgh), Mike Maxwell (University of Maryland), Diana McCarthy (Lexical Computing Ltd), Ani Nenkova (University of Pennsylvania), Stefan Oepen (University of Oslo), Dan Roth (University of Illinois at Urbana-Champaign), Noah Smith (Carnegie Mellon University), Amanda Stent (AT&amp;amp;T), Joel Tetreault (Educational Testing Service), Jan Wiebe (University of Pittsburgh)&lt;br /&gt;
&lt;br /&gt;
== ACL 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Greg Kondrak|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Noah Smith, James Curran || 47&lt;br /&gt;
|-&lt;br /&gt;
| Semantics|| Eneko Agirre, Rada Mihalcea|| 67&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Massimo Poesio, Michael Strube|| 41&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz|| 44&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods|| Jianfeng Gao, Jun Suzuki||36&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Hai Feng Wang, Philipp Koehn||80&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||Hsin-Hsi Chen ||29&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Ellen Riloff, Satoshi Sekine||52&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Giuseppe Carenini || 44&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing|| Helen Meng|| 20&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering|| Sanda Harabagiu|| 23&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications||Sophi Ananiadou ||19&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Keh-Jiann Chen || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== EMNLP 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Jason Eisner || 24&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Steve Clark|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics||Vivi Nastase || 45&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Tim Paek|| 28&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||Chin-Yew Lin || 25&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods||Miles Osborne ||32&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Adam Lopez ||68&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering||Hang Li ||33&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining||Marius Pasca ||39&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Theresa Wilson || 37&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing||Eric Fosler-Lussier || 11&lt;br /&gt;
|-&lt;br /&gt;
| Natural Language Processing Applications||Carlo Strapparava ||22&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Katrin Erk || 26&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality|| Mona Diab||22&lt;br /&gt;
|-&lt;br /&gt;
| NLP for Web 2.0|| Iryna Gurevych||20&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2008 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon, lexical semantics, word sense disambiguation || Paul Buitelaar || 45&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Stephen Pulman Mary Dalrymple || 46&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, dialogue || Eva Hajicova || 24&lt;br /&gt;
|-&lt;br /&gt;
| NLG, summarisation || Robert Dale || 36&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, morphology, grammar learning || Mark Johnson || 68&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation and Multilinguality || Pierre Isabelle, Miles Osborne || 86&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, text and web mining, multimedia || Junichi Tsujii || 54&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction, opinion and sentiment Analysis || Rob Gaizauskus || 24&lt;br /&gt;
|-&lt;br /&gt;
| Paraphrasing and Textual Entailment || Bill Dolan || 21&lt;br /&gt;
|-&lt;br /&gt;
| Speech and multimodality || Julia Hirschberg || 16&lt;br /&gt;
|-&lt;br /&gt;
| Resources || Chu-Ren Huang || 56&lt;br /&gt;
|-&lt;br /&gt;
| Learning || Dan Roth || 29&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11145</id>
		<title>Areas, chairs, and area submissions</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11145"/>
		<updated>2015-07-04T01:13:43Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: NAACL 2012&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.aclweb.org/anthology/P/P14/P14-1000.pdf ACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair  || Daniel Marcu (ISI/USC) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Kristina Toutanova (Microsoft Research), Hua Wu (Baidu) ||&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling and Psycholinguistics || Klinton Bicknell (Northwestern University) || 9, 14&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems || Asli Celikyilmaz (Microsoft Research) || 10, 8&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference and Pragmatics || Micha Elsner (Ohio State University), Michael Strube (HITS gGmbH) || 22, 20&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization, Sentiment Analysis and Topic Models || Jacob Eisenstein (Georgia Institute of Technology), Jun Zhao (Chinese Academy of Sciences) || 53, 48&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Barbara Di Eugenio (University of Illinois at Chicago) || 13, 7&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining || Marius Pasca (Google Research), Mihai Surdeanu (University of Arizona) || 54, 49&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || Ting	Liu (Harbin Institute of Technology) || 8, 9&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation || Nicoletta Calzolari (Institute of Computational Linguistics of the National Research Council), Nianwen Xue (Brandeis University) || 31, 28&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontology || Eneko Agirre (University of the Basque Country) || 26, 23&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Kevin Duh (Nara Institute of Science and Technology), Jason Eisner (Johns Hopkins University) || 39, 15&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Colin Cherry (National Research Council, Canada), Niyu Ge (IBM Research), Liang Huang (City University of New York), Yanjun Ma (Baidu) || 76, 72&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality and Multimodal NLP || Michel Galley (Microsoft Research) || 12, 14&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications and NLP-enabled Technology || Mamoru Komachi (Tokyo Metropolitan University) || 32, 34&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (Johns Hopkins University), Alan Ritter (Carnegie Mellon University) || 29, 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Iryna Gurevych (Technische Universität Darmstadt), Percy Liang (Stanford University), Shiqi Zhao (Baidu) || 53, 37&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Yang Liu (University of Texas at Dallas) || 19, 11&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Scott Wen-tau Yih (Microsoft Research) || 6, 4&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Ciprian Chelba (Google Research) || 9, 10&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Xavier Carreras (Universitat Politecnica de Catalunya), Slav Petrov (Google Research) || 35, 48&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology and Word Segmentation || Grzegorz Kondrak (University of Alberta) || 10, 18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D14/D14-1000.pdf EMNLP 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alessandro Moschitti (Qatar Computing Research Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Walter Daelemans (University of Antwerp), Bo Pang (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, and Segmentation || Tomaž Erjavec (Jožef Stefan Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Gosse Bouma (University of Groningen), Yuji Matsumoto (Nara Institute of Science and Technology) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Jennifer Chu-Carroll (IBM Watson Research Center), Olga Uryupina (University of Trento) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Rada Mihalcea (University of Michigan), Sameer Pradhan (Harvard Medical School) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz (University of Brighton), Dilek Hakkani-Tür (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Ivan Titov (University of Amsterdam), Jerry Zhu (University of Wisconsin-Madison) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Chris Callison-Burch (University of Pennsylvania), Dan Gildea (University of Rochester) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, Text Categorization, and Question Answering || Sien Moens (Katholieke Universiteit Leuven), Hinrich Schütze (Ludwig Maximilian University of M&lt;br /&gt;
unich) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Marius Pasca (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Massimiliano Ciaramita (Google), Hwee Tou Ng (National University of Singapore) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University), Minlie Huang (Tsinghua University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Irwin King (The Chinese University of Hong Kong), Qiaozhu Mei (University of Michigan) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Pascale Fung (Hong Kong University of Science and Technology), Hugo Van hamme (Katholieke Universiteit Leuven) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Psycholinguistics || Sharon Goldwater (University of Edinburgh) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2013 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modelling and Psycholinguistics || * || 13, 12&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems ||  || 15, 10&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference, and Pragmatics ||  || 28, 19&lt;br /&gt;
|-&lt;br /&gt;
| Evaluation Methods ||  || 11, 15&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||  || 20, 20&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources ||  || 24, 27&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontologies ||  || 25, 25&lt;br /&gt;
|-&lt;br /&gt;
| Low Resource Language Processing ||  || 10, 13&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Methods, Applications and Evaluations ||  || 50, 58&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Statistical Models ||  || 44, 30&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications ||  || 46, 42&lt;br /&gt;
|-&lt;br /&gt;
| NLP and Creativity ||  || 3, 4&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Languages of Central and Eastern Europe and The Balkans ||  || 2, 8&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media ||  || 32, 26&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering ||  || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Semantics ||  || 50, 32&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification ||  || 46, 60&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing ||  || 9, 12&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods in NLP ||  || 35, 32&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||  || 31, 23&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing ||  || 39, 43&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Chunking ||  || 12, 13&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Information Extraction ||  || 68, 53&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation ||  || 13, 15&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for ACL 2013: &lt;br /&gt;
&lt;br /&gt;
Frank Keller, Roger Levy, Amanda Stent, David Suendermann, Andrew Kehler, Becky Passonneau, Hang Li, Nancy Ide, Piek Vossen, Philipp Cimiano, Sabine Schulte im Walde, Dekang Lin, Chiori Hori, Keh-Yih Su, Roland Kuhn, Dekai Wu, Benjamin Snyder, Thamar Solorio, Ehud Reiter, Massimiliano Ciaramita, Ken Church, Carlo Strapparava, Tomaz Erjavec, Adam Prziepiorkowski, Patrick Pantel, Owen Rambow, Chris Dyer, Jason Eisner, Jennifer Chu-Carroll, Bernardo Magnini, Lluis Marquez, Alessandro Moschitti, Claire Cardie, Rada Mihalcea, Dilek Hakkani-Tur, Walter Daelemans, Dan Roth, Alex Koller, Ani Nenkova, Jamie Henderson, Sadao Kurohashi, Yuji Matsumoto, Heng Ji, Marie-Francine Moens, Hwee Tou Ng&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D13/D13-1000.pdf EMNLP 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || David Yarowsky (John Hopkins University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Timothy Baldwin (University of Melbourne, Australia), Anna Korhonen (University of Cambridge, UK) || &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, Tagging, Chunking and Segmentation || Kemal Oflazer (Carnegie Mellon University Qatar), Anna Feldman (Montclair State University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Jennifer Foster (Dublin City University, Ireland), Yoav Goldberg (Bar Ilan University, Israel) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Mark Stevenson (University of Sheffield, UK), Luke Zettlemoyer (University of Washington, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Carolyn Rose (Carnegie Mellon University, USA), Matt Purver (Queen Mary, University of London, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language resources || Emily M. Bender (University of Washington, USA), Aline Villavicencio (Federal University of Rio Grande do Sul, Brazil) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Dragomir Radev (University of Michigan, USA), Yang Liu (University of Texas at Dallas, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Amir Globerson (The Hebrew University of Jerusalem, Israel), Antal van den Bosch (Radboud University &lt;br /&gt;
Nijmegen, Netherlands) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Taro Watanabe (NICT, Japan), Kevin Knight (Information Sciences Institute, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Bernardo Magnini (Fondazione Bruno Kessler, Italy), Soumen Chakrabarti (Indian Institute of Technology, India) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Mausam (Indian Institute of Technology, India), Heng Ji (City University of New York, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li (Institute for Infocomm Research, Singapore), Amanda Stent (AT&amp;amp;T Labs, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Hang Li (Huawei Noah’s Ark Lab, Hong Kong), Kevin Cohen (University of Colorado School of Medicine, USA) &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Janyce Weibe (University of Pittsburgh, USA), Bing Liu (University of Illinois at Chicago, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (University of Edinburgh, UK), Chin-Yew Lin (Microsoft Research Asia, China) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Models of Human Language Acquisition and Processing || Alessandro Lenci (University of Pisa, Italy), Afra Alishahi (Tilburg University, Netherlands) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2012 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Dialogue || Mikio Nakano, Andrei Popescu-Belis || 39, 23&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Information Retrieval || Jian Su, Jianfeng Gao, Vincent Ng || 64, 37&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Fei Xia || 15, 13&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics || Evgeniy Gabrilovich, Naoaki Okazaki || 38, 31&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon and Ontology ||  Eneko Agirre || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning || Trevor Cohn, Mark Dredze || 56, 28&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Marcello Federico, Adam Lopez, David Talbot, Hua Wu || 75, 56&lt;br /&gt;
|-&lt;br /&gt;
| Multilingual || Daniel M. Bikel, Mona T. Diab || 31, 15&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications || Jason Baldridge, David Weir || 41, 18&lt;br /&gt;
|-&lt;br /&gt;
| Syntax/Parsing || Stephen Clark, Liang Huang || 64, 36&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Hongyuan Zha, Hsin-Hsi Chen || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Social Media and Sentiment || Noah Smith, Jan Wiebe || 51, 32&lt;br /&gt;
|-&lt;br /&gt;
| Speech || Chung-Hsien Wu || 16, 12&lt;br /&gt;
|-&lt;br /&gt;
| Summarization &amp;amp; Generation || Anja Belz, Ani Nenkova || 20, 23&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation, Morphology and Phonology || Kemal Oflazer || 36, 23&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D12/D12-1000.pdf EMNLP 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jun’ichi Tsujii (Microsoft Research Asia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || James Henderson (Xerox Research Centre Europe), Marius Pasca (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2012:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yejin Choi (Stony Brook University), Hal Daume III (University of Maryland), Doug Downey (Northwestern University), Chris Dyer (Carnegie Mellon University), Adria de Gispert (University of Cambridge), Julia Hirschberg (Columbia University), Anna Korhonen (University of Cambridge), Bing Liu (University of Illinois at Chicago), Hwee Tou Ng (National University of Singapore), Patrick Pantel (Microsoft Research), Marco Pennacchiotti (Yahoo! Labs), Slav Petrov (Google), Simone Paolo Ponzetto (Sapienza University of Rome), John Prager (IBM Research), Chris Quirk (Microsoft Research), Sebastian Riedel (University of Massachusetts at Amherst), Hiroya Takamura (Tokyo Institute of Technology), Partha Talukdar (Carnegie Mellon University), Carnegie Mellon University (Microsoft Research), Reut Tsarfaty (Uppsala University), Marilyn Walker (University of California at Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N12/N12-1000.pdf NAACL 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jennifer Chu-Carroll (IBM T.J. Watson Research Center) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Eric Fosler-Lussier (The Ohio State University), Ellen Riloff (University of Utah) || &lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Roberto Basili (University of Rome) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Guiseppe Carenini (University of British Columbia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources Novel Evaluation Methods || Christy Doran (MITRE) ||&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology Word Segmentation || Jason Eisner (Johns Hopkins University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || George Foster (National Research Council Canada) ||&lt;br /&gt;
|-&lt;br /&gt;
| Social Media Analysis and Processing || Roxana Girju (University of Illinois Urbana-Champaign) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Heng Ji (City University of New York) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntactic Tagging and Chunking || Sadao Kurohashi (Kyoto University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Matt Lease (University of Texas Austin) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse Dialogue and Pragmatics || Diane Litman (University of Pittsburgh) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Deepak Ravichandran (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Guiseppe Ricardi (University of Trento), Richard Rose (McGill University) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Giorgio Satta (University of Padova) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Fei Sha (University of Southern California) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Suzanne Stevenson (University of Toronto) ||&lt;br /&gt;
|-&lt;br /&gt;
| End-to-end Language Processing Systems || David Traum (University of Southern California) ||&lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Scott Yih (Microsoft) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Luke Zettlemoyer (University of Washington) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Bowen Zhou (IBM) ||&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization/Topic Clustering || Jerry Zhu (University of Wisconsin) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2011 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Anna Feldman, Greg Kondrak || 34,22&lt;br /&gt;
|-&lt;br /&gt;
|Syntax and Parsing || Xavier Carreras, Ryan McDonald  || 56,48&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Diana McCarthy, Deniz Yuret || 48, 41&lt;br /&gt;
|-&lt;br /&gt;
|Discourse, Dialogue, and Pragmatics || Kentaro Inui, Svetlana Stoyanchev|| 31, 23&lt;br /&gt;
|-&lt;br /&gt;
|Summarization and Generation || Yang Liu, Manabu Okumura  || 36, 35&lt;br /&gt;
|- &lt;br /&gt;
|Statistical and Machine Learning Methods ||Lluis Marquez, Alessandro Moschitti || 42, 27&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Statistical Models ||Shankar Kumar, Taro Watanabe || 56, 39&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Methods, Applications and Evaluations ||Elliott Macklovitch, Michel Simard || 33, 53&lt;br /&gt;
|-&lt;br /&gt;
|Information Retrieval ||  Fabrizio Sebastiani || 26, 11&lt;br /&gt;
|-&lt;br /&gt;
|Question Answering || Bernardo Magnini  || 19, 10&lt;br /&gt;
|-&lt;br /&gt;
|Text Mining and Information Extraction || Razvan Bunescu, Alexander Yates || 51, 38&lt;br /&gt;
|-&lt;br /&gt;
|Sentiment Analysis, Opinion Mining and Text Classification ||Katja Markert, Xiaojun Wan || 45, 38&lt;br /&gt;
|-&lt;br /&gt;
|Spoken Language Processing || Pascale Fung || 20, 13&lt;br /&gt;
|-&lt;br /&gt;
|Natural Language Processing Applications || Vasile Rus || 30, 51&lt;br /&gt;
|-&lt;br /&gt;
|Language Resources || Chu-Ren Huang, Dan Tufis|| 32, 26&lt;br /&gt;
|-&lt;br /&gt;
|Multilinguality || Thamar Solorio || 24, 16&lt;br /&gt;
|-&lt;br /&gt;
|NLP for Web 2.0 || Vivi Nastase || 31, 16&lt;br /&gt;
|-&lt;br /&gt;
|Linguistic Creativity || Carlo Strapparava || 20, 17&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D11/D11-1000.pdf EMNLP 2011] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Paola Merlo (University of Geneva) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Regina Barzilay (Massachusetts Institute of Technology), Mark Johnson (Macquarie University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2011:&lt;br /&gt;
&lt;br /&gt;
Emily M. Bender (University of Washington), Phil Blunsom (University of Oxford), Eugene Charniak (Brown University), Chris Dyer (Carnegie Mellon University), Jenny Finkel (Columbia University), Radu Florian (IBM Watson Research Center), Amir Globerson (The Hebrew University of Jerusalem), Keith Hall (Google Research), Minlie Huang (Tsinghua University), Katrin Kirchhoff (University of Washington), Mirella Lapata (University of Edinburgh), Chin-Yew Lin (Microsoft Research Asia), Bo Pang (Yahoo! Research), Stefan Riezler (University of Heidelberg), Ellen Riloff (University of Utah), Hinrich Schuetze (University of Stuttgart), Jian Su (Institute for Infocomm Research), Dekai Wu (Hong Kong University of Science and Technology), Luke Zettlemoyer (University of Washington)&lt;br /&gt;
&lt;br /&gt;
== ACL 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long + short)&lt;br /&gt;
|- &lt;br /&gt;
| Lexical semantics || Tim Baldwin, Roberto Navigli || 87&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning|| Phil Blunsom, Walter Daelemans || 87&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction|| Kalina Bontcheva, Hang Li || 52&lt;br /&gt;
|-&lt;br /&gt;
| Formal semantics || Johan Bos || 24&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis || Claire Cardie, Theresa Wilson|| 69&lt;br /&gt;
|-&lt;br /&gt;
| Text mining || Rob Gaizauskas || 30&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Keith Hall, Chris Quirk|| 100&lt;br /&gt;
|-&lt;br /&gt;
| Speech processing|| Julia Hirschberg|| 33&lt;br /&gt;
|-&lt;br /&gt;
| Resources|| Nancy Ide|| 50&lt;br /&gt;
|-&lt;br /&gt;
| Multi-modal||Michael Johnston || 18&lt;br /&gt;
|-&lt;br /&gt;
| Psycholinguistics ||Roger Levy || 16&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering and paraphrasing|| Chin-Yew Lin || 40&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, grammatical inference, syntax||Yusuke Miyao, Khalil Sima&#039;an  || 88&lt;br /&gt;
|-&lt;br /&gt;
| Generation and summarisation || Ani Nenkova, Bonnie Webber|| 55&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and dialogue ||Jon Oberlander, Matthew Stone|| 56 &lt;br /&gt;
|-&lt;br /&gt;
| Mathematical linguistics||Stuart Shieber || 29&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, segmentation and morphology||Richard Sproat || 51&lt;br /&gt;
|-&lt;br /&gt;
| Bioinformatics || Jun&#039;ichi Tsujii|| 12&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || ChengXiang Zhai|| 33&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|- &lt;br /&gt;
| Machine Translation || Chris Callison-Burch, Qun Liu || 109&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Sebastian Pado, Takenobu Tokunaga || 102&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Text Classification || Bo Pang || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Gary Geunbae Lee || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Rosie Jones || 55&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Donia Scott || 53&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and NLP Applications || Ming Zhou || 50&lt;br /&gt;
|-&lt;br /&gt;
| Parsing || Sadao Kurohashi || 48&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods || David A Smith || 42&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Nicoletta Calzolari || 38&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Pragmatics || Caroline Sporleder || 38&lt;br /&gt;
|-&lt;br /&gt;
| Chinese Natural Language Processing || Nianwen Xue  || 34&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Morphology-Phonology || Rajeev Sangal || 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Grammar || Emily Bender || 28&lt;br /&gt;
|-&lt;br /&gt;
| Multilingualism || Pierre Isabelle || 26&lt;br /&gt;
|-&lt;br /&gt;
| Dialog and Multimodal || Justine Cassell || 16&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li || 9&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling || Roger Levy || 9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D10/D10-1000.pdf EMNLP 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hang Li (Microsoft Research Asia), Llu´ıs Marquez (Technical University of Catalonia) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2010:&lt;br /&gt;
&lt;br /&gt;
Eneko Agirre (University of the Basque Country), Kalina Bontcheva (University of Sheffield), Antal van den Bosch (Tilburg University), David Chiang (USC Information Sciences Institute), Jennifer Chu-Carroll (IBM Research), Evgeniy Gabrilovich (Yahoo! Research), Jianfeng Gao (Microsoft Research), Julio Gonzalo (UNED), Nancy Ide (Vassar College), Haizhou Li (Institute for Infocomm Research), Qun Liu (ICT, Chinese Academy of Sciences), Yusuke Miyao (National Institute of Informatics), Bo Pang (Yahoo! Research), Dragomir Radev (University of Michigan), Noah Smith (Carnegie Mellon University), Kristina Toutanova (Microsoft Research), Yoshimasa Tsuruoka (JAIST), Yi Zhang (University of California, Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N10/N10-1000.pdf NAACL 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Ronald Kaplan (Microsoft Bing) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Jill Burstein (Educational Testing Service), Mary Harper (University of Maryland and The Johns Hopkins University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for NAACL 2010:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yaser Al-Onaizan (IBM), Ciprian Chelba (Google), Mona Diab (Columbia University), Barbara Di Eugenio (University of Illinois at Chicago), Eric Fosler-Lussier (Ohio State University), Makoto Kanazawa (National Institute of Informatics, Tokyo), Damianos Karakos (Johns Hopkins University), Philip Koehn (University of Edinburgh), Mike Maxwell (University of Maryland), Diana McCarthy (Lexical Computing Ltd), Ani Nenkova (University of Pennsylvania), Stefan Oepen (University of Oslo), Dan Roth (University of Illinois at Urbana-Champaign), Noah Smith (Carnegie Mellon University), Amanda Stent (AT&amp;amp;T), Joel Tetreault (Educational Testing Service), Jan Wiebe (University of Pittsburgh)&lt;br /&gt;
&lt;br /&gt;
== ACL 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Greg Kondrak|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Noah Smith, James Curran || 47&lt;br /&gt;
|-&lt;br /&gt;
| Semantics|| Eneko Agirre, Rada Mihalcea|| 67&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Massimo Poesio, Michael Strube|| 41&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz|| 44&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods|| Jianfeng Gao, Jun Suzuki||36&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Hai Feng Wang, Philipp Koehn||80&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||Hsin-Hsi Chen ||29&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Ellen Riloff, Satoshi Sekine||52&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Giuseppe Carenini || 44&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing|| Helen Meng|| 20&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering|| Sanda Harabagiu|| 23&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications||Sophi Ananiadou ||19&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Keh-Jiann Chen || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== EMNLP 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Jason Eisner || 24&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Steve Clark|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics||Vivi Nastase || 45&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Tim Paek|| 28&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||Chin-Yew Lin || 25&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods||Miles Osborne ||32&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Adam Lopez ||68&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering||Hang Li ||33&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining||Marius Pasca ||39&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Theresa Wilson || 37&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing||Eric Fosler-Lussier || 11&lt;br /&gt;
|-&lt;br /&gt;
| Natural Language Processing Applications||Carlo Strapparava ||22&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Katrin Erk || 26&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality|| Mona Diab||22&lt;br /&gt;
|-&lt;br /&gt;
| NLP for Web 2.0|| Iryna Gurevych||20&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2008 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon, lexical semantics, word sense disambiguation || Paul Buitelaar || 45&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Stephen Pulman Mary Dalrymple || 46&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, dialogue || Eva Hajicova || 24&lt;br /&gt;
|-&lt;br /&gt;
| NLG, summarisation || Robert Dale || 36&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, morphology, grammar learning || Mark Johnson || 68&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation and Multilinguality || Pierre Isabelle, Miles Osborne || 86&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, text and web mining, multimedia || Junichi Tsujii || 54&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction, opinion and sentiment Analysis || Rob Gaizauskus || 24&lt;br /&gt;
|-&lt;br /&gt;
| Paraphrasing and Textual Entailment || Bill Dolan || 21&lt;br /&gt;
|-&lt;br /&gt;
| Speech and multimodality || Julia Hirschberg || 16&lt;br /&gt;
|-&lt;br /&gt;
| Resources || Chu-Ren Huang || 56&lt;br /&gt;
|-&lt;br /&gt;
| Learning || Dan Roth || 29&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11144</id>
		<title>Areas, chairs, and area submissions</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11144"/>
		<updated>2015-07-04T01:12:17Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: /* NAACL 2010 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.aclweb.org/anthology/P/P14/P14-1000.pdf ACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair  || Daniel Marcu (ISI/USC) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Kristina Toutanova (Microsoft Research), Hua Wu (Baidu) ||&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling and Psycholinguistics || Klinton Bicknell (Northwestern University) || 9, 14&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems || Asli Celikyilmaz (Microsoft Research) || 10, 8&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference and Pragmatics || Micha Elsner (Ohio State University), Michael Strube (HITS gGmbH) || 22, 20&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization, Sentiment Analysis and Topic Models || Jacob Eisenstein (Georgia Institute of Technology), Jun Zhao (Chinese Academy of Sciences) || 53, 48&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Barbara Di Eugenio (University of Illinois at Chicago) || 13, 7&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining || Marius Pasca (Google Research), Mihai Surdeanu (University of Arizona) || 54, 49&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || Ting	Liu (Harbin Institute of Technology) || 8, 9&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation || Nicoletta Calzolari (Institute of Computational Linguistics of the National Research Council), Nianwen Xue (Brandeis University) || 31, 28&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontology || Eneko Agirre (University of the Basque Country) || 26, 23&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Kevin Duh (Nara Institute of Science and Technology), Jason Eisner (Johns Hopkins University) || 39, 15&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Colin Cherry (National Research Council, Canada), Niyu Ge (IBM Research), Liang Huang (City University of New York), Yanjun Ma (Baidu) || 76, 72&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality and Multimodal NLP || Michel Galley (Microsoft Research) || 12, 14&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications and NLP-enabled Technology || Mamoru Komachi (Tokyo Metropolitan University) || 32, 34&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (Johns Hopkins University), Alan Ritter (Carnegie Mellon University) || 29, 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Iryna Gurevych (Technische Universität Darmstadt), Percy Liang (Stanford University), Shiqi Zhao (Baidu) || 53, 37&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Yang Liu (University of Texas at Dallas) || 19, 11&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Scott Wen-tau Yih (Microsoft Research) || 6, 4&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Ciprian Chelba (Google Research) || 9, 10&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Xavier Carreras (Universitat Politecnica de Catalunya), Slav Petrov (Google Research) || 35, 48&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology and Word Segmentation || Grzegorz Kondrak (University of Alberta) || 10, 18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D14/D14-1000.pdf EMNLP 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alessandro Moschitti (Qatar Computing Research Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Walter Daelemans (University of Antwerp), Bo Pang (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, and Segmentation || Tomaž Erjavec (Jožef Stefan Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Gosse Bouma (University of Groningen), Yuji Matsumoto (Nara Institute of Science and Technology) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Jennifer Chu-Carroll (IBM Watson Research Center), Olga Uryupina (University of Trento) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Rada Mihalcea (University of Michigan), Sameer Pradhan (Harvard Medical School) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz (University of Brighton), Dilek Hakkani-Tür (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Ivan Titov (University of Amsterdam), Jerry Zhu (University of Wisconsin-Madison) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Chris Callison-Burch (University of Pennsylvania), Dan Gildea (University of Rochester) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, Text Categorization, and Question Answering || Sien Moens (Katholieke Universiteit Leuven), Hinrich Schütze (Ludwig Maximilian University of M&lt;br /&gt;
unich) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Marius Pasca (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Massimiliano Ciaramita (Google), Hwee Tou Ng (National University of Singapore) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University), Minlie Huang (Tsinghua University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Irwin King (The Chinese University of Hong Kong), Qiaozhu Mei (University of Michigan) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Pascale Fung (Hong Kong University of Science and Technology), Hugo Van hamme (Katholieke Universiteit Leuven) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Psycholinguistics || Sharon Goldwater (University of Edinburgh) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2013 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modelling and Psycholinguistics || * || 13, 12&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems ||  || 15, 10&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference, and Pragmatics ||  || 28, 19&lt;br /&gt;
|-&lt;br /&gt;
| Evaluation Methods ||  || 11, 15&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||  || 20, 20&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources ||  || 24, 27&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontologies ||  || 25, 25&lt;br /&gt;
|-&lt;br /&gt;
| Low Resource Language Processing ||  || 10, 13&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Methods, Applications and Evaluations ||  || 50, 58&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Statistical Models ||  || 44, 30&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications ||  || 46, 42&lt;br /&gt;
|-&lt;br /&gt;
| NLP and Creativity ||  || 3, 4&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Languages of Central and Eastern Europe and The Balkans ||  || 2, 8&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media ||  || 32, 26&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering ||  || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Semantics ||  || 50, 32&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification ||  || 46, 60&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing ||  || 9, 12&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods in NLP ||  || 35, 32&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||  || 31, 23&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing ||  || 39, 43&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Chunking ||  || 12, 13&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Information Extraction ||  || 68, 53&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation ||  || 13, 15&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for ACL 2013: &lt;br /&gt;
&lt;br /&gt;
Frank Keller, Roger Levy, Amanda Stent, David Suendermann, Andrew Kehler, Becky Passonneau, Hang Li, Nancy Ide, Piek Vossen, Philipp Cimiano, Sabine Schulte im Walde, Dekang Lin, Chiori Hori, Keh-Yih Su, Roland Kuhn, Dekai Wu, Benjamin Snyder, Thamar Solorio, Ehud Reiter, Massimiliano Ciaramita, Ken Church, Carlo Strapparava, Tomaz Erjavec, Adam Prziepiorkowski, Patrick Pantel, Owen Rambow, Chris Dyer, Jason Eisner, Jennifer Chu-Carroll, Bernardo Magnini, Lluis Marquez, Alessandro Moschitti, Claire Cardie, Rada Mihalcea, Dilek Hakkani-Tur, Walter Daelemans, Dan Roth, Alex Koller, Ani Nenkova, Jamie Henderson, Sadao Kurohashi, Yuji Matsumoto, Heng Ji, Marie-Francine Moens, Hwee Tou Ng&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D13/D13-1000.pdf EMNLP 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || David Yarowsky (John Hopkins University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Timothy Baldwin (University of Melbourne, Australia), Anna Korhonen (University of Cambridge, UK) || &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, Tagging, Chunking and Segmentation || Kemal Oflazer (Carnegie Mellon University Qatar), Anna Feldman (Montclair State University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Jennifer Foster (Dublin City University, Ireland), Yoav Goldberg (Bar Ilan University, Israel) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Mark Stevenson (University of Sheffield, UK), Luke Zettlemoyer (University of Washington, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Carolyn Rose (Carnegie Mellon University, USA), Matt Purver (Queen Mary, University of London, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language resources || Emily M. Bender (University of Washington, USA), Aline Villavicencio (Federal University of Rio Grande do Sul, Brazil) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Dragomir Radev (University of Michigan, USA), Yang Liu (University of Texas at Dallas, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Amir Globerson (The Hebrew University of Jerusalem, Israel), Antal van den Bosch (Radboud University &lt;br /&gt;
Nijmegen, Netherlands) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Taro Watanabe (NICT, Japan), Kevin Knight (Information Sciences Institute, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Bernardo Magnini (Fondazione Bruno Kessler, Italy), Soumen Chakrabarti (Indian Institute of Technology, India) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Mausam (Indian Institute of Technology, India), Heng Ji (City University of New York, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li (Institute for Infocomm Research, Singapore), Amanda Stent (AT&amp;amp;T Labs, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Hang Li (Huawei Noah’s Ark Lab, Hong Kong), Kevin Cohen (University of Colorado School of Medicine, USA) &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Janyce Weibe (University of Pittsburgh, USA), Bing Liu (University of Illinois at Chicago, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (University of Edinburgh, UK), Chin-Yew Lin (Microsoft Research Asia, China) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Models of Human Language Acquisition and Processing || Alessandro Lenci (University of Pisa, Italy), Afra Alishahi (Tilburg University, Netherlands) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2012 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Dialogue || Mikio Nakano, Andrei Popescu-Belis || 39, 23&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Information Retrieval || Jian Su, Jianfeng Gao, Vincent Ng || 64, 37&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Fei Xia || 15, 13&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics || Evgeniy Gabrilovich, Naoaki Okazaki || 38, 31&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon and Ontology ||  Eneko Agirre || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning || Trevor Cohn, Mark Dredze || 56, 28&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Marcello Federico, Adam Lopez, David Talbot, Hua Wu || 75, 56&lt;br /&gt;
|-&lt;br /&gt;
| Multilingual || Daniel M. Bikel, Mona T. Diab || 31, 15&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications || Jason Baldridge, David Weir || 41, 18&lt;br /&gt;
|-&lt;br /&gt;
| Syntax/Parsing || Stephen Clark, Liang Huang || 64, 36&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Hongyuan Zha, Hsin-Hsi Chen || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Social Media and Sentiment || Noah Smith, Jan Wiebe || 51, 32&lt;br /&gt;
|-&lt;br /&gt;
| Speech || Chung-Hsien Wu || 16, 12&lt;br /&gt;
|-&lt;br /&gt;
| Summarization &amp;amp; Generation || Anja Belz, Ani Nenkova || 20, 23&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation, Morphology and Phonology || Kemal Oflazer || 36, 23&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D12/D12-1000.pdf EMNLP 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jun’ichi Tsujii (Microsoft Research Asia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || James Henderson (Xerox Research Centre Europe), Marius Pasca (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2012:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yejin Choi (Stony Brook University), Hal Daume III (University of Maryland), Doug Downey (Northwestern University), Chris Dyer (Carnegie Mellon University), Adria de Gispert (University of Cambridge), Julia Hirschberg (Columbia University), Anna Korhonen (University of Cambridge), Bing Liu (University of Illinois at Chicago), Hwee Tou Ng (National University of Singapore), Patrick Pantel (Microsoft Research), Marco Pennacchiotti (Yahoo! Labs), Slav Petrov (Google), Simone Paolo Ponzetto (Sapienza University of Rome), John Prager (IBM Research), Chris Quirk (Microsoft Research), Sebastian Riedel (University of Massachusetts at Amherst), Hiroya Takamura (Tokyo Institute of Technology), Partha Talukdar (Carnegie Mellon University), Carnegie Mellon University (Microsoft Research), Reut Tsarfaty (Uppsala University), Marilyn Walker (University of California at Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== ACL 2011 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Anna Feldman, Greg Kondrak || 34,22&lt;br /&gt;
|-&lt;br /&gt;
|Syntax and Parsing || Xavier Carreras, Ryan McDonald  || 56,48&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Diana McCarthy, Deniz Yuret || 48, 41&lt;br /&gt;
|-&lt;br /&gt;
|Discourse, Dialogue, and Pragmatics || Kentaro Inui, Svetlana Stoyanchev|| 31, 23&lt;br /&gt;
|-&lt;br /&gt;
|Summarization and Generation || Yang Liu, Manabu Okumura  || 36, 35&lt;br /&gt;
|- &lt;br /&gt;
|Statistical and Machine Learning Methods ||Lluis Marquez, Alessandro Moschitti || 42, 27&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Statistical Models ||Shankar Kumar, Taro Watanabe || 56, 39&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Methods, Applications and Evaluations ||Elliott Macklovitch, Michel Simard || 33, 53&lt;br /&gt;
|-&lt;br /&gt;
|Information Retrieval ||  Fabrizio Sebastiani || 26, 11&lt;br /&gt;
|-&lt;br /&gt;
|Question Answering || Bernardo Magnini  || 19, 10&lt;br /&gt;
|-&lt;br /&gt;
|Text Mining and Information Extraction || Razvan Bunescu, Alexander Yates || 51, 38&lt;br /&gt;
|-&lt;br /&gt;
|Sentiment Analysis, Opinion Mining and Text Classification ||Katja Markert, Xiaojun Wan || 45, 38&lt;br /&gt;
|-&lt;br /&gt;
|Spoken Language Processing || Pascale Fung || 20, 13&lt;br /&gt;
|-&lt;br /&gt;
|Natural Language Processing Applications || Vasile Rus || 30, 51&lt;br /&gt;
|-&lt;br /&gt;
|Language Resources || Chu-Ren Huang, Dan Tufis|| 32, 26&lt;br /&gt;
|-&lt;br /&gt;
|Multilinguality || Thamar Solorio || 24, 16&lt;br /&gt;
|-&lt;br /&gt;
|NLP for Web 2.0 || Vivi Nastase || 31, 16&lt;br /&gt;
|-&lt;br /&gt;
|Linguistic Creativity || Carlo Strapparava || 20, 17&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D11/D11-1000.pdf EMNLP 2011] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Paola Merlo (University of Geneva) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Regina Barzilay (Massachusetts Institute of Technology), Mark Johnson (Macquarie University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2011:&lt;br /&gt;
&lt;br /&gt;
Emily M. Bender (University of Washington), Phil Blunsom (University of Oxford), Eugene Charniak (Brown University), Chris Dyer (Carnegie Mellon University), Jenny Finkel (Columbia University), Radu Florian (IBM Watson Research Center), Amir Globerson (The Hebrew University of Jerusalem), Keith Hall (Google Research), Minlie Huang (Tsinghua University), Katrin Kirchhoff (University of Washington), Mirella Lapata (University of Edinburgh), Chin-Yew Lin (Microsoft Research Asia), Bo Pang (Yahoo! Research), Stefan Riezler (University of Heidelberg), Ellen Riloff (University of Utah), Hinrich Schuetze (University of Stuttgart), Jian Su (Institute for Infocomm Research), Dekai Wu (Hong Kong University of Science and Technology), Luke Zettlemoyer (University of Washington)&lt;br /&gt;
&lt;br /&gt;
== ACL 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long + short)&lt;br /&gt;
|- &lt;br /&gt;
| Lexical semantics || Tim Baldwin, Roberto Navigli || 87&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning|| Phil Blunsom, Walter Daelemans || 87&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction|| Kalina Bontcheva, Hang Li || 52&lt;br /&gt;
|-&lt;br /&gt;
| Formal semantics || Johan Bos || 24&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis || Claire Cardie, Theresa Wilson|| 69&lt;br /&gt;
|-&lt;br /&gt;
| Text mining || Rob Gaizauskas || 30&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Keith Hall, Chris Quirk|| 100&lt;br /&gt;
|-&lt;br /&gt;
| Speech processing|| Julia Hirschberg|| 33&lt;br /&gt;
|-&lt;br /&gt;
| Resources|| Nancy Ide|| 50&lt;br /&gt;
|-&lt;br /&gt;
| Multi-modal||Michael Johnston || 18&lt;br /&gt;
|-&lt;br /&gt;
| Psycholinguistics ||Roger Levy || 16&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering and paraphrasing|| Chin-Yew Lin || 40&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, grammatical inference, syntax||Yusuke Miyao, Khalil Sima&#039;an  || 88&lt;br /&gt;
|-&lt;br /&gt;
| Generation and summarisation || Ani Nenkova, Bonnie Webber|| 55&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and dialogue ||Jon Oberlander, Matthew Stone|| 56 &lt;br /&gt;
|-&lt;br /&gt;
| Mathematical linguistics||Stuart Shieber || 29&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, segmentation and morphology||Richard Sproat || 51&lt;br /&gt;
|-&lt;br /&gt;
| Bioinformatics || Jun&#039;ichi Tsujii|| 12&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || ChengXiang Zhai|| 33&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|- &lt;br /&gt;
| Machine Translation || Chris Callison-Burch, Qun Liu || 109&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Sebastian Pado, Takenobu Tokunaga || 102&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Text Classification || Bo Pang || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Gary Geunbae Lee || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Rosie Jones || 55&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Donia Scott || 53&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and NLP Applications || Ming Zhou || 50&lt;br /&gt;
|-&lt;br /&gt;
| Parsing || Sadao Kurohashi || 48&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods || David A Smith || 42&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Nicoletta Calzolari || 38&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Pragmatics || Caroline Sporleder || 38&lt;br /&gt;
|-&lt;br /&gt;
| Chinese Natural Language Processing || Nianwen Xue  || 34&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Morphology-Phonology || Rajeev Sangal || 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Grammar || Emily Bender || 28&lt;br /&gt;
|-&lt;br /&gt;
| Multilingualism || Pierre Isabelle || 26&lt;br /&gt;
|-&lt;br /&gt;
| Dialog and Multimodal || Justine Cassell || 16&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li || 9&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling || Roger Levy || 9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D10/D10-1000.pdf EMNLP 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hang Li (Microsoft Research Asia), Llu´ıs Marquez (Technical University of Catalonia) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2010:&lt;br /&gt;
&lt;br /&gt;
Eneko Agirre (University of the Basque Country), Kalina Bontcheva (University of Sheffield), Antal van den Bosch (Tilburg University), David Chiang (USC Information Sciences Institute), Jennifer Chu-Carroll (IBM Research), Evgeniy Gabrilovich (Yahoo! Research), Jianfeng Gao (Microsoft Research), Julio Gonzalo (UNED), Nancy Ide (Vassar College), Haizhou Li (Institute for Infocomm Research), Qun Liu (ICT, Chinese Academy of Sciences), Yusuke Miyao (National Institute of Informatics), Bo Pang (Yahoo! Research), Dragomir Radev (University of Michigan), Noah Smith (Carnegie Mellon University), Kristina Toutanova (Microsoft Research), Yoshimasa Tsuruoka (JAIST), Yi Zhang (University of California, Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N10/N10-1000.pdf NAACL 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Ronald Kaplan (Microsoft Bing) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Jill Burstein (Educational Testing Service), Mary Harper (University of Maryland and The Johns Hopkins University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for NAACL 2010:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yaser Al-Onaizan (IBM), Ciprian Chelba (Google), Mona Diab (Columbia University), Barbara Di Eugenio (University of Illinois at Chicago), Eric Fosler-Lussier (Ohio State University), Makoto Kanazawa (National Institute of Informatics, Tokyo), Damianos Karakos (Johns Hopkins University), Philip Koehn (University of Edinburgh), Mike Maxwell (University of Maryland), Diana McCarthy (Lexical Computing Ltd), Ani Nenkova (University of Pennsylvania), Stefan Oepen (University of Oslo), Dan Roth (University of Illinois at Urbana-Champaign), Noah Smith (Carnegie Mellon University), Amanda Stent (AT&amp;amp;T), Joel Tetreault (Educational Testing Service), Jan Wiebe (University of Pittsburgh)&lt;br /&gt;
&lt;br /&gt;
== ACL 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Greg Kondrak|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Noah Smith, James Curran || 47&lt;br /&gt;
|-&lt;br /&gt;
| Semantics|| Eneko Agirre, Rada Mihalcea|| 67&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Massimo Poesio, Michael Strube|| 41&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz|| 44&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods|| Jianfeng Gao, Jun Suzuki||36&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Hai Feng Wang, Philipp Koehn||80&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||Hsin-Hsi Chen ||29&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Ellen Riloff, Satoshi Sekine||52&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Giuseppe Carenini || 44&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing|| Helen Meng|| 20&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering|| Sanda Harabagiu|| 23&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications||Sophi Ananiadou ||19&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Keh-Jiann Chen || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== EMNLP 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Jason Eisner || 24&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Steve Clark|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics||Vivi Nastase || 45&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Tim Paek|| 28&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||Chin-Yew Lin || 25&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods||Miles Osborne ||32&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Adam Lopez ||68&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering||Hang Li ||33&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining||Marius Pasca ||39&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Theresa Wilson || 37&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing||Eric Fosler-Lussier || 11&lt;br /&gt;
|-&lt;br /&gt;
| Natural Language Processing Applications||Carlo Strapparava ||22&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Katrin Erk || 26&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality|| Mona Diab||22&lt;br /&gt;
|-&lt;br /&gt;
| NLP for Web 2.0|| Iryna Gurevych||20&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2008 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon, lexical semantics, word sense disambiguation || Paul Buitelaar || 45&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Stephen Pulman Mary Dalrymple || 46&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, dialogue || Eva Hajicova || 24&lt;br /&gt;
|-&lt;br /&gt;
| NLG, summarisation || Robert Dale || 36&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, morphology, grammar learning || Mark Johnson || 68&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation and Multilinguality || Pierre Isabelle, Miles Osborne || 86&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, text and web mining, multimedia || Junichi Tsujii || 54&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction, opinion and sentiment Analysis || Rob Gaizauskus || 24&lt;br /&gt;
|-&lt;br /&gt;
| Paraphrasing and Textual Entailment || Bill Dolan || 21&lt;br /&gt;
|-&lt;br /&gt;
| Speech and multimodality || Julia Hirschberg || 16&lt;br /&gt;
|-&lt;br /&gt;
| Resources || Chu-Ren Huang || 56&lt;br /&gt;
|-&lt;br /&gt;
| Learning || Dan Roth || 29&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11143</id>
		<title>Areas, chairs, and area submissions</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11143"/>
		<updated>2015-07-04T01:11:54Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: NAACL 2010&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.aclweb.org/anthology/P/P14/P14-1000.pdf ACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair  || Daniel Marcu (ISI/USC) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Kristina Toutanova (Microsoft Research), Hua Wu (Baidu) ||&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling and Psycholinguistics || Klinton Bicknell (Northwestern University) || 9, 14&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems || Asli Celikyilmaz (Microsoft Research) || 10, 8&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference and Pragmatics || Micha Elsner (Ohio State University), Michael Strube (HITS gGmbH) || 22, 20&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization, Sentiment Analysis and Topic Models || Jacob Eisenstein (Georgia Institute of Technology), Jun Zhao (Chinese Academy of Sciences) || 53, 48&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Barbara Di Eugenio (University of Illinois at Chicago) || 13, 7&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining || Marius Pasca (Google Research), Mihai Surdeanu (University of Arizona) || 54, 49&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || Ting	Liu (Harbin Institute of Technology) || 8, 9&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation || Nicoletta Calzolari (Institute of Computational Linguistics of the National Research Council), Nianwen Xue (Brandeis University) || 31, 28&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontology || Eneko Agirre (University of the Basque Country) || 26, 23&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Kevin Duh (Nara Institute of Science and Technology), Jason Eisner (Johns Hopkins University) || 39, 15&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Colin Cherry (National Research Council, Canada), Niyu Ge (IBM Research), Liang Huang (City University of New York), Yanjun Ma (Baidu) || 76, 72&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality and Multimodal NLP || Michel Galley (Microsoft Research) || 12, 14&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications and NLP-enabled Technology || Mamoru Komachi (Tokyo Metropolitan University) || 32, 34&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (Johns Hopkins University), Alan Ritter (Carnegie Mellon University) || 29, 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Iryna Gurevych (Technische Universität Darmstadt), Percy Liang (Stanford University), Shiqi Zhao (Baidu) || 53, 37&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Yang Liu (University of Texas at Dallas) || 19, 11&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Scott Wen-tau Yih (Microsoft Research) || 6, 4&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Ciprian Chelba (Google Research) || 9, 10&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Xavier Carreras (Universitat Politecnica de Catalunya), Slav Petrov (Google Research) || 35, 48&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology and Word Segmentation || Grzegorz Kondrak (University of Alberta) || 10, 18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D14/D14-1000.pdf EMNLP 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alessandro Moschitti (Qatar Computing Research Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Walter Daelemans (University of Antwerp), Bo Pang (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, and Segmentation || Tomaž Erjavec (Jožef Stefan Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Gosse Bouma (University of Groningen), Yuji Matsumoto (Nara Institute of Science and Technology) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Jennifer Chu-Carroll (IBM Watson Research Center), Olga Uryupina (University of Trento) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Rada Mihalcea (University of Michigan), Sameer Pradhan (Harvard Medical School) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz (University of Brighton), Dilek Hakkani-Tür (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Ivan Titov (University of Amsterdam), Jerry Zhu (University of Wisconsin-Madison) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Chris Callison-Burch (University of Pennsylvania), Dan Gildea (University of Rochester) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, Text Categorization, and Question Answering || Sien Moens (Katholieke Universiteit Leuven), Hinrich Schütze (Ludwig Maximilian University of M&lt;br /&gt;
unich) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Marius Pasca (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Massimiliano Ciaramita (Google), Hwee Tou Ng (National University of Singapore) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University), Minlie Huang (Tsinghua University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Irwin King (The Chinese University of Hong Kong), Qiaozhu Mei (University of Michigan) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Pascale Fung (Hong Kong University of Science and Technology), Hugo Van hamme (Katholieke Universiteit Leuven) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Psycholinguistics || Sharon Goldwater (University of Edinburgh) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2013 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modelling and Psycholinguistics || * || 13, 12&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems ||  || 15, 10&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference, and Pragmatics ||  || 28, 19&lt;br /&gt;
|-&lt;br /&gt;
| Evaluation Methods ||  || 11, 15&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||  || 20, 20&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources ||  || 24, 27&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontologies ||  || 25, 25&lt;br /&gt;
|-&lt;br /&gt;
| Low Resource Language Processing ||  || 10, 13&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Methods, Applications and Evaluations ||  || 50, 58&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Statistical Models ||  || 44, 30&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications ||  || 46, 42&lt;br /&gt;
|-&lt;br /&gt;
| NLP and Creativity ||  || 3, 4&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Languages of Central and Eastern Europe and The Balkans ||  || 2, 8&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media ||  || 32, 26&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering ||  || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Semantics ||  || 50, 32&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification ||  || 46, 60&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing ||  || 9, 12&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods in NLP ||  || 35, 32&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||  || 31, 23&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing ||  || 39, 43&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Chunking ||  || 12, 13&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Information Extraction ||  || 68, 53&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation ||  || 13, 15&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for ACL 2013: &lt;br /&gt;
&lt;br /&gt;
Frank Keller, Roger Levy, Amanda Stent, David Suendermann, Andrew Kehler, Becky Passonneau, Hang Li, Nancy Ide, Piek Vossen, Philipp Cimiano, Sabine Schulte im Walde, Dekang Lin, Chiori Hori, Keh-Yih Su, Roland Kuhn, Dekai Wu, Benjamin Snyder, Thamar Solorio, Ehud Reiter, Massimiliano Ciaramita, Ken Church, Carlo Strapparava, Tomaz Erjavec, Adam Prziepiorkowski, Patrick Pantel, Owen Rambow, Chris Dyer, Jason Eisner, Jennifer Chu-Carroll, Bernardo Magnini, Lluis Marquez, Alessandro Moschitti, Claire Cardie, Rada Mihalcea, Dilek Hakkani-Tur, Walter Daelemans, Dan Roth, Alex Koller, Ani Nenkova, Jamie Henderson, Sadao Kurohashi, Yuji Matsumoto, Heng Ji, Marie-Francine Moens, Hwee Tou Ng&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D13/D13-1000.pdf EMNLP 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || David Yarowsky (John Hopkins University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Timothy Baldwin (University of Melbourne, Australia), Anna Korhonen (University of Cambridge, UK) || &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, Tagging, Chunking and Segmentation || Kemal Oflazer (Carnegie Mellon University Qatar), Anna Feldman (Montclair State University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Jennifer Foster (Dublin City University, Ireland), Yoav Goldberg (Bar Ilan University, Israel) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Mark Stevenson (University of Sheffield, UK), Luke Zettlemoyer (University of Washington, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Carolyn Rose (Carnegie Mellon University, USA), Matt Purver (Queen Mary, University of London, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language resources || Emily M. Bender (University of Washington, USA), Aline Villavicencio (Federal University of Rio Grande do Sul, Brazil) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Dragomir Radev (University of Michigan, USA), Yang Liu (University of Texas at Dallas, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Amir Globerson (The Hebrew University of Jerusalem, Israel), Antal van den Bosch (Radboud University &lt;br /&gt;
Nijmegen, Netherlands) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Taro Watanabe (NICT, Japan), Kevin Knight (Information Sciences Institute, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Bernardo Magnini (Fondazione Bruno Kessler, Italy), Soumen Chakrabarti (Indian Institute of Technology, India) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Mausam (Indian Institute of Technology, India), Heng Ji (City University of New York, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li (Institute for Infocomm Research, Singapore), Amanda Stent (AT&amp;amp;T Labs, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Hang Li (Huawei Noah’s Ark Lab, Hong Kong), Kevin Cohen (University of Colorado School of Medicine, USA) &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Janyce Weibe (University of Pittsburgh, USA), Bing Liu (University of Illinois at Chicago, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (University of Edinburgh, UK), Chin-Yew Lin (Microsoft Research Asia, China) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Models of Human Language Acquisition and Processing || Alessandro Lenci (University of Pisa, Italy), Afra Alishahi (Tilburg University, Netherlands) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2012 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Dialogue || Mikio Nakano, Andrei Popescu-Belis || 39, 23&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Information Retrieval || Jian Su, Jianfeng Gao, Vincent Ng || 64, 37&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Fei Xia || 15, 13&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics || Evgeniy Gabrilovich, Naoaki Okazaki || 38, 31&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon and Ontology ||  Eneko Agirre || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning || Trevor Cohn, Mark Dredze || 56, 28&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Marcello Federico, Adam Lopez, David Talbot, Hua Wu || 75, 56&lt;br /&gt;
|-&lt;br /&gt;
| Multilingual || Daniel M. Bikel, Mona T. Diab || 31, 15&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications || Jason Baldridge, David Weir || 41, 18&lt;br /&gt;
|-&lt;br /&gt;
| Syntax/Parsing || Stephen Clark, Liang Huang || 64, 36&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Hongyuan Zha, Hsin-Hsi Chen || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Social Media and Sentiment || Noah Smith, Jan Wiebe || 51, 32&lt;br /&gt;
|-&lt;br /&gt;
| Speech || Chung-Hsien Wu || 16, 12&lt;br /&gt;
|-&lt;br /&gt;
| Summarization &amp;amp; Generation || Anja Belz, Ani Nenkova || 20, 23&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation, Morphology and Phonology || Kemal Oflazer || 36, 23&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D12/D12-1000.pdf EMNLP 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jun’ichi Tsujii (Microsoft Research Asia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || James Henderson (Xerox Research Centre Europe), Marius Pasca (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2012:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yejin Choi (Stony Brook University), Hal Daume III (University of Maryland), Doug Downey (Northwestern University), Chris Dyer (Carnegie Mellon University), Adria de Gispert (University of Cambridge), Julia Hirschberg (Columbia University), Anna Korhonen (University of Cambridge), Bing Liu (University of Illinois at Chicago), Hwee Tou Ng (National University of Singapore), Patrick Pantel (Microsoft Research), Marco Pennacchiotti (Yahoo! Labs), Slav Petrov (Google), Simone Paolo Ponzetto (Sapienza University of Rome), John Prager (IBM Research), Chris Quirk (Microsoft Research), Sebastian Riedel (University of Massachusetts at Amherst), Hiroya Takamura (Tokyo Institute of Technology), Partha Talukdar (Carnegie Mellon University), Carnegie Mellon University (Microsoft Research), Reut Tsarfaty (Uppsala University), Marilyn Walker (University of California at Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== ACL 2011 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Anna Feldman, Greg Kondrak || 34,22&lt;br /&gt;
|-&lt;br /&gt;
|Syntax and Parsing || Xavier Carreras, Ryan McDonald  || 56,48&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Diana McCarthy, Deniz Yuret || 48, 41&lt;br /&gt;
|-&lt;br /&gt;
|Discourse, Dialogue, and Pragmatics || Kentaro Inui, Svetlana Stoyanchev|| 31, 23&lt;br /&gt;
|-&lt;br /&gt;
|Summarization and Generation || Yang Liu, Manabu Okumura  || 36, 35&lt;br /&gt;
|- &lt;br /&gt;
|Statistical and Machine Learning Methods ||Lluis Marquez, Alessandro Moschitti || 42, 27&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Statistical Models ||Shankar Kumar, Taro Watanabe || 56, 39&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Methods, Applications and Evaluations ||Elliott Macklovitch, Michel Simard || 33, 53&lt;br /&gt;
|-&lt;br /&gt;
|Information Retrieval ||  Fabrizio Sebastiani || 26, 11&lt;br /&gt;
|-&lt;br /&gt;
|Question Answering || Bernardo Magnini  || 19, 10&lt;br /&gt;
|-&lt;br /&gt;
|Text Mining and Information Extraction || Razvan Bunescu, Alexander Yates || 51, 38&lt;br /&gt;
|-&lt;br /&gt;
|Sentiment Analysis, Opinion Mining and Text Classification ||Katja Markert, Xiaojun Wan || 45, 38&lt;br /&gt;
|-&lt;br /&gt;
|Spoken Language Processing || Pascale Fung || 20, 13&lt;br /&gt;
|-&lt;br /&gt;
|Natural Language Processing Applications || Vasile Rus || 30, 51&lt;br /&gt;
|-&lt;br /&gt;
|Language Resources || Chu-Ren Huang, Dan Tufis|| 32, 26&lt;br /&gt;
|-&lt;br /&gt;
|Multilinguality || Thamar Solorio || 24, 16&lt;br /&gt;
|-&lt;br /&gt;
|NLP for Web 2.0 || Vivi Nastase || 31, 16&lt;br /&gt;
|-&lt;br /&gt;
|Linguistic Creativity || Carlo Strapparava || 20, 17&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D11/D11-1000.pdf EMNLP 2011] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Paola Merlo (University of Geneva) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Regina Barzilay (Massachusetts Institute of Technology), Mark Johnson (Macquarie University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2011:&lt;br /&gt;
&lt;br /&gt;
Emily M. Bender (University of Washington), Phil Blunsom (University of Oxford), Eugene Charniak (Brown University), Chris Dyer (Carnegie Mellon University), Jenny Finkel (Columbia University), Radu Florian (IBM Watson Research Center), Amir Globerson (The Hebrew University of Jerusalem), Keith Hall (Google Research), Minlie Huang (Tsinghua University), Katrin Kirchhoff (University of Washington), Mirella Lapata (University of Edinburgh), Chin-Yew Lin (Microsoft Research Asia), Bo Pang (Yahoo! Research), Stefan Riezler (University of Heidelberg), Ellen Riloff (University of Utah), Hinrich Schuetze (University of Stuttgart), Jian Su (Institute for Infocomm Research), Dekai Wu (Hong Kong University of Science and Technology), Luke Zettlemoyer (University of Washington)&lt;br /&gt;
&lt;br /&gt;
== ACL 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long + short)&lt;br /&gt;
|- &lt;br /&gt;
| Lexical semantics || Tim Baldwin, Roberto Navigli || 87&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning|| Phil Blunsom, Walter Daelemans || 87&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction|| Kalina Bontcheva, Hang Li || 52&lt;br /&gt;
|-&lt;br /&gt;
| Formal semantics || Johan Bos || 24&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis || Claire Cardie, Theresa Wilson|| 69&lt;br /&gt;
|-&lt;br /&gt;
| Text mining || Rob Gaizauskas || 30&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Keith Hall, Chris Quirk|| 100&lt;br /&gt;
|-&lt;br /&gt;
| Speech processing|| Julia Hirschberg|| 33&lt;br /&gt;
|-&lt;br /&gt;
| Resources|| Nancy Ide|| 50&lt;br /&gt;
|-&lt;br /&gt;
| Multi-modal||Michael Johnston || 18&lt;br /&gt;
|-&lt;br /&gt;
| Psycholinguistics ||Roger Levy || 16&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering and paraphrasing|| Chin-Yew Lin || 40&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, grammatical inference, syntax||Yusuke Miyao, Khalil Sima&#039;an  || 88&lt;br /&gt;
|-&lt;br /&gt;
| Generation and summarisation || Ani Nenkova, Bonnie Webber|| 55&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and dialogue ||Jon Oberlander, Matthew Stone|| 56 &lt;br /&gt;
|-&lt;br /&gt;
| Mathematical linguistics||Stuart Shieber || 29&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, segmentation and morphology||Richard Sproat || 51&lt;br /&gt;
|-&lt;br /&gt;
| Bioinformatics || Jun&#039;ichi Tsujii|| 12&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || ChengXiang Zhai|| 33&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|- &lt;br /&gt;
| Machine Translation || Chris Callison-Burch, Qun Liu || 109&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Sebastian Pado, Takenobu Tokunaga || 102&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Text Classification || Bo Pang || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Gary Geunbae Lee || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Rosie Jones || 55&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Donia Scott || 53&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and NLP Applications || Ming Zhou || 50&lt;br /&gt;
|-&lt;br /&gt;
| Parsing || Sadao Kurohashi || 48&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods || David A Smith || 42&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Nicoletta Calzolari || 38&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Pragmatics || Caroline Sporleder || 38&lt;br /&gt;
|-&lt;br /&gt;
| Chinese Natural Language Processing || Nianwen Xue  || 34&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Morphology-Phonology || Rajeev Sangal || 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Grammar || Emily Bender || 28&lt;br /&gt;
|-&lt;br /&gt;
| Multilingualism || Pierre Isabelle || 26&lt;br /&gt;
|-&lt;br /&gt;
| Dialog and Multimodal || Justine Cassell || 16&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li || 9&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling || Roger Levy || 9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D10/D10-1000.pdf EMNLP 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hang Li (Microsoft Research Asia), Llu´ıs Marquez (Technical University of Catalonia) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2010:&lt;br /&gt;
&lt;br /&gt;
Eneko Agirre (University of the Basque Country), Kalina Bontcheva (University of Sheffield), Antal van den Bosch (Tilburg University), David Chiang (USC Information Sciences Institute), Jennifer Chu-Carroll (IBM Research), Evgeniy Gabrilovich (Yahoo! Research), Jianfeng Gao (Microsoft Research), Julio Gonzalo (UNED), Nancy Ide (Vassar College), Haizhou Li (Institute for Infocomm Research), Qun Liu (ICT, Chinese Academy of Sciences), Yusuke Miyao (National Institute of Informatics), Bo Pang (Yahoo! Research), Dragomir Radev (University of Michigan), Noah Smith (Carnegie Mellon University), Kristina Toutanova (Microsoft Research), Yoshimasa Tsuruoka (JAIST), Yi Zhang (University of California, Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/N/N10/N10-1000.pdf NAACL 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Ronald Kaplan (Microsoft Bing) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Jill Burstein (Educational Testing Service), Mary Harper (University of Maryland and The Johns Hopkins University) || &lt;br /&gt;
|-&lt;br /&gt;
| NA || Eugene Agichtein (Emory University), Yaser Al-Onaizan (IBM), Ciprian Chelba (Google), Mona Diab (Columbia University), Barbara Di Eugenio (University of Illinois at Chicago), Eric Fosler-Lussier (Ohio State University), Makoto Kanazawa (National Institute of Informatics, Tokyo), Damianos Karakos (Johns Hopkins University), Philip Koehn (University of Edinburgh), Mike Maxwell (University of Maryland), Diana McCarthy (Lexical Computing Ltd), Ani Nenkova (University of Pennsylvania), Stefan Oepen (University of Oslo), Dan Roth (University of Illinois at Urbana-Champaign), Noah Smith (Carnegie Mellon University), Amanda Stent (AT&amp;amp;T), Joel Tetreault (Educational Testing Service), Jan Wiebe (University of Pittsburgh) ||&lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for NAACL 2010:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yaser Al-Onaizan (IBM), Ciprian Chelba (Google), Mona Diab (Columbia University), Barbara Di Eugenio (University of Illinois at Chicago), Eric Fosler-Lussier (Ohio State University), Makoto Kanazawa (National Institute of Informatics, Tokyo), Damianos Karakos (Johns Hopkins University), Philip Koehn (University of Edinburgh), Mike Maxwell (University of Maryland), Diana McCarthy (Lexical Computing Ltd), Ani Nenkova (University of Pennsylvania), Stefan Oepen (University of Oslo), Dan Roth (University of Illinois at Urbana-Champaign), Noah Smith (Carnegie Mellon University), Amanda Stent (AT&amp;amp;T), Joel Tetreault (Educational Testing Service), Jan Wiebe (University of Pittsburgh)&lt;br /&gt;
&lt;br /&gt;
== ACL 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Greg Kondrak|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Noah Smith, James Curran || 47&lt;br /&gt;
|-&lt;br /&gt;
| Semantics|| Eneko Agirre, Rada Mihalcea|| 67&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Massimo Poesio, Michael Strube|| 41&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz|| 44&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods|| Jianfeng Gao, Jun Suzuki||36&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Hai Feng Wang, Philipp Koehn||80&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||Hsin-Hsi Chen ||29&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Ellen Riloff, Satoshi Sekine||52&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Giuseppe Carenini || 44&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing|| Helen Meng|| 20&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering|| Sanda Harabagiu|| 23&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications||Sophi Ananiadou ||19&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Keh-Jiann Chen || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== EMNLP 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Jason Eisner || 24&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Steve Clark|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics||Vivi Nastase || 45&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Tim Paek|| 28&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||Chin-Yew Lin || 25&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods||Miles Osborne ||32&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Adam Lopez ||68&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering||Hang Li ||33&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining||Marius Pasca ||39&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Theresa Wilson || 37&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing||Eric Fosler-Lussier || 11&lt;br /&gt;
|-&lt;br /&gt;
| Natural Language Processing Applications||Carlo Strapparava ||22&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Katrin Erk || 26&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality|| Mona Diab||22&lt;br /&gt;
|-&lt;br /&gt;
| NLP for Web 2.0|| Iryna Gurevych||20&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2008 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon, lexical semantics, word sense disambiguation || Paul Buitelaar || 45&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Stephen Pulman Mary Dalrymple || 46&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, dialogue || Eva Hajicova || 24&lt;br /&gt;
|-&lt;br /&gt;
| NLG, summarisation || Robert Dale || 36&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, morphology, grammar learning || Mark Johnson || 68&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation and Multilinguality || Pierre Isabelle, Miles Osborne || 86&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, text and web mining, multimedia || Junichi Tsujii || 54&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction, opinion and sentiment Analysis || Rob Gaizauskus || 24&lt;br /&gt;
|-&lt;br /&gt;
| Paraphrasing and Textual Entailment || Bill Dolan || 21&lt;br /&gt;
|-&lt;br /&gt;
| Speech and multimodality || Julia Hirschberg || 16&lt;br /&gt;
|-&lt;br /&gt;
| Resources || Chu-Ren Huang || 56&lt;br /&gt;
|-&lt;br /&gt;
| Learning || Dan Roth || 29&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11142</id>
		<title>Areas, chairs, and area submissions</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11142"/>
		<updated>2015-07-04T01:08:27Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: ordered by date&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.aclweb.org/anthology/P/P14/P14-1000.pdf ACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair  || Daniel Marcu (ISI/USC) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Kristina Toutanova (Microsoft Research), Hua Wu (Baidu) ||&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling and Psycholinguistics || Klinton Bicknell (Northwestern University) || 9, 14&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems || Asli Celikyilmaz (Microsoft Research) || 10, 8&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference and Pragmatics || Micha Elsner (Ohio State University), Michael Strube (HITS gGmbH) || 22, 20&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization, Sentiment Analysis and Topic Models || Jacob Eisenstein (Georgia Institute of Technology), Jun Zhao (Chinese Academy of Sciences) || 53, 48&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Barbara Di Eugenio (University of Illinois at Chicago) || 13, 7&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining || Marius Pasca (Google Research), Mihai Surdeanu (University of Arizona) || 54, 49&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || Ting	Liu (Harbin Institute of Technology) || 8, 9&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation || Nicoletta Calzolari (Institute of Computational Linguistics of the National Research Council), Nianwen Xue (Brandeis University) || 31, 28&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontology || Eneko Agirre (University of the Basque Country) || 26, 23&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Kevin Duh (Nara Institute of Science and Technology), Jason Eisner (Johns Hopkins University) || 39, 15&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Colin Cherry (National Research Council, Canada), Niyu Ge (IBM Research), Liang Huang (City University of New York), Yanjun Ma (Baidu) || 76, 72&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality and Multimodal NLP || Michel Galley (Microsoft Research) || 12, 14&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications and NLP-enabled Technology || Mamoru Komachi (Tokyo Metropolitan University) || 32, 34&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (Johns Hopkins University), Alan Ritter (Carnegie Mellon University) || 29, 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Iryna Gurevych (Technische Universität Darmstadt), Percy Liang (Stanford University), Shiqi Zhao (Baidu) || 53, 37&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Yang Liu (University of Texas at Dallas) || 19, 11&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Scott Wen-tau Yih (Microsoft Research) || 6, 4&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Ciprian Chelba (Google Research) || 9, 10&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Xavier Carreras (Universitat Politecnica de Catalunya), Slav Petrov (Google Research) || 35, 48&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology and Word Segmentation || Grzegorz Kondrak (University of Alberta) || 10, 18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D14/D14-1000.pdf EMNLP 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alessandro Moschitti (Qatar Computing Research Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Walter Daelemans (University of Antwerp), Bo Pang (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, and Segmentation || Tomaž Erjavec (Jožef Stefan Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Gosse Bouma (University of Groningen), Yuji Matsumoto (Nara Institute of Science and Technology) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Jennifer Chu-Carroll (IBM Watson Research Center), Olga Uryupina (University of Trento) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Rada Mihalcea (University of Michigan), Sameer Pradhan (Harvard Medical School) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz (University of Brighton), Dilek Hakkani-Tür (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Ivan Titov (University of Amsterdam), Jerry Zhu (University of Wisconsin-Madison) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Chris Callison-Burch (University of Pennsylvania), Dan Gildea (University of Rochester) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, Text Categorization, and Question Answering || Sien Moens (Katholieke Universiteit Leuven), Hinrich Schütze (Ludwig Maximilian University of M&lt;br /&gt;
unich) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Marius Pasca (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Massimiliano Ciaramita (Google), Hwee Tou Ng (National University of Singapore) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University), Minlie Huang (Tsinghua University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Irwin King (The Chinese University of Hong Kong), Qiaozhu Mei (University of Michigan) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Pascale Fung (Hong Kong University of Science and Technology), Hugo Van hamme (Katholieke Universiteit Leuven) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Psycholinguistics || Sharon Goldwater (University of Edinburgh) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2013 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modelling and Psycholinguistics || * || 13, 12&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems ||  || 15, 10&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference, and Pragmatics ||  || 28, 19&lt;br /&gt;
|-&lt;br /&gt;
| Evaluation Methods ||  || 11, 15&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||  || 20, 20&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources ||  || 24, 27&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontologies ||  || 25, 25&lt;br /&gt;
|-&lt;br /&gt;
| Low Resource Language Processing ||  || 10, 13&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Methods, Applications and Evaluations ||  || 50, 58&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Statistical Models ||  || 44, 30&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications ||  || 46, 42&lt;br /&gt;
|-&lt;br /&gt;
| NLP and Creativity ||  || 3, 4&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Languages of Central and Eastern Europe and The Balkans ||  || 2, 8&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media ||  || 32, 26&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering ||  || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Semantics ||  || 50, 32&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification ||  || 46, 60&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing ||  || 9, 12&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods in NLP ||  || 35, 32&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||  || 31, 23&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing ||  || 39, 43&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Chunking ||  || 12, 13&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Information Extraction ||  || 68, 53&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation ||  || 13, 15&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for ACL 2013: &lt;br /&gt;
&lt;br /&gt;
Frank Keller, Roger Levy, Amanda Stent, David Suendermann, Andrew Kehler, Becky Passonneau, Hang Li, Nancy Ide, Piek Vossen, Philipp Cimiano, Sabine Schulte im Walde, Dekang Lin, Chiori Hori, Keh-Yih Su, Roland Kuhn, Dekai Wu, Benjamin Snyder, Thamar Solorio, Ehud Reiter, Massimiliano Ciaramita, Ken Church, Carlo Strapparava, Tomaz Erjavec, Adam Prziepiorkowski, Patrick Pantel, Owen Rambow, Chris Dyer, Jason Eisner, Jennifer Chu-Carroll, Bernardo Magnini, Lluis Marquez, Alessandro Moschitti, Claire Cardie, Rada Mihalcea, Dilek Hakkani-Tur, Walter Daelemans, Dan Roth, Alex Koller, Ani Nenkova, Jamie Henderson, Sadao Kurohashi, Yuji Matsumoto, Heng Ji, Marie-Francine Moens, Hwee Tou Ng&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D13/D13-1000.pdf EMNLP 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || David Yarowsky (John Hopkins University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Timothy Baldwin (University of Melbourne, Australia), Anna Korhonen (University of Cambridge, UK) || &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, Tagging, Chunking and Segmentation || Kemal Oflazer (Carnegie Mellon University Qatar), Anna Feldman (Montclair State University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Jennifer Foster (Dublin City University, Ireland), Yoav Goldberg (Bar Ilan University, Israel) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Mark Stevenson (University of Sheffield, UK), Luke Zettlemoyer (University of Washington, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Carolyn Rose (Carnegie Mellon University, USA), Matt Purver (Queen Mary, University of London, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language resources || Emily M. Bender (University of Washington, USA), Aline Villavicencio (Federal University of Rio Grande do Sul, Brazil) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Dragomir Radev (University of Michigan, USA), Yang Liu (University of Texas at Dallas, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Amir Globerson (The Hebrew University of Jerusalem, Israel), Antal van den Bosch (Radboud University &lt;br /&gt;
Nijmegen, Netherlands) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Taro Watanabe (NICT, Japan), Kevin Knight (Information Sciences Institute, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Bernardo Magnini (Fondazione Bruno Kessler, Italy), Soumen Chakrabarti (Indian Institute of Technology, India) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Mausam (Indian Institute of Technology, India), Heng Ji (City University of New York, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li (Institute for Infocomm Research, Singapore), Amanda Stent (AT&amp;amp;T Labs, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Hang Li (Huawei Noah’s Ark Lab, Hong Kong), Kevin Cohen (University of Colorado School of Medicine, USA) &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Janyce Weibe (University of Pittsburgh, USA), Bing Liu (University of Illinois at Chicago, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (University of Edinburgh, UK), Chin-Yew Lin (Microsoft Research Asia, China) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Models of Human Language Acquisition and Processing || Alessandro Lenci (University of Pisa, Italy), Afra Alishahi (Tilburg University, Netherlands) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2012 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Dialogue || Mikio Nakano, Andrei Popescu-Belis || 39, 23&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Information Retrieval || Jian Su, Jianfeng Gao, Vincent Ng || 64, 37&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Fei Xia || 15, 13&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics || Evgeniy Gabrilovich, Naoaki Okazaki || 38, 31&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon and Ontology ||  Eneko Agirre || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning || Trevor Cohn, Mark Dredze || 56, 28&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Marcello Federico, Adam Lopez, David Talbot, Hua Wu || 75, 56&lt;br /&gt;
|-&lt;br /&gt;
| Multilingual || Daniel M. Bikel, Mona T. Diab || 31, 15&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications || Jason Baldridge, David Weir || 41, 18&lt;br /&gt;
|-&lt;br /&gt;
| Syntax/Parsing || Stephen Clark, Liang Huang || 64, 36&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Hongyuan Zha, Hsin-Hsi Chen || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Social Media and Sentiment || Noah Smith, Jan Wiebe || 51, 32&lt;br /&gt;
|-&lt;br /&gt;
| Speech || Chung-Hsien Wu || 16, 12&lt;br /&gt;
|-&lt;br /&gt;
| Summarization &amp;amp; Generation || Anja Belz, Ani Nenkova || 20, 23&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation, Morphology and Phonology || Kemal Oflazer || 36, 23&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D12/D12-1000.pdf EMNLP 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jun’ichi Tsujii (Microsoft Research Asia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || James Henderson (Xerox Research Centre Europe), Marius Pasca (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2012:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yejin Choi (Stony Brook University), Hal Daume III (University of Maryland), Doug Downey (Northwestern University), Chris Dyer (Carnegie Mellon University), Adria de Gispert (University of Cambridge), Julia Hirschberg (Columbia University), Anna Korhonen (University of Cambridge), Bing Liu (University of Illinois at Chicago), Hwee Tou Ng (National University of Singapore), Patrick Pantel (Microsoft Research), Marco Pennacchiotti (Yahoo! Labs), Slav Petrov (Google), Simone Paolo Ponzetto (Sapienza University of Rome), John Prager (IBM Research), Chris Quirk (Microsoft Research), Sebastian Riedel (University of Massachusetts at Amherst), Hiroya Takamura (Tokyo Institute of Technology), Partha Talukdar (Carnegie Mellon University), Carnegie Mellon University (Microsoft Research), Reut Tsarfaty (Uppsala University), Marilyn Walker (University of California at Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== ACL 2011 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Anna Feldman, Greg Kondrak || 34,22&lt;br /&gt;
|-&lt;br /&gt;
|Syntax and Parsing || Xavier Carreras, Ryan McDonald  || 56,48&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Diana McCarthy, Deniz Yuret || 48, 41&lt;br /&gt;
|-&lt;br /&gt;
|Discourse, Dialogue, and Pragmatics || Kentaro Inui, Svetlana Stoyanchev|| 31, 23&lt;br /&gt;
|-&lt;br /&gt;
|Summarization and Generation || Yang Liu, Manabu Okumura  || 36, 35&lt;br /&gt;
|- &lt;br /&gt;
|Statistical and Machine Learning Methods ||Lluis Marquez, Alessandro Moschitti || 42, 27&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Statistical Models ||Shankar Kumar, Taro Watanabe || 56, 39&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Methods, Applications and Evaluations ||Elliott Macklovitch, Michel Simard || 33, 53&lt;br /&gt;
|-&lt;br /&gt;
|Information Retrieval ||  Fabrizio Sebastiani || 26, 11&lt;br /&gt;
|-&lt;br /&gt;
|Question Answering || Bernardo Magnini  || 19, 10&lt;br /&gt;
|-&lt;br /&gt;
|Text Mining and Information Extraction || Razvan Bunescu, Alexander Yates || 51, 38&lt;br /&gt;
|-&lt;br /&gt;
|Sentiment Analysis, Opinion Mining and Text Classification ||Katja Markert, Xiaojun Wan || 45, 38&lt;br /&gt;
|-&lt;br /&gt;
|Spoken Language Processing || Pascale Fung || 20, 13&lt;br /&gt;
|-&lt;br /&gt;
|Natural Language Processing Applications || Vasile Rus || 30, 51&lt;br /&gt;
|-&lt;br /&gt;
|Language Resources || Chu-Ren Huang, Dan Tufis|| 32, 26&lt;br /&gt;
|-&lt;br /&gt;
|Multilinguality || Thamar Solorio || 24, 16&lt;br /&gt;
|-&lt;br /&gt;
|NLP for Web 2.0 || Vivi Nastase || 31, 16&lt;br /&gt;
|-&lt;br /&gt;
|Linguistic Creativity || Carlo Strapparava || 20, 17&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D11/D11-1000.pdf EMNLP 2011] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Paola Merlo (University of Geneva) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Regina Barzilay (Massachusetts Institute of Technology), Mark Johnson (Macquarie University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2011:&lt;br /&gt;
&lt;br /&gt;
Emily M. Bender (University of Washington), Phil Blunsom (University of Oxford), Eugene Charniak (Brown University), Chris Dyer (Carnegie Mellon University), Jenny Finkel (Columbia University), Radu Florian (IBM Watson Research Center), Amir Globerson (The Hebrew University of Jerusalem), Keith Hall (Google Research), Minlie Huang (Tsinghua University), Katrin Kirchhoff (University of Washington), Mirella Lapata (University of Edinburgh), Chin-Yew Lin (Microsoft Research Asia), Bo Pang (Yahoo! Research), Stefan Riezler (University of Heidelberg), Ellen Riloff (University of Utah), Hinrich Schuetze (University of Stuttgart), Jian Su (Institute for Infocomm Research), Dekai Wu (Hong Kong University of Science and Technology), Luke Zettlemoyer (University of Washington)&lt;br /&gt;
&lt;br /&gt;
== ACL 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long + short)&lt;br /&gt;
|- &lt;br /&gt;
| Lexical semantics || Tim Baldwin, Roberto Navigli || 87&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning|| Phil Blunsom, Walter Daelemans || 87&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction|| Kalina Bontcheva, Hang Li || 52&lt;br /&gt;
|-&lt;br /&gt;
| Formal semantics || Johan Bos || 24&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis || Claire Cardie, Theresa Wilson|| 69&lt;br /&gt;
|-&lt;br /&gt;
| Text mining || Rob Gaizauskas || 30&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Keith Hall, Chris Quirk|| 100&lt;br /&gt;
|-&lt;br /&gt;
| Speech processing|| Julia Hirschberg|| 33&lt;br /&gt;
|-&lt;br /&gt;
| Resources|| Nancy Ide|| 50&lt;br /&gt;
|-&lt;br /&gt;
| Multi-modal||Michael Johnston || 18&lt;br /&gt;
|-&lt;br /&gt;
| Psycholinguistics ||Roger Levy || 16&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering and paraphrasing|| Chin-Yew Lin || 40&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, grammatical inference, syntax||Yusuke Miyao, Khalil Sima&#039;an  || 88&lt;br /&gt;
|-&lt;br /&gt;
| Generation and summarisation || Ani Nenkova, Bonnie Webber|| 55&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and dialogue ||Jon Oberlander, Matthew Stone|| 56 &lt;br /&gt;
|-&lt;br /&gt;
| Mathematical linguistics||Stuart Shieber || 29&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, segmentation and morphology||Richard Sproat || 51&lt;br /&gt;
|-&lt;br /&gt;
| Bioinformatics || Jun&#039;ichi Tsujii|| 12&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || ChengXiang Zhai|| 33&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|- &lt;br /&gt;
| Machine Translation || Chris Callison-Burch, Qun Liu || 109&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Sebastian Pado, Takenobu Tokunaga || 102&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Text Classification || Bo Pang || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Gary Geunbae Lee || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Rosie Jones || 55&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Donia Scott || 53&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and NLP Applications || Ming Zhou || 50&lt;br /&gt;
|-&lt;br /&gt;
| Parsing || Sadao Kurohashi || 48&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods || David A Smith || 42&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Nicoletta Calzolari || 38&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Pragmatics || Caroline Sporleder || 38&lt;br /&gt;
|-&lt;br /&gt;
| Chinese Natural Language Processing || Nianwen Xue  || 34&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Morphology-Phonology || Rajeev Sangal || 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Grammar || Emily Bender || 28&lt;br /&gt;
|-&lt;br /&gt;
| Multilingualism || Pierre Isabelle || 26&lt;br /&gt;
|-&lt;br /&gt;
| Dialog and Multimodal || Justine Cassell || 16&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li || 9&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling || Roger Levy || 9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D10/D10-1000.pdf EMNLP 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hang Li (Microsoft Research Asia), Llu´ıs Marquez (Technical University of Catalonia) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2010:&lt;br /&gt;
&lt;br /&gt;
Eneko Agirre (University of the Basque Country), Kalina Bontcheva (University of Sheffield), Antal van den Bosch (Tilburg University), David Chiang (USC Information Sciences Institute), Jennifer Chu-Carroll (IBM Research), Evgeniy Gabrilovich (Yahoo! Research), Jianfeng Gao (Microsoft Research), Julio Gonzalo (UNED), Nancy Ide (Vassar College), Haizhou Li (Institute for Infocomm Research), Qun Liu (ICT, Chinese Academy of Sciences), Yusuke Miyao (National Institute of Informatics), Bo Pang (Yahoo! Research), Dragomir Radev (University of Michigan), Noah Smith (Carnegie Mellon University), Kristina Toutanova (Microsoft Research), Yoshimasa Tsuruoka (JAIST), Yi Zhang (University of California, Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== ACL 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Greg Kondrak|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Noah Smith, James Curran || 47&lt;br /&gt;
|-&lt;br /&gt;
| Semantics|| Eneko Agirre, Rada Mihalcea|| 67&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Massimo Poesio, Michael Strube|| 41&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz|| 44&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods|| Jianfeng Gao, Jun Suzuki||36&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Hai Feng Wang, Philipp Koehn||80&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||Hsin-Hsi Chen ||29&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Ellen Riloff, Satoshi Sekine||52&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Giuseppe Carenini || 44&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing|| Helen Meng|| 20&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering|| Sanda Harabagiu|| 23&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications||Sophi Ananiadou ||19&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Keh-Jiann Chen || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== EMNLP 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Jason Eisner || 24&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Steve Clark|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics||Vivi Nastase || 45&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Tim Paek|| 28&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||Chin-Yew Lin || 25&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods||Miles Osborne ||32&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Adam Lopez ||68&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering||Hang Li ||33&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining||Marius Pasca ||39&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Theresa Wilson || 37&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing||Eric Fosler-Lussier || 11&lt;br /&gt;
|-&lt;br /&gt;
| Natural Language Processing Applications||Carlo Strapparava ||22&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Katrin Erk || 26&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality|| Mona Diab||22&lt;br /&gt;
|-&lt;br /&gt;
| NLP for Web 2.0|| Iryna Gurevych||20&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2008 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon, lexical semantics, word sense disambiguation || Paul Buitelaar || 45&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Stephen Pulman Mary Dalrymple || 46&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, dialogue || Eva Hajicova || 24&lt;br /&gt;
|-&lt;br /&gt;
| NLG, summarisation || Robert Dale || 36&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, morphology, grammar learning || Mark Johnson || 68&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation and Multilinguality || Pierre Isabelle, Miles Osborne || 86&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, text and web mining, multimedia || Junichi Tsujii || 54&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction, opinion and sentiment Analysis || Rob Gaizauskus || 24&lt;br /&gt;
|-&lt;br /&gt;
| Paraphrasing and Textual Entailment || Bill Dolan || 21&lt;br /&gt;
|-&lt;br /&gt;
| Speech and multimodality || Julia Hirschberg || 16&lt;br /&gt;
|-&lt;br /&gt;
| Resources || Chu-Ren Huang || 56&lt;br /&gt;
|-&lt;br /&gt;
| Learning || Dan Roth || 29&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11141</id>
		<title>Areas, chairs, and area submissions</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11141"/>
		<updated>2015-07-04T01:02:36Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: 2014&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.aclweb.org/anthology/P/P14/P14-1000.pdf ACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair  || Daniel Marcu (ISI/USC) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Kristina Toutanova (Microsoft Research), Hua Wu (Baidu) ||&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling and Psycholinguistics || Klinton Bicknell (Northwestern University) || 9, 14&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems || Asli Celikyilmaz (Microsoft Research) || 10, 8&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference and Pragmatics || Micha Elsner (Ohio State University), Michael Strube (HITS gGmbH) || 22, 20&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization, Sentiment Analysis and Topic Models || Jacob Eisenstein (Georgia Institute of Technology), Jun Zhao (Chinese Academy of Sciences) || 53, 48&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Barbara Di Eugenio (University of Illinois at Chicago) || 13, 7&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining || Marius Pasca (Google Research), Mihai Surdeanu (University of Arizona) || 54, 49&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || Ting	Liu (Harbin Institute of Technology) || 8, 9&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation || Nicoletta Calzolari (Institute of Computational Linguistics of the National Research Council), Nianwen Xue (Brandeis University) || 31, 28&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontology || Eneko Agirre (University of the Basque Country) || 26, 23&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Kevin Duh (Nara Institute of Science and Technology), Jason Eisner (Johns Hopkins University) || 39, 15&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Colin Cherry (National Research Council, Canada), Niyu Ge (IBM Research), Liang Huang (City University of New York), Yanjun Ma (Baidu) || 76, 72&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality and Multimodal NLP || Michel Galley (Microsoft Research) || 12, 14&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications and NLP-enabled Technology || Mamoru Komachi (Tokyo Metropolitan University) || 32, 34&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (Johns Hopkins University), Alan Ritter (Carnegie Mellon University) || 29, 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Iryna Gurevych (Technische Universität Darmstadt), Percy Liang (Stanford University), Shiqi Zhao (Baidu) || 53, 37&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Yang Liu (University of Texas at Dallas) || 19, 11&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Scott Wen-tau Yih (Microsoft Research) || 6, 4&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Ciprian Chelba (Google Research) || 9, 10&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Xavier Carreras (Universitat Politecnica de Catalunya), Slav Petrov (Google Research) || 35, 48&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology and Word Segmentation || Grzegorz Kondrak (University of Alberta) || 10, 18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2013 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modelling and Psycholinguistics || * || 13, 12&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems ||  || 15, 10&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference, and Pragmatics ||  || 28, 19&lt;br /&gt;
|-&lt;br /&gt;
| Evaluation Methods ||  || 11, 15&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||  || 20, 20&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources ||  || 24, 27&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontologies ||  || 25, 25&lt;br /&gt;
|-&lt;br /&gt;
| Low Resource Language Processing ||  || 10, 13&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Methods, Applications and Evaluations ||  || 50, 58&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Statistical Models ||  || 44, 30&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications ||  || 46, 42&lt;br /&gt;
|-&lt;br /&gt;
| NLP and Creativity ||  || 3, 4&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Languages of Central and Eastern Europe and The Balkans ||  || 2, 8&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media ||  || 32, 26&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering ||  || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Semantics ||  || 50, 32&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification ||  || 46, 60&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing ||  || 9, 12&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods in NLP ||  || 35, 32&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||  || 31, 23&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing ||  || 39, 43&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Chunking ||  || 12, 13&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Information Extraction ||  || 68, 53&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation ||  || 13, 15&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for ACL 2013: &lt;br /&gt;
&lt;br /&gt;
Frank Keller, Roger Levy, Amanda Stent, David Suendermann, Andrew Kehler, Becky Passonneau, Hang Li, Nancy Ide, Piek Vossen, Philipp Cimiano, Sabine Schulte im Walde, Dekang Lin, Chiori Hori, Keh-Yih Su, Roland Kuhn, Dekai Wu, Benjamin Snyder, Thamar Solorio, Ehud Reiter, Massimiliano Ciaramita, Ken Church, Carlo Strapparava, Tomaz Erjavec, Adam Prziepiorkowski, Patrick Pantel, Owen Rambow, Chris Dyer, Jason Eisner, Jennifer Chu-Carroll, Bernardo Magnini, Lluis Marquez, Alessandro Moschitti, Claire Cardie, Rada Mihalcea, Dilek Hakkani-Tur, Walter Daelemans, Dan Roth, Alex Koller, Ani Nenkova, Jamie Henderson, Sadao Kurohashi, Yuji Matsumoto, Heng Ji, Marie-Francine Moens, Hwee Tou Ng&lt;br /&gt;
&lt;br /&gt;
== ACL 2012 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Dialogue || Mikio Nakano, Andrei Popescu-Belis || 39, 23&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Information Retrieval || Jian Su, Jianfeng Gao, Vincent Ng || 64, 37&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Fei Xia || 15, 13&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics || Evgeniy Gabrilovich, Naoaki Okazaki || 38, 31&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon and Ontology ||  Eneko Agirre || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning || Trevor Cohn, Mark Dredze || 56, 28&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Marcello Federico, Adam Lopez, David Talbot, Hua Wu || 75, 56&lt;br /&gt;
|-&lt;br /&gt;
| Multilingual || Daniel M. Bikel, Mona T. Diab || 31, 15&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications || Jason Baldridge, David Weir || 41, 18&lt;br /&gt;
|-&lt;br /&gt;
| Syntax/Parsing || Stephen Clark, Liang Huang || 64, 36&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Hongyuan Zha, Hsin-Hsi Chen || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Social Media and Sentiment || Noah Smith, Jan Wiebe || 51, 32&lt;br /&gt;
|-&lt;br /&gt;
| Speech || Chung-Hsien Wu || 16, 12&lt;br /&gt;
|-&lt;br /&gt;
| Summarization &amp;amp; Generation || Anja Belz, Ani Nenkova || 20, 23&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation, Morphology and Phonology || Kemal Oflazer || 36, 23&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2011 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Anna Feldman, Greg Kondrak || 34,22&lt;br /&gt;
|-&lt;br /&gt;
|Syntax and Parsing || Xavier Carreras, Ryan McDonald  || 56,48&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Diana McCarthy, Deniz Yuret || 48, 41&lt;br /&gt;
|-&lt;br /&gt;
|Discourse, Dialogue, and Pragmatics || Kentaro Inui, Svetlana Stoyanchev|| 31, 23&lt;br /&gt;
|-&lt;br /&gt;
|Summarization and Generation || Yang Liu, Manabu Okumura  || 36, 35&lt;br /&gt;
|- &lt;br /&gt;
|Statistical and Machine Learning Methods ||Lluis Marquez, Alessandro Moschitti || 42, 27&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Statistical Models ||Shankar Kumar, Taro Watanabe || 56, 39&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Methods, Applications and Evaluations ||Elliott Macklovitch, Michel Simard || 33, 53&lt;br /&gt;
|-&lt;br /&gt;
|Information Retrieval ||  Fabrizio Sebastiani || 26, 11&lt;br /&gt;
|-&lt;br /&gt;
|Question Answering || Bernardo Magnini  || 19, 10&lt;br /&gt;
|-&lt;br /&gt;
|Text Mining and Information Extraction || Razvan Bunescu, Alexander Yates || 51, 38&lt;br /&gt;
|-&lt;br /&gt;
|Sentiment Analysis, Opinion Mining and Text Classification ||Katja Markert, Xiaojun Wan || 45, 38&lt;br /&gt;
|-&lt;br /&gt;
|Spoken Language Processing || Pascale Fung || 20, 13&lt;br /&gt;
|-&lt;br /&gt;
|Natural Language Processing Applications || Vasile Rus || 30, 51&lt;br /&gt;
|-&lt;br /&gt;
|Language Resources || Chu-Ren Huang, Dan Tufis|| 32, 26&lt;br /&gt;
|-&lt;br /&gt;
|Multilinguality || Thamar Solorio || 24, 16&lt;br /&gt;
|-&lt;br /&gt;
|NLP for Web 2.0 || Vivi Nastase || 31, 16&lt;br /&gt;
|-&lt;br /&gt;
|Linguistic Creativity || Carlo Strapparava || 20, 17&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long + short)&lt;br /&gt;
|- &lt;br /&gt;
| Lexical semantics || Tim Baldwin, Roberto Navigli || 87&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning|| Phil Blunsom, Walter Daelemans || 87&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction|| Kalina Bontcheva, Hang Li || 52&lt;br /&gt;
|-&lt;br /&gt;
| Formal semantics || Johan Bos || 24&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis || Claire Cardie, Theresa Wilson|| 69&lt;br /&gt;
|-&lt;br /&gt;
| Text mining || Rob Gaizauskas || 30&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Keith Hall, Chris Quirk|| 100&lt;br /&gt;
|-&lt;br /&gt;
| Speech processing|| Julia Hirschberg|| 33&lt;br /&gt;
|-&lt;br /&gt;
| Resources|| Nancy Ide|| 50&lt;br /&gt;
|-&lt;br /&gt;
| Multi-modal||Michael Johnston || 18&lt;br /&gt;
|-&lt;br /&gt;
| Psycholinguistics ||Roger Levy || 16&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering and paraphrasing|| Chin-Yew Lin || 40&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, grammatical inference, syntax||Yusuke Miyao, Khalil Sima&#039;an  || 88&lt;br /&gt;
|-&lt;br /&gt;
| Generation and summarisation || Ani Nenkova, Bonnie Webber|| 55&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and dialogue ||Jon Oberlander, Matthew Stone|| 56 &lt;br /&gt;
|-&lt;br /&gt;
| Mathematical linguistics||Stuart Shieber || 29&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, segmentation and morphology||Richard Sproat || 51&lt;br /&gt;
|-&lt;br /&gt;
| Bioinformatics || Jun&#039;ichi Tsujii|| 12&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || ChengXiang Zhai|| 33&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|- &lt;br /&gt;
| Machine Translation || Chris Callison-Burch, Qun Liu || 109&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Sebastian Pado, Takenobu Tokunaga || 102&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Text Classification || Bo Pang || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Gary Geunbae Lee || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Rosie Jones || 55&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Donia Scott || 53&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and NLP Applications || Ming Zhou || 50&lt;br /&gt;
|-&lt;br /&gt;
| Parsing || Sadao Kurohashi || 48&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods || David A Smith || 42&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Nicoletta Calzolari || 38&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Pragmatics || Caroline Sporleder || 38&lt;br /&gt;
|-&lt;br /&gt;
| Chinese Natural Language Processing || Nianwen Xue  || 34&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Morphology-Phonology || Rajeev Sangal || 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Grammar || Emily Bender || 28&lt;br /&gt;
|-&lt;br /&gt;
| Multilingualism || Pierre Isabelle || 26&lt;br /&gt;
|-&lt;br /&gt;
| Dialog and Multimodal || Justine Cassell || 16&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li || 9&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling || Roger Levy || 9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Greg Kondrak|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Noah Smith, James Curran || 47&lt;br /&gt;
|-&lt;br /&gt;
| Semantics|| Eneko Agirre, Rada Mihalcea|| 67&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Massimo Poesio, Michael Strube|| 41&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz|| 44&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods|| Jianfeng Gao, Jun Suzuki||36&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Hai Feng Wang, Philipp Koehn||80&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||Hsin-Hsi Chen ||29&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Ellen Riloff, Satoshi Sekine||52&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Giuseppe Carenini || 44&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing|| Helen Meng|| 20&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering|| Sanda Harabagiu|| 23&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications||Sophi Ananiadou ||19&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Keh-Jiann Chen || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D14/D14-1000.pdf EMNLP 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Alessandro Moschitti (Qatar Computing Research Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Walter Daelemans (University of Antwerp), Bo Pang (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, and Segmentation || Tomaž Erjavec (Jožef Stefan Institute) ||&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Gosse Bouma (University of Groningen), Yuji Matsumoto (Nara Institute of Science and Technology) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Jennifer Chu-Carroll (IBM Watson Research Center), Olga Uryupina (University of Trento) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Rada Mihalcea (University of Michigan), Sameer Pradhan (Harvard Medical School) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz (University of Brighton), Dilek Hakkani-Tür (Microsoft Research) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Ivan Titov (University of Amsterdam), Jerry Zhu (University of Wisconsin-Madison) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Chris Callison-Burch (University of Pennsylvania), Dan Gildea (University of Rochester) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, Text Categorization, and Question Answering || Sien Moens (Katholieke Universiteit Leuven), Hinrich Schütze (Ludwig Maximilian University of M&lt;br /&gt;
unich) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Doug Downey (Northwestern University), Marius Pasca (Google) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Massimiliano Ciaramita (Google), Hwee Tou Ng (National University of Singapore) ||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Yejin Choi (Stony Brook University), Minlie Huang (Tsinghua University) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Irwin King (The Chinese University of Hong Kong), Qiaozhu Mei (University of Michigan) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Pascale Fung (Hong Kong University of Science and Technology), Hugo Van hamme (Katholieke Universiteit Leuven) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Psycholinguistics || Sharon Goldwater (University of Edinburgh) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D13/D13-1000.pdf EMNLP 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || David Yarowsky (John Hopkins University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Timothy Baldwin (University of Melbourne, Australia), Anna Korhonen (University of Cambridge, UK) || &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, Tagging, Chunking and Segmentation || Kemal Oflazer (Carnegie Mellon University Qatar), Anna Feldman (Montclair State University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Jennifer Foster (Dublin City University, Ireland), Yoav Goldberg (Bar Ilan University, Israel) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Mark Stevenson (University of Sheffield, UK), Luke Zettlemoyer (University of Washington, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Carolyn Rose (Carnegie Mellon University, USA), Matt Purver (Queen Mary, University of London, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language resources || Emily M. Bender (University of Washington, USA), Aline Villavicencio (Federal University of Rio Grande do Sul, Brazil) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Dragomir Radev (University of Michigan, USA), Yang Liu (University of Texas at Dallas, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Amir Globerson (The Hebrew University of Jerusalem, Israel), Antal van den Bosch (Radboud University &lt;br /&gt;
Nijmegen, Netherlands) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Taro Watanabe (NICT, Japan), Kevin Knight (Information Sciences Institute, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Bernardo Magnini (Fondazione Bruno Kessler, Italy), Soumen Chakrabarti (Indian Institute of Technology, India) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Mausam (Indian Institute of Technology, India), Heng Ji (City University of New York, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li (Institute for Infocomm Research, Singapore), Amanda Stent (AT&amp;amp;T Labs, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Hang Li (Huawei Noah’s Ark Lab, Hong Kong), Kevin Cohen (University of Colorado School of Medicine, USA) &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Janyce Weibe (University of Pittsburgh, USA), Bing Liu (University of Illinois at Chicago, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (University of Edinburgh, UK), Chin-Yew Lin (Microsoft Research Asia, China) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Models of Human Language Acquisition and Processing || Alessandro Lenci (University of Pisa, Italy), Afra Alishahi (Tilburg University, Netherlands) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D12/D12-1000.pdf EMNLP 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jun’ichi Tsujii (Microsoft Research Asia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || James Henderson (Xerox Research Centre Europe), Marius Pasca (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2012:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yejin Choi (Stony Brook University), Hal Daume III (University of Maryland), Doug Downey (Northwestern University), Chris Dyer (Carnegie Mellon University), Adria de Gispert (University of Cambridge), Julia Hirschberg (Columbia University), Anna Korhonen (University of Cambridge), Bing Liu (University of Illinois at Chicago), Hwee Tou Ng (National University of Singapore), Patrick Pantel (Microsoft Research), Marco Pennacchiotti (Yahoo! Labs), Slav Petrov (Google), Simone Paolo Ponzetto (Sapienza University of Rome), John Prager (IBM Research), Chris Quirk (Microsoft Research), Sebastian Riedel (University of Massachusetts at Amherst), Hiroya Takamura (Tokyo Institute of Technology), Partha Talukdar (Carnegie Mellon University), Carnegie Mellon University (Microsoft Research), Reut Tsarfaty (Uppsala University), Marilyn Walker (University of California at Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D11/D11-1000.pdf EMNLP 2011] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Paola Merlo (University of Geneva) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Regina Barzilay (Massachusetts Institute of Technology), Mark Johnson (Macquarie University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2011:&lt;br /&gt;
&lt;br /&gt;
Emily M. Bender (University of Washington), Phil Blunsom (University of Oxford), Eugene Charniak (Brown University), Chris Dyer (Carnegie Mellon University), Jenny Finkel (Columbia University), Radu Florian (IBM Watson Research Center), Amir Globerson (The Hebrew University of Jerusalem), Keith Hall (Google Research), Minlie Huang (Tsinghua University), Katrin Kirchhoff (University of Washington), Mirella Lapata (University of Edinburgh), Chin-Yew Lin (Microsoft Research Asia), Bo Pang (Yahoo! Research), Stefan Riezler (University of Heidelberg), Ellen Riloff (University of Utah), Hinrich Schuetze (University of Stuttgart), Jian Su (Institute for Infocomm Research), Dekai Wu (Hong Kong University of Science and Technology), Luke Zettlemoyer (University of Washington)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D10/D10-1000.pdf EMNLP 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hang Li (Microsoft Research Asia), Llu´ıs Marquez (Technical University of Catalonia) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2010:&lt;br /&gt;
&lt;br /&gt;
Eneko Agirre (University of the Basque Country), Kalina Bontcheva (University of Sheffield), Antal van den Bosch (Tilburg University), David Chiang (USC Information Sciences Institute), Jennifer Chu-Carroll (IBM Research), Evgeniy Gabrilovich (Yahoo! Research), Jianfeng Gao (Microsoft Research), Julio Gonzalo (UNED), Nancy Ide (Vassar College), Haizhou Li (Institute for Infocomm Research), Qun Liu (ICT, Chinese Academy of Sciences), Yusuke Miyao (National Institute of Informatics), Bo Pang (Yahoo! Research), Dragomir Radev (University of Michigan), Noah Smith (Carnegie Mellon University), Kristina Toutanova (Microsoft Research), Yoshimasa Tsuruoka (JAIST), Yi Zhang (University of California, Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== EMNLP 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Jason Eisner || 24&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Steve Clark|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics||Vivi Nastase || 45&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Tim Paek|| 28&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||Chin-Yew Lin || 25&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods||Miles Osborne ||32&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Adam Lopez ||68&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering||Hang Li ||33&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining||Marius Pasca ||39&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Theresa Wilson || 37&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing||Eric Fosler-Lussier || 11&lt;br /&gt;
|-&lt;br /&gt;
| Natural Language Processing Applications||Carlo Strapparava ||22&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Katrin Erk || 26&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality|| Mona Diab||22&lt;br /&gt;
|-&lt;br /&gt;
| NLP for Web 2.0|| Iryna Gurevych||20&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2008 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon, lexical semantics, word sense disambiguation || Paul Buitelaar || 45&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Stephen Pulman Mary Dalrymple || 46&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, dialogue || Eva Hajicova || 24&lt;br /&gt;
|-&lt;br /&gt;
| NLG, summarisation || Robert Dale || 36&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, morphology, grammar learning || Mark Johnson || 68&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation and Multilinguality || Pierre Isabelle, Miles Osborne || 86&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, text and web mining, multimedia || Junichi Tsujii || 54&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction, opinion and sentiment Analysis || Rob Gaizauskus || 24&lt;br /&gt;
|-&lt;br /&gt;
| Paraphrasing and Textual Entailment || Bill Dolan || 21&lt;br /&gt;
|-&lt;br /&gt;
| Speech and multimodality || Julia Hirschberg || 16&lt;br /&gt;
|-&lt;br /&gt;
| Resources || Chu-Ren Huang || 56&lt;br /&gt;
|-&lt;br /&gt;
| Learning || Dan Roth || 29&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11140</id>
		<title>Areas, chairs, and area submissions</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11140"/>
		<updated>2015-07-04T00:58:19Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: EMNLP 2013&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.aclweb.org/anthology/P/P14/P14-1000.pdf ACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair  || Daniel Marcu (ISI/USC) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Kristina Toutanova (Microsoft Research), Hua Wu (Baidu) ||&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling and Psycholinguistics || Klinton Bicknell (Northwestern University) || 9, 14&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems || Asli Celikyilmaz (Microsoft Research) || 10, 8&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference and Pragmatics || Micha Elsner (Ohio State University), Michael Strube (HITS gGmbH) || 22, 20&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization, Sentiment Analysis and Topic Models || Jacob Eisenstein (Georgia Institute of Technology), Jun Zhao (Chinese Academy of Sciences) || 53, 48&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Barbara Di Eugenio (University of Illinois at Chicago) || 13, 7&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining || Marius Pasca (Google Research), Mihai Surdeanu (University of Arizona) || 54, 49&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || Ting	Liu (Harbin Institute of Technology) || 8, 9&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation || Nicoletta Calzolari (Institute of Computational Linguistics of the National Research Council), Nianwen Xue (Brandeis University) || 31, 28&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontology || Eneko Agirre (University of the Basque Country) || 26, 23&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Kevin Duh (Nara Institute of Science and Technology), Jason Eisner (Johns Hopkins University) || 39, 15&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Colin Cherry (National Research Council, Canada), Niyu Ge (IBM Research), Liang Huang (City University of New York), Yanjun Ma (Baidu) || 76, 72&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality and Multimodal NLP || Michel Galley (Microsoft Research) || 12, 14&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications and NLP-enabled Technology || Mamoru Komachi (Tokyo Metropolitan University) || 32, 34&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (Johns Hopkins University), Alan Ritter (Carnegie Mellon University) || 29, 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Iryna Gurevych (Technische Universität Darmstadt), Percy Liang (Stanford University), Shiqi Zhao (Baidu) || 53, 37&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Yang Liu (University of Texas at Dallas) || 19, 11&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Scott Wen-tau Yih (Microsoft Research) || 6, 4&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Ciprian Chelba (Google Research) || 9, 10&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Xavier Carreras (Universitat Politecnica de Catalunya), Slav Petrov (Google Research) || 35, 48&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology and Word Segmentation || Grzegorz Kondrak (University of Alberta) || 10, 18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2013 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modelling and Psycholinguistics || * || 13, 12&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems ||  || 15, 10&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference, and Pragmatics ||  || 28, 19&lt;br /&gt;
|-&lt;br /&gt;
| Evaluation Methods ||  || 11, 15&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||  || 20, 20&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources ||  || 24, 27&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontologies ||  || 25, 25&lt;br /&gt;
|-&lt;br /&gt;
| Low Resource Language Processing ||  || 10, 13&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Methods, Applications and Evaluations ||  || 50, 58&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Statistical Models ||  || 44, 30&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications ||  || 46, 42&lt;br /&gt;
|-&lt;br /&gt;
| NLP and Creativity ||  || 3, 4&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Languages of Central and Eastern Europe and The Balkans ||  || 2, 8&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media ||  || 32, 26&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering ||  || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Semantics ||  || 50, 32&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification ||  || 46, 60&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing ||  || 9, 12&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods in NLP ||  || 35, 32&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||  || 31, 23&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing ||  || 39, 43&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Chunking ||  || 12, 13&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Information Extraction ||  || 68, 53&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation ||  || 13, 15&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for ACL 2013: &lt;br /&gt;
&lt;br /&gt;
Frank Keller, Roger Levy, Amanda Stent, David Suendermann, Andrew Kehler, Becky Passonneau, Hang Li, Nancy Ide, Piek Vossen, Philipp Cimiano, Sabine Schulte im Walde, Dekang Lin, Chiori Hori, Keh-Yih Su, Roland Kuhn, Dekai Wu, Benjamin Snyder, Thamar Solorio, Ehud Reiter, Massimiliano Ciaramita, Ken Church, Carlo Strapparava, Tomaz Erjavec, Adam Prziepiorkowski, Patrick Pantel, Owen Rambow, Chris Dyer, Jason Eisner, Jennifer Chu-Carroll, Bernardo Magnini, Lluis Marquez, Alessandro Moschitti, Claire Cardie, Rada Mihalcea, Dilek Hakkani-Tur, Walter Daelemans, Dan Roth, Alex Koller, Ani Nenkova, Jamie Henderson, Sadao Kurohashi, Yuji Matsumoto, Heng Ji, Marie-Francine Moens, Hwee Tou Ng&lt;br /&gt;
&lt;br /&gt;
== ACL 2012 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Dialogue || Mikio Nakano, Andrei Popescu-Belis || 39, 23&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Information Retrieval || Jian Su, Jianfeng Gao, Vincent Ng || 64, 37&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Fei Xia || 15, 13&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics || Evgeniy Gabrilovich, Naoaki Okazaki || 38, 31&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon and Ontology ||  Eneko Agirre || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning || Trevor Cohn, Mark Dredze || 56, 28&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Marcello Federico, Adam Lopez, David Talbot, Hua Wu || 75, 56&lt;br /&gt;
|-&lt;br /&gt;
| Multilingual || Daniel M. Bikel, Mona T. Diab || 31, 15&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications || Jason Baldridge, David Weir || 41, 18&lt;br /&gt;
|-&lt;br /&gt;
| Syntax/Parsing || Stephen Clark, Liang Huang || 64, 36&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Hongyuan Zha, Hsin-Hsi Chen || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Social Media and Sentiment || Noah Smith, Jan Wiebe || 51, 32&lt;br /&gt;
|-&lt;br /&gt;
| Speech || Chung-Hsien Wu || 16, 12&lt;br /&gt;
|-&lt;br /&gt;
| Summarization &amp;amp; Generation || Anja Belz, Ani Nenkova || 20, 23&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation, Morphology and Phonology || Kemal Oflazer || 36, 23&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2011 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Anna Feldman, Greg Kondrak || 34,22&lt;br /&gt;
|-&lt;br /&gt;
|Syntax and Parsing || Xavier Carreras, Ryan McDonald  || 56,48&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Diana McCarthy, Deniz Yuret || 48, 41&lt;br /&gt;
|-&lt;br /&gt;
|Discourse, Dialogue, and Pragmatics || Kentaro Inui, Svetlana Stoyanchev|| 31, 23&lt;br /&gt;
|-&lt;br /&gt;
|Summarization and Generation || Yang Liu, Manabu Okumura  || 36, 35&lt;br /&gt;
|- &lt;br /&gt;
|Statistical and Machine Learning Methods ||Lluis Marquez, Alessandro Moschitti || 42, 27&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Statistical Models ||Shankar Kumar, Taro Watanabe || 56, 39&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Methods, Applications and Evaluations ||Elliott Macklovitch, Michel Simard || 33, 53&lt;br /&gt;
|-&lt;br /&gt;
|Information Retrieval ||  Fabrizio Sebastiani || 26, 11&lt;br /&gt;
|-&lt;br /&gt;
|Question Answering || Bernardo Magnini  || 19, 10&lt;br /&gt;
|-&lt;br /&gt;
|Text Mining and Information Extraction || Razvan Bunescu, Alexander Yates || 51, 38&lt;br /&gt;
|-&lt;br /&gt;
|Sentiment Analysis, Opinion Mining and Text Classification ||Katja Markert, Xiaojun Wan || 45, 38&lt;br /&gt;
|-&lt;br /&gt;
|Spoken Language Processing || Pascale Fung || 20, 13&lt;br /&gt;
|-&lt;br /&gt;
|Natural Language Processing Applications || Vasile Rus || 30, 51&lt;br /&gt;
|-&lt;br /&gt;
|Language Resources || Chu-Ren Huang, Dan Tufis|| 32, 26&lt;br /&gt;
|-&lt;br /&gt;
|Multilinguality || Thamar Solorio || 24, 16&lt;br /&gt;
|-&lt;br /&gt;
|NLP for Web 2.0 || Vivi Nastase || 31, 16&lt;br /&gt;
|-&lt;br /&gt;
|Linguistic Creativity || Carlo Strapparava || 20, 17&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long + short)&lt;br /&gt;
|- &lt;br /&gt;
| Lexical semantics || Tim Baldwin, Roberto Navigli || 87&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning|| Phil Blunsom, Walter Daelemans || 87&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction|| Kalina Bontcheva, Hang Li || 52&lt;br /&gt;
|-&lt;br /&gt;
| Formal semantics || Johan Bos || 24&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis || Claire Cardie, Theresa Wilson|| 69&lt;br /&gt;
|-&lt;br /&gt;
| Text mining || Rob Gaizauskas || 30&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Keith Hall, Chris Quirk|| 100&lt;br /&gt;
|-&lt;br /&gt;
| Speech processing|| Julia Hirschberg|| 33&lt;br /&gt;
|-&lt;br /&gt;
| Resources|| Nancy Ide|| 50&lt;br /&gt;
|-&lt;br /&gt;
| Multi-modal||Michael Johnston || 18&lt;br /&gt;
|-&lt;br /&gt;
| Psycholinguistics ||Roger Levy || 16&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering and paraphrasing|| Chin-Yew Lin || 40&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, grammatical inference, syntax||Yusuke Miyao, Khalil Sima&#039;an  || 88&lt;br /&gt;
|-&lt;br /&gt;
| Generation and summarisation || Ani Nenkova, Bonnie Webber|| 55&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and dialogue ||Jon Oberlander, Matthew Stone|| 56 &lt;br /&gt;
|-&lt;br /&gt;
| Mathematical linguistics||Stuart Shieber || 29&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, segmentation and morphology||Richard Sproat || 51&lt;br /&gt;
|-&lt;br /&gt;
| Bioinformatics || Jun&#039;ichi Tsujii|| 12&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || ChengXiang Zhai|| 33&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|- &lt;br /&gt;
| Machine Translation || Chris Callison-Burch, Qun Liu || 109&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Sebastian Pado, Takenobu Tokunaga || 102&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Text Classification || Bo Pang || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Gary Geunbae Lee || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Rosie Jones || 55&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Donia Scott || 53&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and NLP Applications || Ming Zhou || 50&lt;br /&gt;
|-&lt;br /&gt;
| Parsing || Sadao Kurohashi || 48&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods || David A Smith || 42&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Nicoletta Calzolari || 38&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Pragmatics || Caroline Sporleder || 38&lt;br /&gt;
|-&lt;br /&gt;
| Chinese Natural Language Processing || Nianwen Xue  || 34&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Morphology-Phonology || Rajeev Sangal || 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Grammar || Emily Bender || 28&lt;br /&gt;
|-&lt;br /&gt;
| Multilingualism || Pierre Isabelle || 26&lt;br /&gt;
|-&lt;br /&gt;
| Dialog and Multimodal || Justine Cassell || 16&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li || 9&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling || Roger Levy || 9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Greg Kondrak|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Noah Smith, James Curran || 47&lt;br /&gt;
|-&lt;br /&gt;
| Semantics|| Eneko Agirre, Rada Mihalcea|| 67&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Massimo Poesio, Michael Strube|| 41&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz|| 44&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods|| Jianfeng Gao, Jun Suzuki||36&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Hai Feng Wang, Philipp Koehn||80&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||Hsin-Hsi Chen ||29&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Ellen Riloff, Satoshi Sekine||52&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Giuseppe Carenini || 44&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing|| Helen Meng|| 20&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering|| Sanda Harabagiu|| 23&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications||Sophi Ananiadou ||19&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Keh-Jiann Chen || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D13/D13-1000.pdf EMNLP 2013] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || David Yarowsky (John Hopkins University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Timothy Baldwin (University of Melbourne, Australia), Anna Korhonen (University of Cambridge, UK) || &lt;br /&gt;
|-&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology, Tagging, Chunking and Segmentation || Kemal Oflazer (Carnegie Mellon University Qatar), Anna Feldman (Montclair State University, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Jennifer Foster (Dublin City University, Ireland), Yoav Goldberg (Bar Ilan University, Israel) ||&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Mark Stevenson (University of Sheffield, UK), Luke Zettlemoyer (University of Washington, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics || Carolyn Rose (Carnegie Mellon University, USA), Matt Purver (Queen Mary, University of London, UK) ||&lt;br /&gt;
|-&lt;br /&gt;
| Language resources || Emily M. Bender (University of Washington, USA), Aline Villavicencio (Federal University of Rio Grande do Sul, Brazil) ||&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Dragomir Radev (University of Michigan, USA), Yang Liu (University of Texas at Dallas, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP-related Machine Learning: theory, methods and algorithms || Amir Globerson (The Hebrew University of Jerusalem, Israel), Antal van den Bosch (Radboud University &lt;br /&gt;
Nijmegen, Netherlands) ||&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Taro Watanabe (NICT, Japan), Kevin Knight (Information Sciences Institute, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Bernardo Magnini (Fondazione Bruno Kessler, Italy), Soumen Chakrabarti (Indian Institute of Technology, India) ||&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Mausam (Indian Institute of Technology, India), Heng Ji (City University of New York, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li (Institute for Infocomm Research, Singapore), Amanda Stent (AT&amp;amp;T Labs, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications || Hang Li (Huawei Noah’s Ark Lab, Hong Kong), Kevin Cohen (University of Colorado School of Medicine, USA) &lt;br /&gt;
||&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Opinion Mining || Janyce Weibe (University of Pittsburgh, USA), Bing Liu (University of Illinois at Chicago, USA) ||&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (University of Edinburgh, UK), Chin-Yew Lin (Microsoft Research Asia, China) ||&lt;br /&gt;
|-&lt;br /&gt;
| Computational Models of Human Language Acquisition and Processing || Alessandro Lenci (University of Pisa, Italy), Afra Alishahi (Tilburg University, Netherlands) ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D12/D12-1000.pdf EMNLP 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jun’ichi Tsujii (Microsoft Research Asia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || James Henderson (Xerox Research Centre Europe), Marius Pasca (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2012:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yejin Choi (Stony Brook University), Hal Daume III (University of Maryland), Doug Downey (Northwestern University), Chris Dyer (Carnegie Mellon University), Adria de Gispert (University of Cambridge), Julia Hirschberg (Columbia University), Anna Korhonen (University of Cambridge), Bing Liu (University of Illinois at Chicago), Hwee Tou Ng (National University of Singapore), Patrick Pantel (Microsoft Research), Marco Pennacchiotti (Yahoo! Labs), Slav Petrov (Google), Simone Paolo Ponzetto (Sapienza University of Rome), John Prager (IBM Research), Chris Quirk (Microsoft Research), Sebastian Riedel (University of Massachusetts at Amherst), Hiroya Takamura (Tokyo Institute of Technology), Partha Talukdar (Carnegie Mellon University), Carnegie Mellon University (Microsoft Research), Reut Tsarfaty (Uppsala University), Marilyn Walker (University of California at Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D11/D11-1000.pdf EMNLP 2011] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Paola Merlo (University of Geneva) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Regina Barzilay (Massachusetts Institute of Technology), Mark Johnson (Macquarie University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2011:&lt;br /&gt;
&lt;br /&gt;
Emily M. Bender (University of Washington), Phil Blunsom (University of Oxford), Eugene Charniak (Brown University), Chris Dyer (Carnegie Mellon University), Jenny Finkel (Columbia University), Radu Florian (IBM Watson Research Center), Amir Globerson (The Hebrew University of Jerusalem), Keith Hall (Google Research), Minlie Huang (Tsinghua University), Katrin Kirchhoff (University of Washington), Mirella Lapata (University of Edinburgh), Chin-Yew Lin (Microsoft Research Asia), Bo Pang (Yahoo! Research), Stefan Riezler (University of Heidelberg), Ellen Riloff (University of Utah), Hinrich Schuetze (University of Stuttgart), Jian Su (Institute for Infocomm Research), Dekai Wu (Hong Kong University of Science and Technology), Luke Zettlemoyer (University of Washington)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D10/D10-1000.pdf EMNLP 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hang Li (Microsoft Research Asia), Llu´ıs Marquez (Technical University of Catalonia) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2010:&lt;br /&gt;
&lt;br /&gt;
Eneko Agirre (University of the Basque Country), Kalina Bontcheva (University of Sheffield), Antal van den Bosch (Tilburg University), David Chiang (USC Information Sciences Institute), Jennifer Chu-Carroll (IBM Research), Evgeniy Gabrilovich (Yahoo! Research), Jianfeng Gao (Microsoft Research), Julio Gonzalo (UNED), Nancy Ide (Vassar College), Haizhou Li (Institute for Infocomm Research), Qun Liu (ICT, Chinese Academy of Sciences), Yusuke Miyao (National Institute of Informatics), Bo Pang (Yahoo! Research), Dragomir Radev (University of Michigan), Noah Smith (Carnegie Mellon University), Kristina Toutanova (Microsoft Research), Yoshimasa Tsuruoka (JAIST), Yi Zhang (University of California, Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== EMNLP 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Jason Eisner || 24&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Steve Clark|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics||Vivi Nastase || 45&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Tim Paek|| 28&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||Chin-Yew Lin || 25&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods||Miles Osborne ||32&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Adam Lopez ||68&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering||Hang Li ||33&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining||Marius Pasca ||39&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Theresa Wilson || 37&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing||Eric Fosler-Lussier || 11&lt;br /&gt;
|-&lt;br /&gt;
| Natural Language Processing Applications||Carlo Strapparava ||22&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Katrin Erk || 26&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality|| Mona Diab||22&lt;br /&gt;
|-&lt;br /&gt;
| NLP for Web 2.0|| Iryna Gurevych||20&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2008 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon, lexical semantics, word sense disambiguation || Paul Buitelaar || 45&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Stephen Pulman Mary Dalrymple || 46&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, dialogue || Eva Hajicova || 24&lt;br /&gt;
|-&lt;br /&gt;
| NLG, summarisation || Robert Dale || 36&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, morphology, grammar learning || Mark Johnson || 68&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation and Multilinguality || Pierre Isabelle, Miles Osborne || 86&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, text and web mining, multimedia || Junichi Tsujii || 54&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction, opinion and sentiment Analysis || Rob Gaizauskus || 24&lt;br /&gt;
|-&lt;br /&gt;
| Paraphrasing and Textual Entailment || Bill Dolan || 21&lt;br /&gt;
|-&lt;br /&gt;
| Speech and multimodality || Julia Hirschberg || 16&lt;br /&gt;
|-&lt;br /&gt;
| Resources || Chu-Ren Huang || 56&lt;br /&gt;
|-&lt;br /&gt;
| Learning || Dan Roth || 29&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11139</id>
		<title>Areas, chairs, and area submissions</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11139"/>
		<updated>2015-07-04T00:52:21Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: EMNLP 2012&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.aclweb.org/anthology/P/P14/P14-1000.pdf ACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair  || Daniel Marcu (ISI/USC) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Kristina Toutanova (Microsoft Research), Hua Wu (Baidu) ||&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling and Psycholinguistics || Klinton Bicknell (Northwestern University) || 9, 14&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems || Asli Celikyilmaz (Microsoft Research) || 10, 8&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference and Pragmatics || Micha Elsner (Ohio State University), Michael Strube (HITS gGmbH) || 22, 20&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization, Sentiment Analysis and Topic Models || Jacob Eisenstein (Georgia Institute of Technology), Jun Zhao (Chinese Academy of Sciences) || 53, 48&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Barbara Di Eugenio (University of Illinois at Chicago) || 13, 7&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining || Marius Pasca (Google Research), Mihai Surdeanu (University of Arizona) || 54, 49&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || Ting	Liu (Harbin Institute of Technology) || 8, 9&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation || Nicoletta Calzolari (Institute of Computational Linguistics of the National Research Council), Nianwen Xue (Brandeis University) || 31, 28&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontology || Eneko Agirre (University of the Basque Country) || 26, 23&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Kevin Duh (Nara Institute of Science and Technology), Jason Eisner (Johns Hopkins University) || 39, 15&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Colin Cherry (National Research Council, Canada), Niyu Ge (IBM Research), Liang Huang (City University of New York), Yanjun Ma (Baidu) || 76, 72&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality and Multimodal NLP || Michel Galley (Microsoft Research) || 12, 14&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications and NLP-enabled Technology || Mamoru Komachi (Tokyo Metropolitan University) || 32, 34&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (Johns Hopkins University), Alan Ritter (Carnegie Mellon University) || 29, 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Iryna Gurevych (Technische Universität Darmstadt), Percy Liang (Stanford University), Shiqi Zhao (Baidu) || 53, 37&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Yang Liu (University of Texas at Dallas) || 19, 11&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Scott Wen-tau Yih (Microsoft Research) || 6, 4&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Ciprian Chelba (Google Research) || 9, 10&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Xavier Carreras (Universitat Politecnica de Catalunya), Slav Petrov (Google Research) || 35, 48&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology and Word Segmentation || Grzegorz Kondrak (University of Alberta) || 10, 18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2013 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modelling and Psycholinguistics || * || 13, 12&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems ||  || 15, 10&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference, and Pragmatics ||  || 28, 19&lt;br /&gt;
|-&lt;br /&gt;
| Evaluation Methods ||  || 11, 15&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||  || 20, 20&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources ||  || 24, 27&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontologies ||  || 25, 25&lt;br /&gt;
|-&lt;br /&gt;
| Low Resource Language Processing ||  || 10, 13&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Methods, Applications and Evaluations ||  || 50, 58&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Statistical Models ||  || 44, 30&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications ||  || 46, 42&lt;br /&gt;
|-&lt;br /&gt;
| NLP and Creativity ||  || 3, 4&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Languages of Central and Eastern Europe and The Balkans ||  || 2, 8&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media ||  || 32, 26&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering ||  || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Semantics ||  || 50, 32&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification ||  || 46, 60&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing ||  || 9, 12&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods in NLP ||  || 35, 32&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||  || 31, 23&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing ||  || 39, 43&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Chunking ||  || 12, 13&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Information Extraction ||  || 68, 53&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation ||  || 13, 15&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for ACL 2013: &lt;br /&gt;
&lt;br /&gt;
Frank Keller, Roger Levy, Amanda Stent, David Suendermann, Andrew Kehler, Becky Passonneau, Hang Li, Nancy Ide, Piek Vossen, Philipp Cimiano, Sabine Schulte im Walde, Dekang Lin, Chiori Hori, Keh-Yih Su, Roland Kuhn, Dekai Wu, Benjamin Snyder, Thamar Solorio, Ehud Reiter, Massimiliano Ciaramita, Ken Church, Carlo Strapparava, Tomaz Erjavec, Adam Prziepiorkowski, Patrick Pantel, Owen Rambow, Chris Dyer, Jason Eisner, Jennifer Chu-Carroll, Bernardo Magnini, Lluis Marquez, Alessandro Moschitti, Claire Cardie, Rada Mihalcea, Dilek Hakkani-Tur, Walter Daelemans, Dan Roth, Alex Koller, Ani Nenkova, Jamie Henderson, Sadao Kurohashi, Yuji Matsumoto, Heng Ji, Marie-Francine Moens, Hwee Tou Ng&lt;br /&gt;
&lt;br /&gt;
== ACL 2012 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Dialogue || Mikio Nakano, Andrei Popescu-Belis || 39, 23&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Information Retrieval || Jian Su, Jianfeng Gao, Vincent Ng || 64, 37&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Fei Xia || 15, 13&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics || Evgeniy Gabrilovich, Naoaki Okazaki || 38, 31&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon and Ontology ||  Eneko Agirre || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning || Trevor Cohn, Mark Dredze || 56, 28&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Marcello Federico, Adam Lopez, David Talbot, Hua Wu || 75, 56&lt;br /&gt;
|-&lt;br /&gt;
| Multilingual || Daniel M. Bikel, Mona T. Diab || 31, 15&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications || Jason Baldridge, David Weir || 41, 18&lt;br /&gt;
|-&lt;br /&gt;
| Syntax/Parsing || Stephen Clark, Liang Huang || 64, 36&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Hongyuan Zha, Hsin-Hsi Chen || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Social Media and Sentiment || Noah Smith, Jan Wiebe || 51, 32&lt;br /&gt;
|-&lt;br /&gt;
| Speech || Chung-Hsien Wu || 16, 12&lt;br /&gt;
|-&lt;br /&gt;
| Summarization &amp;amp; Generation || Anja Belz, Ani Nenkova || 20, 23&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation, Morphology and Phonology || Kemal Oflazer || 36, 23&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2011 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Anna Feldman, Greg Kondrak || 34,22&lt;br /&gt;
|-&lt;br /&gt;
|Syntax and Parsing || Xavier Carreras, Ryan McDonald  || 56,48&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Diana McCarthy, Deniz Yuret || 48, 41&lt;br /&gt;
|-&lt;br /&gt;
|Discourse, Dialogue, and Pragmatics || Kentaro Inui, Svetlana Stoyanchev|| 31, 23&lt;br /&gt;
|-&lt;br /&gt;
|Summarization and Generation || Yang Liu, Manabu Okumura  || 36, 35&lt;br /&gt;
|- &lt;br /&gt;
|Statistical and Machine Learning Methods ||Lluis Marquez, Alessandro Moschitti || 42, 27&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Statistical Models ||Shankar Kumar, Taro Watanabe || 56, 39&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Methods, Applications and Evaluations ||Elliott Macklovitch, Michel Simard || 33, 53&lt;br /&gt;
|-&lt;br /&gt;
|Information Retrieval ||  Fabrizio Sebastiani || 26, 11&lt;br /&gt;
|-&lt;br /&gt;
|Question Answering || Bernardo Magnini  || 19, 10&lt;br /&gt;
|-&lt;br /&gt;
|Text Mining and Information Extraction || Razvan Bunescu, Alexander Yates || 51, 38&lt;br /&gt;
|-&lt;br /&gt;
|Sentiment Analysis, Opinion Mining and Text Classification ||Katja Markert, Xiaojun Wan || 45, 38&lt;br /&gt;
|-&lt;br /&gt;
|Spoken Language Processing || Pascale Fung || 20, 13&lt;br /&gt;
|-&lt;br /&gt;
|Natural Language Processing Applications || Vasile Rus || 30, 51&lt;br /&gt;
|-&lt;br /&gt;
|Language Resources || Chu-Ren Huang, Dan Tufis|| 32, 26&lt;br /&gt;
|-&lt;br /&gt;
|Multilinguality || Thamar Solorio || 24, 16&lt;br /&gt;
|-&lt;br /&gt;
|NLP for Web 2.0 || Vivi Nastase || 31, 16&lt;br /&gt;
|-&lt;br /&gt;
|Linguistic Creativity || Carlo Strapparava || 20, 17&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long + short)&lt;br /&gt;
|- &lt;br /&gt;
| Lexical semantics || Tim Baldwin, Roberto Navigli || 87&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning|| Phil Blunsom, Walter Daelemans || 87&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction|| Kalina Bontcheva, Hang Li || 52&lt;br /&gt;
|-&lt;br /&gt;
| Formal semantics || Johan Bos || 24&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis || Claire Cardie, Theresa Wilson|| 69&lt;br /&gt;
|-&lt;br /&gt;
| Text mining || Rob Gaizauskas || 30&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Keith Hall, Chris Quirk|| 100&lt;br /&gt;
|-&lt;br /&gt;
| Speech processing|| Julia Hirschberg|| 33&lt;br /&gt;
|-&lt;br /&gt;
| Resources|| Nancy Ide|| 50&lt;br /&gt;
|-&lt;br /&gt;
| Multi-modal||Michael Johnston || 18&lt;br /&gt;
|-&lt;br /&gt;
| Psycholinguistics ||Roger Levy || 16&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering and paraphrasing|| Chin-Yew Lin || 40&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, grammatical inference, syntax||Yusuke Miyao, Khalil Sima&#039;an  || 88&lt;br /&gt;
|-&lt;br /&gt;
| Generation and summarisation || Ani Nenkova, Bonnie Webber|| 55&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and dialogue ||Jon Oberlander, Matthew Stone|| 56 &lt;br /&gt;
|-&lt;br /&gt;
| Mathematical linguistics||Stuart Shieber || 29&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, segmentation and morphology||Richard Sproat || 51&lt;br /&gt;
|-&lt;br /&gt;
| Bioinformatics || Jun&#039;ichi Tsujii|| 12&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || ChengXiang Zhai|| 33&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|- &lt;br /&gt;
| Machine Translation || Chris Callison-Burch, Qun Liu || 109&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Sebastian Pado, Takenobu Tokunaga || 102&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Text Classification || Bo Pang || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Gary Geunbae Lee || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Rosie Jones || 55&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Donia Scott || 53&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and NLP Applications || Ming Zhou || 50&lt;br /&gt;
|-&lt;br /&gt;
| Parsing || Sadao Kurohashi || 48&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods || David A Smith || 42&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Nicoletta Calzolari || 38&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Pragmatics || Caroline Sporleder || 38&lt;br /&gt;
|-&lt;br /&gt;
| Chinese Natural Language Processing || Nianwen Xue  || 34&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Morphology-Phonology || Rajeev Sangal || 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Grammar || Emily Bender || 28&lt;br /&gt;
|-&lt;br /&gt;
| Multilingualism || Pierre Isabelle || 26&lt;br /&gt;
|-&lt;br /&gt;
| Dialog and Multimodal || Justine Cassell || 16&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li || 9&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling || Roger Levy || 9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Greg Kondrak|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Noah Smith, James Curran || 47&lt;br /&gt;
|-&lt;br /&gt;
| Semantics|| Eneko Agirre, Rada Mihalcea|| 67&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Massimo Poesio, Michael Strube|| 41&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz|| 44&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods|| Jianfeng Gao, Jun Suzuki||36&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Hai Feng Wang, Philipp Koehn||80&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||Hsin-Hsi Chen ||29&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Ellen Riloff, Satoshi Sekine||52&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Giuseppe Carenini || 44&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing|| Helen Meng|| 20&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering|| Sanda Harabagiu|| 23&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications||Sophi Ananiadou ||19&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Keh-Jiann Chen || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D12/D12-1000.pdf EMNLP 2012] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Jun’ichi Tsujii (Microsoft Research Asia) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || James Henderson (Xerox Research Centre Europe), Marius Pasca (Google) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2012:&lt;br /&gt;
&lt;br /&gt;
Eugene Agichtein (Emory University), Yejin Choi (Stony Brook University), Hal Daume III (University of Maryland), Doug Downey (Northwestern University), Chris Dyer (Carnegie Mellon University), Adria de Gispert (University of Cambridge), Julia Hirschberg (Columbia University), Anna Korhonen (University of Cambridge), Bing Liu (University of Illinois at Chicago), Hwee Tou Ng (National University of Singapore), Patrick Pantel (Microsoft Research), Marco Pennacchiotti (Yahoo! Labs), Slav Petrov (Google), Simone Paolo Ponzetto (Sapienza University of Rome), John Prager (IBM Research), Chris Quirk (Microsoft Research), Sebastian Riedel (University of Massachusetts at Amherst), Hiroya Takamura (Tokyo Institute of Technology), Partha Talukdar (Carnegie Mellon University), Carnegie Mellon University (Microsoft Research), Reut Tsarfaty (Uppsala University), Marilyn Walker (University of California at Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D11/D11-1000.pdf EMNLP 2011] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Paola Merlo (University of Geneva) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Regina Barzilay (Massachusetts Institute of Technology), Mark Johnson (Macquarie University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2011:&lt;br /&gt;
&lt;br /&gt;
Emily M. Bender (University of Washington), Phil Blunsom (University of Oxford), Eugene Charniak (Brown University), Chris Dyer (Carnegie Mellon University), Jenny Finkel (Columbia University), Radu Florian (IBM Watson Research Center), Amir Globerson (The Hebrew University of Jerusalem), Keith Hall (Google Research), Minlie Huang (Tsinghua University), Katrin Kirchhoff (University of Washington), Mirella Lapata (University of Edinburgh), Chin-Yew Lin (Microsoft Research Asia), Bo Pang (Yahoo! Research), Stefan Riezler (University of Heidelberg), Ellen Riloff (University of Utah), Hinrich Schuetze (University of Stuttgart), Jian Su (Institute for Infocomm Research), Dekai Wu (Hong Kong University of Science and Technology), Luke Zettlemoyer (University of Washington)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D10/D10-1000.pdf EMNLP 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hang Li (Microsoft Research Asia), Llu´ıs Marquez (Technical University of Catalonia) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2010:&lt;br /&gt;
&lt;br /&gt;
Eneko Agirre (University of the Basque Country), Kalina Bontcheva (University of Sheffield), Antal van den Bosch (Tilburg University), David Chiang (USC Information Sciences Institute), Jennifer Chu-Carroll (IBM Research), Evgeniy Gabrilovich (Yahoo! Research), Jianfeng Gao (Microsoft Research), Julio Gonzalo (UNED), Nancy Ide (Vassar College), Haizhou Li (Institute for Infocomm Research), Qun Liu (ICT, Chinese Academy of Sciences), Yusuke Miyao (National Institute of Informatics), Bo Pang (Yahoo! Research), Dragomir Radev (University of Michigan), Noah Smith (Carnegie Mellon University), Kristina Toutanova (Microsoft Research), Yoshimasa Tsuruoka (JAIST), Yi Zhang (University of California, Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== EMNLP 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Jason Eisner || 24&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Steve Clark|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics||Vivi Nastase || 45&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Tim Paek|| 28&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||Chin-Yew Lin || 25&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods||Miles Osborne ||32&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Adam Lopez ||68&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering||Hang Li ||33&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining||Marius Pasca ||39&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Theresa Wilson || 37&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing||Eric Fosler-Lussier || 11&lt;br /&gt;
|-&lt;br /&gt;
| Natural Language Processing Applications||Carlo Strapparava ||22&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Katrin Erk || 26&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality|| Mona Diab||22&lt;br /&gt;
|-&lt;br /&gt;
| NLP for Web 2.0|| Iryna Gurevych||20&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2008 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon, lexical semantics, word sense disambiguation || Paul Buitelaar || 45&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Stephen Pulman Mary Dalrymple || 46&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, dialogue || Eva Hajicova || 24&lt;br /&gt;
|-&lt;br /&gt;
| NLG, summarisation || Robert Dale || 36&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, morphology, grammar learning || Mark Johnson || 68&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation and Multilinguality || Pierre Isabelle, Miles Osborne || 86&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, text and web mining, multimedia || Junichi Tsujii || 54&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction, opinion and sentiment Analysis || Rob Gaizauskus || 24&lt;br /&gt;
|-&lt;br /&gt;
| Paraphrasing and Textual Entailment || Bill Dolan || 21&lt;br /&gt;
|-&lt;br /&gt;
| Speech and multimodality || Julia Hirschberg || 16&lt;br /&gt;
|-&lt;br /&gt;
| Resources || Chu-Ren Huang || 56&lt;br /&gt;
|-&lt;br /&gt;
| Learning || Dan Roth || 29&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11138</id>
		<title>Areas, chairs, and area submissions</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11138"/>
		<updated>2015-07-04T00:50:40Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: EMNLP 2011&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.aclweb.org/anthology/P/P14/P14-1000.pdf ACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair  || Daniel Marcu (ISI/USC) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Kristina Toutanova (Microsoft Research), Hua Wu (Baidu) ||&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling and Psycholinguistics || Klinton Bicknell (Northwestern University) || 9, 14&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems || Asli Celikyilmaz (Microsoft Research) || 10, 8&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference and Pragmatics || Micha Elsner (Ohio State University), Michael Strube (HITS gGmbH) || 22, 20&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization, Sentiment Analysis and Topic Models || Jacob Eisenstein (Georgia Institute of Technology), Jun Zhao (Chinese Academy of Sciences) || 53, 48&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Barbara Di Eugenio (University of Illinois at Chicago) || 13, 7&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining || Marius Pasca (Google Research), Mihai Surdeanu (University of Arizona) || 54, 49&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || Ting	Liu (Harbin Institute of Technology) || 8, 9&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation || Nicoletta Calzolari (Institute of Computational Linguistics of the National Research Council), Nianwen Xue (Brandeis University) || 31, 28&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontology || Eneko Agirre (University of the Basque Country) || 26, 23&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Kevin Duh (Nara Institute of Science and Technology), Jason Eisner (Johns Hopkins University) || 39, 15&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Colin Cherry (National Research Council, Canada), Niyu Ge (IBM Research), Liang Huang (City University of New York), Yanjun Ma (Baidu) || 76, 72&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality and Multimodal NLP || Michel Galley (Microsoft Research) || 12, 14&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications and NLP-enabled Technology || Mamoru Komachi (Tokyo Metropolitan University) || 32, 34&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (Johns Hopkins University), Alan Ritter (Carnegie Mellon University) || 29, 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Iryna Gurevych (Technische Universität Darmstadt), Percy Liang (Stanford University), Shiqi Zhao (Baidu) || 53, 37&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Yang Liu (University of Texas at Dallas) || 19, 11&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Scott Wen-tau Yih (Microsoft Research) || 6, 4&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Ciprian Chelba (Google Research) || 9, 10&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Xavier Carreras (Universitat Politecnica de Catalunya), Slav Petrov (Google Research) || 35, 48&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology and Word Segmentation || Grzegorz Kondrak (University of Alberta) || 10, 18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2013 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modelling and Psycholinguistics || * || 13, 12&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems ||  || 15, 10&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference, and Pragmatics ||  || 28, 19&lt;br /&gt;
|-&lt;br /&gt;
| Evaluation Methods ||  || 11, 15&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||  || 20, 20&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources ||  || 24, 27&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontologies ||  || 25, 25&lt;br /&gt;
|-&lt;br /&gt;
| Low Resource Language Processing ||  || 10, 13&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Methods, Applications and Evaluations ||  || 50, 58&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Statistical Models ||  || 44, 30&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications ||  || 46, 42&lt;br /&gt;
|-&lt;br /&gt;
| NLP and Creativity ||  || 3, 4&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Languages of Central and Eastern Europe and The Balkans ||  || 2, 8&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media ||  || 32, 26&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering ||  || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Semantics ||  || 50, 32&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification ||  || 46, 60&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing ||  || 9, 12&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods in NLP ||  || 35, 32&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||  || 31, 23&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing ||  || 39, 43&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Chunking ||  || 12, 13&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Information Extraction ||  || 68, 53&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation ||  || 13, 15&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for ACL 2013: &lt;br /&gt;
&lt;br /&gt;
Frank Keller, Roger Levy, Amanda Stent, David Suendermann, Andrew Kehler, Becky Passonneau, Hang Li, Nancy Ide, Piek Vossen, Philipp Cimiano, Sabine Schulte im Walde, Dekang Lin, Chiori Hori, Keh-Yih Su, Roland Kuhn, Dekai Wu, Benjamin Snyder, Thamar Solorio, Ehud Reiter, Massimiliano Ciaramita, Ken Church, Carlo Strapparava, Tomaz Erjavec, Adam Prziepiorkowski, Patrick Pantel, Owen Rambow, Chris Dyer, Jason Eisner, Jennifer Chu-Carroll, Bernardo Magnini, Lluis Marquez, Alessandro Moschitti, Claire Cardie, Rada Mihalcea, Dilek Hakkani-Tur, Walter Daelemans, Dan Roth, Alex Koller, Ani Nenkova, Jamie Henderson, Sadao Kurohashi, Yuji Matsumoto, Heng Ji, Marie-Francine Moens, Hwee Tou Ng&lt;br /&gt;
&lt;br /&gt;
== ACL 2012 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Dialogue || Mikio Nakano, Andrei Popescu-Belis || 39, 23&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Information Retrieval || Jian Su, Jianfeng Gao, Vincent Ng || 64, 37&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Fei Xia || 15, 13&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics || Evgeniy Gabrilovich, Naoaki Okazaki || 38, 31&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon and Ontology ||  Eneko Agirre || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning || Trevor Cohn, Mark Dredze || 56, 28&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Marcello Federico, Adam Lopez, David Talbot, Hua Wu || 75, 56&lt;br /&gt;
|-&lt;br /&gt;
| Multilingual || Daniel M. Bikel, Mona T. Diab || 31, 15&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications || Jason Baldridge, David Weir || 41, 18&lt;br /&gt;
|-&lt;br /&gt;
| Syntax/Parsing || Stephen Clark, Liang Huang || 64, 36&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Hongyuan Zha, Hsin-Hsi Chen || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Social Media and Sentiment || Noah Smith, Jan Wiebe || 51, 32&lt;br /&gt;
|-&lt;br /&gt;
| Speech || Chung-Hsien Wu || 16, 12&lt;br /&gt;
|-&lt;br /&gt;
| Summarization &amp;amp; Generation || Anja Belz, Ani Nenkova || 20, 23&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation, Morphology and Phonology || Kemal Oflazer || 36, 23&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2011 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Anna Feldman, Greg Kondrak || 34,22&lt;br /&gt;
|-&lt;br /&gt;
|Syntax and Parsing || Xavier Carreras, Ryan McDonald  || 56,48&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Diana McCarthy, Deniz Yuret || 48, 41&lt;br /&gt;
|-&lt;br /&gt;
|Discourse, Dialogue, and Pragmatics || Kentaro Inui, Svetlana Stoyanchev|| 31, 23&lt;br /&gt;
|-&lt;br /&gt;
|Summarization and Generation || Yang Liu, Manabu Okumura  || 36, 35&lt;br /&gt;
|- &lt;br /&gt;
|Statistical and Machine Learning Methods ||Lluis Marquez, Alessandro Moschitti || 42, 27&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Statistical Models ||Shankar Kumar, Taro Watanabe || 56, 39&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Methods, Applications and Evaluations ||Elliott Macklovitch, Michel Simard || 33, 53&lt;br /&gt;
|-&lt;br /&gt;
|Information Retrieval ||  Fabrizio Sebastiani || 26, 11&lt;br /&gt;
|-&lt;br /&gt;
|Question Answering || Bernardo Magnini  || 19, 10&lt;br /&gt;
|-&lt;br /&gt;
|Text Mining and Information Extraction || Razvan Bunescu, Alexander Yates || 51, 38&lt;br /&gt;
|-&lt;br /&gt;
|Sentiment Analysis, Opinion Mining and Text Classification ||Katja Markert, Xiaojun Wan || 45, 38&lt;br /&gt;
|-&lt;br /&gt;
|Spoken Language Processing || Pascale Fung || 20, 13&lt;br /&gt;
|-&lt;br /&gt;
|Natural Language Processing Applications || Vasile Rus || 30, 51&lt;br /&gt;
|-&lt;br /&gt;
|Language Resources || Chu-Ren Huang, Dan Tufis|| 32, 26&lt;br /&gt;
|-&lt;br /&gt;
|Multilinguality || Thamar Solorio || 24, 16&lt;br /&gt;
|-&lt;br /&gt;
|NLP for Web 2.0 || Vivi Nastase || 31, 16&lt;br /&gt;
|-&lt;br /&gt;
|Linguistic Creativity || Carlo Strapparava || 20, 17&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long + short)&lt;br /&gt;
|- &lt;br /&gt;
| Lexical semantics || Tim Baldwin, Roberto Navigli || 87&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning|| Phil Blunsom, Walter Daelemans || 87&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction|| Kalina Bontcheva, Hang Li || 52&lt;br /&gt;
|-&lt;br /&gt;
| Formal semantics || Johan Bos || 24&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis || Claire Cardie, Theresa Wilson|| 69&lt;br /&gt;
|-&lt;br /&gt;
| Text mining || Rob Gaizauskas || 30&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Keith Hall, Chris Quirk|| 100&lt;br /&gt;
|-&lt;br /&gt;
| Speech processing|| Julia Hirschberg|| 33&lt;br /&gt;
|-&lt;br /&gt;
| Resources|| Nancy Ide|| 50&lt;br /&gt;
|-&lt;br /&gt;
| Multi-modal||Michael Johnston || 18&lt;br /&gt;
|-&lt;br /&gt;
| Psycholinguistics ||Roger Levy || 16&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering and paraphrasing|| Chin-Yew Lin || 40&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, grammatical inference, syntax||Yusuke Miyao, Khalil Sima&#039;an  || 88&lt;br /&gt;
|-&lt;br /&gt;
| Generation and summarisation || Ani Nenkova, Bonnie Webber|| 55&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and dialogue ||Jon Oberlander, Matthew Stone|| 56 &lt;br /&gt;
|-&lt;br /&gt;
| Mathematical linguistics||Stuart Shieber || 29&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, segmentation and morphology||Richard Sproat || 51&lt;br /&gt;
|-&lt;br /&gt;
| Bioinformatics || Jun&#039;ichi Tsujii|| 12&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || ChengXiang Zhai|| 33&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|- &lt;br /&gt;
| Machine Translation || Chris Callison-Burch, Qun Liu || 109&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Sebastian Pado, Takenobu Tokunaga || 102&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Text Classification || Bo Pang || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Gary Geunbae Lee || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Rosie Jones || 55&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Donia Scott || 53&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and NLP Applications || Ming Zhou || 50&lt;br /&gt;
|-&lt;br /&gt;
| Parsing || Sadao Kurohashi || 48&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods || David A Smith || 42&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Nicoletta Calzolari || 38&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Pragmatics || Caroline Sporleder || 38&lt;br /&gt;
|-&lt;br /&gt;
| Chinese Natural Language Processing || Nianwen Xue  || 34&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Morphology-Phonology || Rajeev Sangal || 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Grammar || Emily Bender || 28&lt;br /&gt;
|-&lt;br /&gt;
| Multilingualism || Pierre Isabelle || 26&lt;br /&gt;
|-&lt;br /&gt;
| Dialog and Multimodal || Justine Cassell || 16&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li || 9&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling || Roger Levy || 9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Greg Kondrak|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Noah Smith, James Curran || 47&lt;br /&gt;
|-&lt;br /&gt;
| Semantics|| Eneko Agirre, Rada Mihalcea|| 67&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Massimo Poesio, Michael Strube|| 41&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz|| 44&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods|| Jianfeng Gao, Jun Suzuki||36&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Hai Feng Wang, Philipp Koehn||80&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||Hsin-Hsi Chen ||29&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Ellen Riloff, Satoshi Sekine||52&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Giuseppe Carenini || 44&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing|| Helen Meng|| 20&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering|| Sanda Harabagiu|| 23&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications||Sophi Ananiadou ||19&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Keh-Jiann Chen || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D11/D11-1000.pdf EMNLP 2011] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|- &lt;br /&gt;
| General Chair || Paola Merlo (University of Geneva) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Regina Barzilay (Massachusetts Institute of Technology), Mark Johnson (Macquarie University) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2011:&lt;br /&gt;
&lt;br /&gt;
Emily M. Bender (University of Washington), Phil Blunsom (University of Oxford), Eugene Charniak (Brown University), Chris Dyer (Carnegie Mellon University), Jenny Finkel (Columbia University), Radu Florian (IBM Watson Research Center), Amir Globerson (The Hebrew University of Jerusalem), Keith Hall (Google Research), Minlie Huang (Tsinghua University), Katrin Kirchhoff (University of Washington), Mirella Lapata (University of Edinburgh), Chin-Yew Lin (Microsoft Research Asia), Bo Pang (Yahoo! Research), Stefan Riezler (University of Heidelberg), Ellen Riloff (University of Utah), Hinrich Schuetze (University of Stuttgart), Jian Su (Institute for Infocomm Research), Dekai Wu (Hong Kong University of Science and Technology), Luke Zettlemoyer (University of Washington)&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D10/D10-1000.pdf EMNLP 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hang Li (Microsoft Research Asia), Llu´ıs Marquez (Technical University of Catalonia) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2010:&lt;br /&gt;
&lt;br /&gt;
Eneko Agirre (University of the Basque Country), Kalina Bontcheva (University of Sheffield), Antal van den Bosch (Tilburg University), David Chiang (USC Information Sciences Institute), Jennifer Chu-Carroll (IBM Research), Evgeniy Gabrilovich (Yahoo! Research), Jianfeng Gao (Microsoft Research), Julio Gonzalo (UNED), Nancy Ide (Vassar College), Haizhou Li (Institute for Infocomm Research), Qun Liu (ICT, Chinese Academy of Sciences), Yusuke Miyao (National Institute of Informatics), Bo Pang (Yahoo! Research), Dragomir Radev (University of Michigan), Noah Smith (Carnegie Mellon University), Kristina Toutanova (Microsoft Research), Yoshimasa Tsuruoka (JAIST), Yi Zhang (University of California, Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== EMNLP 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Jason Eisner || 24&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Steve Clark|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics||Vivi Nastase || 45&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Tim Paek|| 28&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||Chin-Yew Lin || 25&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods||Miles Osborne ||32&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Adam Lopez ||68&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering||Hang Li ||33&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining||Marius Pasca ||39&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Theresa Wilson || 37&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing||Eric Fosler-Lussier || 11&lt;br /&gt;
|-&lt;br /&gt;
| Natural Language Processing Applications||Carlo Strapparava ||22&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Katrin Erk || 26&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality|| Mona Diab||22&lt;br /&gt;
|-&lt;br /&gt;
| NLP for Web 2.0|| Iryna Gurevych||20&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2008 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon, lexical semantics, word sense disambiguation || Paul Buitelaar || 45&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Stephen Pulman Mary Dalrymple || 46&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, dialogue || Eva Hajicova || 24&lt;br /&gt;
|-&lt;br /&gt;
| NLG, summarisation || Robert Dale || 36&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, morphology, grammar learning || Mark Johnson || 68&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation and Multilinguality || Pierre Isabelle, Miles Osborne || 86&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, text and web mining, multimedia || Junichi Tsujii || 54&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction, opinion and sentiment Analysis || Rob Gaizauskus || 24&lt;br /&gt;
|-&lt;br /&gt;
| Paraphrasing and Textual Entailment || Bill Dolan || 21&lt;br /&gt;
|-&lt;br /&gt;
| Speech and multimodality || Julia Hirschberg || 16&lt;br /&gt;
|-&lt;br /&gt;
| Resources || Chu-Ren Huang || 56&lt;br /&gt;
|-&lt;br /&gt;
| Learning || Dan Roth || 29&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11137</id>
		<title>Areas, chairs, and area submissions</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11137"/>
		<updated>2015-07-04T00:46:44Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: EMNLP 2010&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.aclweb.org/anthology/P/P14/P14-1000.pdf ACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair  || Daniel Marcu (ISI/USC) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Kristina Toutanova (Microsoft Research), Hua Wu (Baidu) ||&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling and Psycholinguistics || Klinton Bicknell (Northwestern University) || 9, 14&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems || Asli Celikyilmaz (Microsoft Research) || 10, 8&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference and Pragmatics || Micha Elsner (Ohio State University), Michael Strube (HITS gGmbH) || 22, 20&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization, Sentiment Analysis and Topic Models || Jacob Eisenstein (Georgia Institute of Technology), Jun Zhao (Chinese Academy of Sciences) || 53, 48&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Barbara Di Eugenio (University of Illinois at Chicago) || 13, 7&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining || Marius Pasca (Google Research), Mihai Surdeanu (University of Arizona) || 54, 49&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || Ting	Liu (Harbin Institute of Technology) || 8, 9&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation || Nicoletta Calzolari (Institute of Computational Linguistics of the National Research Council), Nianwen Xue (Brandeis University) || 31, 28&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontology || Eneko Agirre (University of the Basque Country) || 26, 23&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Kevin Duh (Nara Institute of Science and Technology), Jason Eisner (Johns Hopkins University) || 39, 15&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Colin Cherry (National Research Council, Canada), Niyu Ge (IBM Research), Liang Huang (City University of New York), Yanjun Ma (Baidu) || 76, 72&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality and Multimodal NLP || Michel Galley (Microsoft Research) || 12, 14&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications and NLP-enabled Technology || Mamoru Komachi (Tokyo Metropolitan University) || 32, 34&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (Johns Hopkins University), Alan Ritter (Carnegie Mellon University) || 29, 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Iryna Gurevych (Technische Universität Darmstadt), Percy Liang (Stanford University), Shiqi Zhao (Baidu) || 53, 37&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Yang Liu (University of Texas at Dallas) || 19, 11&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Scott Wen-tau Yih (Microsoft Research) || 6, 4&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Ciprian Chelba (Google Research) || 9, 10&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Xavier Carreras (Universitat Politecnica de Catalunya), Slav Petrov (Google Research) || 35, 48&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology and Word Segmentation || Grzegorz Kondrak (University of Alberta) || 10, 18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2013 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modelling and Psycholinguistics || * || 13, 12&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems ||  || 15, 10&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference, and Pragmatics ||  || 28, 19&lt;br /&gt;
|-&lt;br /&gt;
| Evaluation Methods ||  || 11, 15&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||  || 20, 20&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources ||  || 24, 27&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontologies ||  || 25, 25&lt;br /&gt;
|-&lt;br /&gt;
| Low Resource Language Processing ||  || 10, 13&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Methods, Applications and Evaluations ||  || 50, 58&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Statistical Models ||  || 44, 30&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications ||  || 46, 42&lt;br /&gt;
|-&lt;br /&gt;
| NLP and Creativity ||  || 3, 4&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Languages of Central and Eastern Europe and The Balkans ||  || 2, 8&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media ||  || 32, 26&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering ||  || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Semantics ||  || 50, 32&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification ||  || 46, 60&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing ||  || 9, 12&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods in NLP ||  || 35, 32&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||  || 31, 23&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing ||  || 39, 43&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Chunking ||  || 12, 13&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Information Extraction ||  || 68, 53&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation ||  || 13, 15&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for ACL 2013: &lt;br /&gt;
&lt;br /&gt;
Frank Keller, Roger Levy, Amanda Stent, David Suendermann, Andrew Kehler, Becky Passonneau, Hang Li, Nancy Ide, Piek Vossen, Philipp Cimiano, Sabine Schulte im Walde, Dekang Lin, Chiori Hori, Keh-Yih Su, Roland Kuhn, Dekai Wu, Benjamin Snyder, Thamar Solorio, Ehud Reiter, Massimiliano Ciaramita, Ken Church, Carlo Strapparava, Tomaz Erjavec, Adam Prziepiorkowski, Patrick Pantel, Owen Rambow, Chris Dyer, Jason Eisner, Jennifer Chu-Carroll, Bernardo Magnini, Lluis Marquez, Alessandro Moschitti, Claire Cardie, Rada Mihalcea, Dilek Hakkani-Tur, Walter Daelemans, Dan Roth, Alex Koller, Ani Nenkova, Jamie Henderson, Sadao Kurohashi, Yuji Matsumoto, Heng Ji, Marie-Francine Moens, Hwee Tou Ng&lt;br /&gt;
&lt;br /&gt;
== ACL 2012 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Dialogue || Mikio Nakano, Andrei Popescu-Belis || 39, 23&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Information Retrieval || Jian Su, Jianfeng Gao, Vincent Ng || 64, 37&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Fei Xia || 15, 13&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics || Evgeniy Gabrilovich, Naoaki Okazaki || 38, 31&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon and Ontology ||  Eneko Agirre || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning || Trevor Cohn, Mark Dredze || 56, 28&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Marcello Federico, Adam Lopez, David Talbot, Hua Wu || 75, 56&lt;br /&gt;
|-&lt;br /&gt;
| Multilingual || Daniel M. Bikel, Mona T. Diab || 31, 15&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications || Jason Baldridge, David Weir || 41, 18&lt;br /&gt;
|-&lt;br /&gt;
| Syntax/Parsing || Stephen Clark, Liang Huang || 64, 36&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Hongyuan Zha, Hsin-Hsi Chen || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Social Media and Sentiment || Noah Smith, Jan Wiebe || 51, 32&lt;br /&gt;
|-&lt;br /&gt;
| Speech || Chung-Hsien Wu || 16, 12&lt;br /&gt;
|-&lt;br /&gt;
| Summarization &amp;amp; Generation || Anja Belz, Ani Nenkova || 20, 23&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation, Morphology and Phonology || Kemal Oflazer || 36, 23&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2011 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Anna Feldman, Greg Kondrak || 34,22&lt;br /&gt;
|-&lt;br /&gt;
|Syntax and Parsing || Xavier Carreras, Ryan McDonald  || 56,48&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Diana McCarthy, Deniz Yuret || 48, 41&lt;br /&gt;
|-&lt;br /&gt;
|Discourse, Dialogue, and Pragmatics || Kentaro Inui, Svetlana Stoyanchev|| 31, 23&lt;br /&gt;
|-&lt;br /&gt;
|Summarization and Generation || Yang Liu, Manabu Okumura  || 36, 35&lt;br /&gt;
|- &lt;br /&gt;
|Statistical and Machine Learning Methods ||Lluis Marquez, Alessandro Moschitti || 42, 27&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Statistical Models ||Shankar Kumar, Taro Watanabe || 56, 39&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Methods, Applications and Evaluations ||Elliott Macklovitch, Michel Simard || 33, 53&lt;br /&gt;
|-&lt;br /&gt;
|Information Retrieval ||  Fabrizio Sebastiani || 26, 11&lt;br /&gt;
|-&lt;br /&gt;
|Question Answering || Bernardo Magnini  || 19, 10&lt;br /&gt;
|-&lt;br /&gt;
|Text Mining and Information Extraction || Razvan Bunescu, Alexander Yates || 51, 38&lt;br /&gt;
|-&lt;br /&gt;
|Sentiment Analysis, Opinion Mining and Text Classification ||Katja Markert, Xiaojun Wan || 45, 38&lt;br /&gt;
|-&lt;br /&gt;
|Spoken Language Processing || Pascale Fung || 20, 13&lt;br /&gt;
|-&lt;br /&gt;
|Natural Language Processing Applications || Vasile Rus || 30, 51&lt;br /&gt;
|-&lt;br /&gt;
|Language Resources || Chu-Ren Huang, Dan Tufis|| 32, 26&lt;br /&gt;
|-&lt;br /&gt;
|Multilinguality || Thamar Solorio || 24, 16&lt;br /&gt;
|-&lt;br /&gt;
|NLP for Web 2.0 || Vivi Nastase || 31, 16&lt;br /&gt;
|-&lt;br /&gt;
|Linguistic Creativity || Carlo Strapparava || 20, 17&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long + short)&lt;br /&gt;
|- &lt;br /&gt;
| Lexical semantics || Tim Baldwin, Roberto Navigli || 87&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning|| Phil Blunsom, Walter Daelemans || 87&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction|| Kalina Bontcheva, Hang Li || 52&lt;br /&gt;
|-&lt;br /&gt;
| Formal semantics || Johan Bos || 24&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis || Claire Cardie, Theresa Wilson|| 69&lt;br /&gt;
|-&lt;br /&gt;
| Text mining || Rob Gaizauskas || 30&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Keith Hall, Chris Quirk|| 100&lt;br /&gt;
|-&lt;br /&gt;
| Speech processing|| Julia Hirschberg|| 33&lt;br /&gt;
|-&lt;br /&gt;
| Resources|| Nancy Ide|| 50&lt;br /&gt;
|-&lt;br /&gt;
| Multi-modal||Michael Johnston || 18&lt;br /&gt;
|-&lt;br /&gt;
| Psycholinguistics ||Roger Levy || 16&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering and paraphrasing|| Chin-Yew Lin || 40&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, grammatical inference, syntax||Yusuke Miyao, Khalil Sima&#039;an  || 88&lt;br /&gt;
|-&lt;br /&gt;
| Generation and summarisation || Ani Nenkova, Bonnie Webber|| 55&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and dialogue ||Jon Oberlander, Matthew Stone|| 56 &lt;br /&gt;
|-&lt;br /&gt;
| Mathematical linguistics||Stuart Shieber || 29&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, segmentation and morphology||Richard Sproat || 51&lt;br /&gt;
|-&lt;br /&gt;
| Bioinformatics || Jun&#039;ichi Tsujii|| 12&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || ChengXiang Zhai|| 33&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|- &lt;br /&gt;
| Machine Translation || Chris Callison-Burch, Qun Liu || 109&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Sebastian Pado, Takenobu Tokunaga || 102&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Text Classification || Bo Pang || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Gary Geunbae Lee || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Rosie Jones || 55&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Donia Scott || 53&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and NLP Applications || Ming Zhou || 50&lt;br /&gt;
|-&lt;br /&gt;
| Parsing || Sadao Kurohashi || 48&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods || David A Smith || 42&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Nicoletta Calzolari || 38&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Pragmatics || Caroline Sporleder || 38&lt;br /&gt;
|-&lt;br /&gt;
| Chinese Natural Language Processing || Nianwen Xue  || 34&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Morphology-Phonology || Rajeev Sangal || 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Grammar || Emily Bender || 28&lt;br /&gt;
|-&lt;br /&gt;
| Multilingualism || Pierre Isabelle || 26&lt;br /&gt;
|-&lt;br /&gt;
| Dialog and Multimodal || Justine Cassell || 16&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li || 9&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling || Roger Levy || 9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Greg Kondrak|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Noah Smith, James Curran || 47&lt;br /&gt;
|-&lt;br /&gt;
| Semantics|| Eneko Agirre, Rada Mihalcea|| 67&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Massimo Poesio, Michael Strube|| 41&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz|| 44&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods|| Jianfeng Gao, Jun Suzuki||36&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Hai Feng Wang, Philipp Koehn||80&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||Hsin-Hsi Chen ||29&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Ellen Riloff, Satoshi Sekine||52&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Giuseppe Carenini || 44&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing|| Helen Meng|| 20&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering|| Sanda Harabagiu|| 23&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications||Sophi Ananiadou ||19&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Keh-Jiann Chen || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== [http://www.aclweb.org/anthology/D/D10/D10-1000.pdf EMNLP 2010] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Hang Li (Microsoft Research Asia), Llu´ıs Marquez (Technical University of Catalonia) || &lt;br /&gt;
|-&lt;br /&gt;
| * || * || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for EMNLP 2010:&lt;br /&gt;
&lt;br /&gt;
Eneko Agirre (University of the Basque Country), Kalina Bontcheva (University of Sheffield), Antal van den Bosch (Tilburg University), David Chiang (USC Information Sciences Institute), Jennifer Chu-Carroll (IBM Research), Evgeniy Gabrilovich (Yahoo! Research), Jianfeng Gao (Microsoft Research), Julio Gonzalo (UNED), Nancy Ide (Vassar College), Haizhou Li (Institute for Infocomm Research), Qun Liu (ICT, Chinese Academy of Sciences), Yusuke Miyao (National Institute of Informatics), Bo Pang (Yahoo! Research), Dragomir Radev (University of Michigan), Noah Smith (Carnegie Mellon University), Kristina Toutanova (Microsoft Research), Yoshimasa Tsuruoka (JAIST), Yi Zhang (University of California, Santa Cruz)&lt;br /&gt;
&lt;br /&gt;
== EMNLP 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Jason Eisner || 24&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Steve Clark|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics||Vivi Nastase || 45&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Tim Paek|| 28&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||Chin-Yew Lin || 25&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods||Miles Osborne ||32&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Adam Lopez ||68&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering||Hang Li ||33&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining||Marius Pasca ||39&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Theresa Wilson || 37&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing||Eric Fosler-Lussier || 11&lt;br /&gt;
|-&lt;br /&gt;
| Natural Language Processing Applications||Carlo Strapparava ||22&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Katrin Erk || 26&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality|| Mona Diab||22&lt;br /&gt;
|-&lt;br /&gt;
| NLP for Web 2.0|| Iryna Gurevych||20&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2008 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon, lexical semantics, word sense disambiguation || Paul Buitelaar || 45&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Stephen Pulman Mary Dalrymple || 46&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, dialogue || Eva Hajicova || 24&lt;br /&gt;
|-&lt;br /&gt;
| NLG, summarisation || Robert Dale || 36&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, morphology, grammar learning || Mark Johnson || 68&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation and Multilinguality || Pierre Isabelle, Miles Osborne || 86&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, text and web mining, multimedia || Junichi Tsujii || 54&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction, opinion and sentiment Analysis || Rob Gaizauskus || 24&lt;br /&gt;
|-&lt;br /&gt;
| Paraphrasing and Textual Entailment || Bill Dolan || 21&lt;br /&gt;
|-&lt;br /&gt;
| Speech and multimodality || Julia Hirschberg || 16&lt;br /&gt;
|-&lt;br /&gt;
| Resources || Chu-Ren Huang || 56&lt;br /&gt;
|-&lt;br /&gt;
| Learning || Dan Roth || 29&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11136</id>
		<title>Areas, chairs, and area submissions</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Areas,_chairs,_and_area_submissions&amp;diff=11136"/>
		<updated>2015-07-03T07:41:15Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: /* ACL 2014 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== [http://www.aclweb.org/anthology/P/P14/P14-1000.pdf ACL 2014] ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|- &lt;br /&gt;
| General Chair  || Daniel Marcu (ISI/USC) ||&lt;br /&gt;
|-&lt;br /&gt;
| Program Chairs || Kristina Toutanova (Microsoft Research), Hua Wu (Baidu) ||&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling and Psycholinguistics || Klinton Bicknell (Northwestern University) || 9, 14&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems || Asli Celikyilmaz (Microsoft Research) || 10, 8&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference and Pragmatics || Micha Elsner (Ohio State University), Michael Strube (HITS gGmbH) || 22, 20&lt;br /&gt;
|-&lt;br /&gt;
| Document Categorization, Sentiment Analysis and Topic Models || Jacob Eisenstein (Georgia Institute of Technology), Jun Zhao (Chinese Academy of Sciences) || 53, 48&lt;br /&gt;
|-&lt;br /&gt;
| Generation || Barbara Di Eugenio (University of Illinois at Chicago) || 13, 7&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining || Marius Pasca (Google Research), Mihai Surdeanu (University of Arizona) || 54, 49&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || Ting	Liu (Harbin Institute of Technology) || 8, 9&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources and Evaluation || Nicoletta Calzolari (Institute of Computational Linguistics of the National Research Council), Nianwen Xue (Brandeis University) || 31, 28&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontology || Eneko Agirre (University of the Basque Country) || 26, 23&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning for Language Processing || Kevin Duh (Nara Institute of Science and Technology), Jason Eisner (Johns Hopkins University) || 39, 15&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Colin Cherry (National Research Council, Canada), Niyu Ge (IBM Research), Liang Huang (City University of New York), Yanjun Ma (Baidu) || 76, 72&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality and Multimodal NLP || Michel Galley (Microsoft Research) || 12, 14&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications and NLP-enabled Technology || Mamoru Komachi (Tokyo Metropolitan University) || 32, 34&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media || Miles Osborne (Johns Hopkins University), Alan Ritter (Carnegie Mellon University) || 29, 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Iryna Gurevych (Technische Universität Darmstadt), Percy Liang (Stanford University), Shiqi Zhao (Baidu) || 53, 37&lt;br /&gt;
|-&lt;br /&gt;
| Summarization || Yang Liu (University of Texas at Dallas) || 19, 11&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Scott Wen-tau Yih (Microsoft Research) || 6, 4&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Ciprian Chelba (Google Research) || 9, 10&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, Chunking, Syntax and Parsing || Xavier Carreras (Universitat Politecnica de Catalunya), Slav Petrov (Google Research) || 35, 48&lt;br /&gt;
|-&lt;br /&gt;
| Phonology, Morphology and Word Segmentation || Grzegorz Kondrak (University of Alberta) || 10, 18&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2013 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modelling and Psycholinguistics || * || 13, 12&lt;br /&gt;
|-&lt;br /&gt;
| Dialogue and Interactive Systems ||  || 15, 10&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Coreference, and Pragmatics ||  || 28, 19&lt;br /&gt;
|-&lt;br /&gt;
| Evaluation Methods ||  || 11, 15&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||  || 20, 20&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources ||  || 24, 27&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics and Ontologies ||  || 25, 25&lt;br /&gt;
|-&lt;br /&gt;
| Low Resource Language Processing ||  || 10, 13&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Methods, Applications and Evaluations ||  || 50, 58&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation: Statistical Models ||  || 44, 30&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications ||  || 46, 42&lt;br /&gt;
|-&lt;br /&gt;
| NLP and Creativity ||  || 3, 4&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Languages of Central and Eastern Europe and The Balkans ||  || 2, 8&lt;br /&gt;
|-&lt;br /&gt;
| NLP for the Web and Social Media ||  || 32, 26&lt;br /&gt;
|-&lt;br /&gt;
| Phonology and Morphology ||  || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering ||  || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Semantics ||  || 50, 32&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification ||  || 46, 60&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing ||  || 9, 12&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods in NLP ||  || 35, 32&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||  || 31, 23&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing ||  || 39, 43&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Chunking ||  || 12, 13&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Information Extraction ||  || 68, 53&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation ||  || 13, 15&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
* No information is found for the area chair for each specific area. Below is the list of all area chairs for ACL 2013: &lt;br /&gt;
&lt;br /&gt;
Frank Keller, Roger Levy, Amanda Stent, David Suendermann, Andrew Kehler, Becky Passonneau, Hang Li, Nancy Ide, Piek Vossen, Philipp Cimiano, Sabine Schulte im Walde, Dekang Lin, Chiori Hori, Keh-Yih Su, Roland Kuhn, Dekai Wu, Benjamin Snyder, Thamar Solorio, Ehud Reiter, Massimiliano Ciaramita, Ken Church, Carlo Strapparava, Tomaz Erjavec, Adam Prziepiorkowski, Patrick Pantel, Owen Rambow, Chris Dyer, Jason Eisner, Jennifer Chu-Carroll, Bernardo Magnini, Lluis Marquez, Alessandro Moschitti, Claire Cardie, Rada Mihalcea, Dilek Hakkani-Tur, Walter Daelemans, Dan Roth, Alex Koller, Ani Nenkova, Jamie Henderson, Sadao Kurohashi, Yuji Matsumoto, Heng Ji, Marie-Francine Moens, Hwee Tou Ng&lt;br /&gt;
&lt;br /&gt;
== ACL 2012 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Dialogue || Mikio Nakano, Andrei Popescu-Belis || 39, 23&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Information Retrieval || Jian Su, Jianfeng Gao, Vincent Ng || 64, 37&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Fei Xia || 15, 13&lt;br /&gt;
|-&lt;br /&gt;
| Lexical Semantics || Evgeniy Gabrilovich, Naoaki Okazaki || 38, 31&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon and Ontology ||  Eneko Agirre || 14, 12&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning || Trevor Cohn, Mark Dredze || 56, 28&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Marcello Federico, Adam Lopez, David Talbot, Hua Wu || 75, 56&lt;br /&gt;
|-&lt;br /&gt;
| Multilingual || Daniel M. Bikel, Mona T. Diab || 31, 15&lt;br /&gt;
|-&lt;br /&gt;
| NLP Applications || Jason Baldridge, David Weir || 41, 18&lt;br /&gt;
|-&lt;br /&gt;
| Syntax/Parsing || Stephen Clark, Liang Huang || 64, 36&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering || Hongyuan Zha, Hsin-Hsi Chen || 11, 10&lt;br /&gt;
|-&lt;br /&gt;
| Social Media and Sentiment || Noah Smith, Jan Wiebe || 51, 32&lt;br /&gt;
|-&lt;br /&gt;
| Speech || Chung-Hsien Wu || 16, 12&lt;br /&gt;
|-&lt;br /&gt;
| Summarization &amp;amp; Generation || Anja Belz, Ani Nenkova || 20, 23&lt;br /&gt;
|-&lt;br /&gt;
| Word Segmentation, Morphology and Phonology || Kemal Oflazer || 36, 23&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2011 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long, short)&lt;br /&gt;
|-&lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Anna Feldman, Greg Kondrak || 34,22&lt;br /&gt;
|-&lt;br /&gt;
|Syntax and Parsing || Xavier Carreras, Ryan McDonald  || 56,48&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Diana McCarthy, Deniz Yuret || 48, 41&lt;br /&gt;
|-&lt;br /&gt;
|Discourse, Dialogue, and Pragmatics || Kentaro Inui, Svetlana Stoyanchev|| 31, 23&lt;br /&gt;
|-&lt;br /&gt;
|Summarization and Generation || Yang Liu, Manabu Okumura  || 36, 35&lt;br /&gt;
|- &lt;br /&gt;
|Statistical and Machine Learning Methods ||Lluis Marquez, Alessandro Moschitti || 42, 27&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Statistical Models ||Shankar Kumar, Taro Watanabe || 56, 39&lt;br /&gt;
|-&lt;br /&gt;
|Machine Translation: Methods, Applications and Evaluations ||Elliott Macklovitch, Michel Simard || 33, 53&lt;br /&gt;
|-&lt;br /&gt;
|Information Retrieval ||  Fabrizio Sebastiani || 26, 11&lt;br /&gt;
|-&lt;br /&gt;
|Question Answering || Bernardo Magnini  || 19, 10&lt;br /&gt;
|-&lt;br /&gt;
|Text Mining and Information Extraction || Razvan Bunescu, Alexander Yates || 51, 38&lt;br /&gt;
|-&lt;br /&gt;
|Sentiment Analysis, Opinion Mining and Text Classification ||Katja Markert, Xiaojun Wan || 45, 38&lt;br /&gt;
|-&lt;br /&gt;
|Spoken Language Processing || Pascale Fung || 20, 13&lt;br /&gt;
|-&lt;br /&gt;
|Natural Language Processing Applications || Vasile Rus || 30, 51&lt;br /&gt;
|-&lt;br /&gt;
|Language Resources || Chu-Ren Huang, Dan Tufis|| 32, 26&lt;br /&gt;
|-&lt;br /&gt;
|Multilinguality || Thamar Solorio || 24, 16&lt;br /&gt;
|-&lt;br /&gt;
|NLP for Web 2.0 || Vivi Nastase || 31, 16&lt;br /&gt;
|-&lt;br /&gt;
|Linguistic Creativity || Carlo Strapparava || 20, 17&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long + short)&lt;br /&gt;
|- &lt;br /&gt;
| Lexical semantics || Tim Baldwin, Roberto Navigli || 87&lt;br /&gt;
|-&lt;br /&gt;
| Machine Learning|| Phil Blunsom, Walter Daelemans || 87&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction|| Kalina Bontcheva, Hang Li || 52&lt;br /&gt;
|-&lt;br /&gt;
| Formal semantics || Johan Bos || 24&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis || Claire Cardie, Theresa Wilson|| 69&lt;br /&gt;
|-&lt;br /&gt;
| Text mining || Rob Gaizauskas || 30&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation || Keith Hall, Chris Quirk|| 100&lt;br /&gt;
|-&lt;br /&gt;
| Speech processing|| Julia Hirschberg|| 33&lt;br /&gt;
|-&lt;br /&gt;
| Resources|| Nancy Ide|| 50&lt;br /&gt;
|-&lt;br /&gt;
| Multi-modal||Michael Johnston || 18&lt;br /&gt;
|-&lt;br /&gt;
| Psycholinguistics ||Roger Levy || 16&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering and paraphrasing|| Chin-Yew Lin || 40&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, grammatical inference, syntax||Yusuke Miyao, Khalil Sima&#039;an  || 88&lt;br /&gt;
|-&lt;br /&gt;
| Generation and summarisation || Ani Nenkova, Bonnie Webber|| 55&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and dialogue ||Jon Oberlander, Matthew Stone|| 56 &lt;br /&gt;
|-&lt;br /&gt;
| Mathematical linguistics||Stuart Shieber || 29&lt;br /&gt;
|-&lt;br /&gt;
| Tagging, segmentation and morphology||Richard Sproat || 51&lt;br /&gt;
|-&lt;br /&gt;
| Bioinformatics || Jun&#039;ichi Tsujii|| 12&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval || ChengXiang Zhai|| 33&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2010 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|- &lt;br /&gt;
| Machine Translation || Chris Callison-Burch, Qun Liu || 109&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Sebastian Pado, Takenobu Tokunaga || 102&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis and Text Classification || Bo Pang || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Gary Geunbae Lee || 61&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering || Rosie Jones || 55&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Donia Scott || 53&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and NLP Applications || Ming Zhou || 50&lt;br /&gt;
|-&lt;br /&gt;
| Parsing || Sadao Kurohashi || 48&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods || David A Smith || 42&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources || Nicoletta Calzolari || 38&lt;br /&gt;
|-&lt;br /&gt;
| Discourse and Pragmatics || Caroline Sporleder || 38&lt;br /&gt;
|-&lt;br /&gt;
| Chinese Natural Language Processing || Nianwen Xue  || 34&lt;br /&gt;
|-&lt;br /&gt;
| Tagging and Morphology-Phonology || Rajeev Sangal || 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Grammar || Emily Bender || 28&lt;br /&gt;
|-&lt;br /&gt;
| Multilingualism || Pierre Isabelle || 26&lt;br /&gt;
|-&lt;br /&gt;
| Dialog and Multimodal || Justine Cassell || 16&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing || Haizhou Li || 9&lt;br /&gt;
|-&lt;br /&gt;
| Cognitive Modeling || Roger Levy || 9&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== ACL 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Greg Kondrak|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Noah Smith, James Curran || 47&lt;br /&gt;
|-&lt;br /&gt;
| Semantics|| Eneko Agirre, Rada Mihalcea|| 67&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Massimo Poesio, Michael Strube|| 41&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation || Anja Belz|| 44&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods|| Jianfeng Gao, Jun Suzuki||36&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Hai Feng Wang, Philipp Koehn||80&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval ||Hsin-Hsi Chen ||29&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction || Ellen Riloff, Satoshi Sekine||52&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Giuseppe Carenini || 44&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing|| Helen Meng|| 20&lt;br /&gt;
|-&lt;br /&gt;
| Question Answering|| Sanda Harabagiu|| 23&lt;br /&gt;
|-&lt;br /&gt;
| Text Mining and Natural Language Processing Applications||Sophi Ananiadou ||19&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Keh-Jiann Chen || &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== EMNLP 2009 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long)&lt;br /&gt;
|- &lt;br /&gt;
| Phonology/Morphology, Tagging and Chunking, Word Segmentation || Jason Eisner || 24&lt;br /&gt;
|-&lt;br /&gt;
| Syntax and Parsing || Steve Clark|| 29&lt;br /&gt;
|-&lt;br /&gt;
| Semantics||Vivi Nastase || 45&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, Dialogue, and Pragmatics|| Tim Paek|| 28&lt;br /&gt;
|-&lt;br /&gt;
| Summarization and Generation ||Chin-Yew Lin || 25&lt;br /&gt;
|-&lt;br /&gt;
| Statistical and Machine Learning Methods||Miles Osborne ||32&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation||Adam Lopez ||68&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval and Question Answering||Hang Li ||33&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction and Text Mining||Marius Pasca ||39&lt;br /&gt;
|-&lt;br /&gt;
| Sentiment Analysis, Opinion Mining and Text Classification||Theresa Wilson || 37&lt;br /&gt;
|-&lt;br /&gt;
| Spoken Language Processing||Eric Fosler-Lussier || 11&lt;br /&gt;
|-&lt;br /&gt;
| Natural Language Processing Applications||Carlo Strapparava ||22&lt;br /&gt;
|-&lt;br /&gt;
| Language Resources||Katrin Erk || 26&lt;br /&gt;
|-&lt;br /&gt;
| Multilinguality|| Mona Diab||22&lt;br /&gt;
|-&lt;br /&gt;
| NLP for Web 2.0|| Iryna Gurevych||20&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== COLING 2008 ==&lt;br /&gt;
&lt;br /&gt;
{|class=wikitable border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Area !! Chair(s) !! Submissions (long. we had no short)&lt;br /&gt;
|-&lt;br /&gt;
| Lexicon, lexical semantics, word sense disambiguation || Paul Buitelaar || 45&lt;br /&gt;
|-&lt;br /&gt;
| Semantics || Stephen Pulman Mary Dalrymple || 46&lt;br /&gt;
|-&lt;br /&gt;
| Discourse, dialogue || Eva Hajicova || 24&lt;br /&gt;
|-&lt;br /&gt;
| NLG, summarisation || Robert Dale || 36&lt;br /&gt;
|-&lt;br /&gt;
| Parsing, morphology, grammar learning || Mark Johnson || 68&lt;br /&gt;
|-&lt;br /&gt;
| Machine Translation and Multilinguality || Pierre Isabelle, Miles Osborne || 86&lt;br /&gt;
|-&lt;br /&gt;
| Information Retrieval, text and web mining, multimedia || Junichi Tsujii || 54&lt;br /&gt;
|-&lt;br /&gt;
| Information Extraction, opinion and sentiment Analysis || Rob Gaizauskus || 24&lt;br /&gt;
|-&lt;br /&gt;
| Paraphrasing and Textual Entailment || Bill Dolan || 21&lt;br /&gt;
|-&lt;br /&gt;
| Speech and multimodality || Julia Hirschberg || 16&lt;br /&gt;
|-&lt;br /&gt;
| Resources || Chu-Ren Huang || 56&lt;br /&gt;
|-&lt;br /&gt;
| Learning || Dan Roth || 29&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Downloadable_NLG_systems&amp;diff=8848</id>
		<title>Downloadable NLG systems</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Downloadable_NLG_systems&amp;diff=8848"/>
		<updated>2011-04-23T04:30:27Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: DAYDREAMER&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- MoinMoin name:  DownloadableSystems --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Comment:        changed simplenlg URL --&amp;gt;&lt;br /&gt;
&amp;lt;!-- WikiMedia name: DownloadableSystems --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Page revision:  00000012 --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Original date:  Tue Jan 23 16:22:14 2007 (1169569334000000) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The natural language generation systems listed below are available for download over the web.  &lt;br /&gt;
If you know of a system which is not listed here, please click on Edit in the upper left corner of this page and add the system yourself.&lt;br /&gt;
&lt;br /&gt;
== ASTROGEN ==&lt;br /&gt;
http://www.dsv.su.se/~hercules/ASTROGEN/ASTROGEN.html (unavailable as of April, 2011)&lt;br /&gt;
&lt;br /&gt;
Aggregated deep and Surface naTuRal language GENerator - Prolog based system. &lt;br /&gt;
&lt;br /&gt;
== CLINT ==&lt;br /&gt;
http://www.cs.bgu.ac.il/~elhadad/clint.html &lt;br /&gt;
&lt;br /&gt;
CLINT is a hybrid template / word-based generation system with an example application of &lt;br /&gt;
business letter generation. The system is written in C++ and runs under Microsoft Windows. &lt;br /&gt;
&amp;lt;!-- THIS IS NOT NLG:&lt;br /&gt;
== Concordance ==&lt;br /&gt;
http://www.concordancesoftware.co.uk/&lt;br /&gt;
&lt;br /&gt;
Concordance is a sophisticated text analysis software for making concordances, wordlists, &lt;br /&gt;
and Web Concordances.  &lt;br /&gt;
Supports many different Western languages.  Turn a concordance into HTML. &lt;br /&gt;
Fully functional version available for download with a time limit.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== CRISP ==&lt;br /&gt;
[http://code.google.com/p/crisp-nlg/ CRISP] is Alexander Koller&#039;s NLG system that tries to cast both microplanning and sentence realisation as an AI planning problem. The code is a mixture of Java and Scala, a scripting language for the Java virtual machine. CRISP comes with its own implementation of GraphPlan, but it can also output plans in PDDL (“Planning Domain Definition Language”, a successor to STRIPS) for use with other AI planners. License: LGPL.&lt;br /&gt;
&lt;br /&gt;
== DAYDREAMER ==&lt;br /&gt;
&lt;br /&gt;
[ftp://ftp.cs.cmu.edu/user/ai/new/daydreamer/0new.html DAYDREAMER] is a computer model of the stream of thought developed at UCLA by Erik T. Mueller from 1983 to 1988. The generator is located in the file dd_gen.cl. Common lisp source code available under GPL v2.&lt;br /&gt;
&lt;br /&gt;
== FUF/SURGE ==&lt;br /&gt;
[http://www.cs.bgu.ac.il/~elhadad/research.html FUF] is available as the [ftp://ftp.cs.bgu.ac.il/pub/fuf/fuf5.3.tar.gz original Common Lisp implementation] and as a C++ port called [http://www.cs.bgu.ac.il/~elhadad/cfuf.zip CFUF] which has an embedded Scheme interpreter.&lt;br /&gt;
&lt;br /&gt;
For more information, see [[#SURGE]], [[#SURGE_2.3]], [[#SURG-SP]], [[#SURG-IT]].&lt;br /&gt;
&lt;br /&gt;
== GenI ==&lt;br /&gt;
http://hackage.haskell.org/package/GenI &lt;br /&gt;
([http://trac.loria.fr/~geni old site] points to an empty folder in April, 2011)&lt;br /&gt;
&lt;br /&gt;
surface realiser for (Feature-Based Lexicalised) Tree Adjoining Grammar and a flat MRS-like semantics (sans top handle and underspecification).  Toy example grammars provided for English and French.  Largish core grammar for French is under development (contact us for details).  GPL, known to work under Linux and Mac OS X (potential for making it work on Windows as well).  Written in Haskell. Source code avalailable via [http://www.darcs.net darcs].&lt;br /&gt;
&lt;br /&gt;
== Grammar Explorer ==&lt;br /&gt;
http://www.fb10.uni-bremen.de/anglistik/langpro/kpml/tutorials/Grexplorer/grexplorer.html ([http://www.stir.ac.uk/crcl/Computational-tools/Grexplorer/grexplorer.html old site] unavailable as April, 2011)&lt;br /&gt;
&lt;br /&gt;
provides a means of exploring large-scale systemic-functional grammars in order to see how they are &lt;br /&gt;
organized and what kinds of things they cover. It can be used to explore the KPML resources. &lt;br /&gt;
Downloadable standalone executables of the grammar explorer are available for&amp;amp;nbsp;Windows 95/98/NT.&lt;br /&gt;
These already include a version of the Nigel grammar of English and pre-installed examples.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- no longer available as of April, 2011&lt;br /&gt;
== HALogen ==&lt;br /&gt;
http://www.isi.edu/licensed-sw/halogen/&lt;br /&gt;
&lt;br /&gt;
HALogen is a general-purpose natural language generation system developed by Irene Langkilde-Geary and  Kevin Knight at the USC Information Sciences Institute. &lt;br /&gt;
The download package consists of the symbolic generator, the forest ranker, and some sample inputs. The symbolic generator includes the  Sensus Ontology dictionary (which is based on WordNet). The forest ranker includes a 250-million word ngram language model (unigram, bigram, and trigram) trained on WSJ newspaper text. The symbolic generator is written in LISP and requires a CommonLisp interpreter.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- NOT AN NLG SYSTEM:&lt;br /&gt;
== kfNgram ==&lt;br /&gt;
http://www.kwicfinder.com/kfNgram/&lt;br /&gt;
&lt;br /&gt;
kfNgram is a free stand-alone Windows program for linguistic research which generates lists of n-grams in text and HTML files.  Here n-gram is understood as a sequence of either n words, where n can be any positive integer, also known as lexical bundles, chains, wordgrams, and, in WordSmith, clusters, or else of n characters, also known as chargrams.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
== KPML ==&lt;br /&gt;
&lt;br /&gt;
http://www.purl.org/net/kpml&lt;br /&gt;
&lt;br /&gt;
The KPML system offers a robust, mature platform for large-scale grammar engineering that is particularly oriented to multilingual grammar development and generation. It is particularly targetted at providing resources for realistic but broad-coverage generation applications, where both flexibility of expression and speed of generation are at issue—for example in online webpage generation or spoken dialogue. KPML is also used extensively in multilingual text generation research and for teaching. It is based on systemic functional linguistics.&lt;br /&gt;
&lt;br /&gt;
The KPML system was a direct descendent of the Penman text generation system, as developed further &lt;br /&gt;
multilingually in cooperative work between &lt;br /&gt;
the Komet (http://www.darmstadt.gmd.de/publish/komet/index.html)&lt;br /&gt;
project in Darmstadt and the Systemic Modelling Group&lt;br /&gt;
at Macquarie University. Downloadable standalone executables of the system are available for &lt;br /&gt;
PCs running Windows. The source code is written in ANSI Common Lisp and uses the &lt;br /&gt;
Common Lisp Interface Manager (CLIM). &lt;br /&gt;
The system has been compiled and tested[&lt;br /&gt;
under Franz Allegro Common Lisp (4.2, 4.3, 4.3.1, 5.0, 6.0, 7.0)&lt;br /&gt;
for Unix and Franz Allegro Common Lisp 3.0 &lt;br /&gt;
and Harlequin Lispworks 4.0, 4.1, 4.2 for Windows. &lt;br /&gt;
It is possible to use the system without the window interface as a generator serving requests for generation across sockets or via files.&lt;br /&gt;
&lt;br /&gt;
A growing set of generation grammars are under development for a variety of languages, inlcluding English, Spanish, Dutch, Chinese, German, Czech, and more. See the &lt;br /&gt;
Generation Bank (http://www.fb10.uni-bremen.de/anglistik/langpro/kpml/genbank/generation-bank.html )&lt;br /&gt;
for current examples. The development of further languages and of extensions to existing resources are very welcome!&lt;br /&gt;
&lt;br /&gt;
== LKB ==&lt;br /&gt;
[http://wiki.delph-in.net/moin/LkbTop LKB] ([[Linguistic Knowledge Builder]]) is a grammar engineering environment for unification-based formalisms, typically HPSG.&lt;br /&gt;
It includes a [http://wiki.delph-in.net/moin/LkbGeneration realiser] that takes as input Minimal Recursion Semantics (MRS). LKB is implemented in Common Lisp, and is freely available under an open source license. It includes also a KNOPPIX-based GNU/Linux live-CD, with all the system installed, ready to use.&lt;br /&gt;
&lt;br /&gt;
== Multimodal Unification Grammar ==&lt;br /&gt;
http://www.david-reitter.com/compling/mug/&lt;br /&gt;
&lt;br /&gt;
MUG Workbench is a development and debugging tool for Multimodal NLG.  The grammar formalism supported is&lt;br /&gt;
Multimodal Functional Unification  Grammar (MUG).  The MUG system runs MUG grammars with fixed (test cases)&lt;br /&gt;
and  arbitrary input specifications to produce output in a natural  language, graphical user interface and&lt;br /&gt;
possibly in other modes. It is  designed to do three things:&lt;br /&gt;
- Multimodal Fission (distributing output to interaction/communication  modes)&lt;br /&gt;
- Some sentence planning (chosing information to include in the utterance)&lt;br /&gt;
- Natural Language and graphical user interface realization (producing  some form of output)&lt;br /&gt;
The MUG system does these three jobs in parallel. MUG Workbench can  serve to inspect the data-structures&lt;br /&gt;
used during generation. It  should help you to learn more about the nature of unification  grammars used&lt;br /&gt;
for parsing or natural language generation.  Furthermore, the MUG Workbench is helpful in debugging your grammars.&lt;br /&gt;
&lt;br /&gt;
== NaturalOWL ==&lt;br /&gt;
http://www.aueb.gr/users/ion/software/NaturalOWL1.1.tar.gz NaturalOWL (version 1.1)&lt;br /&gt;
&lt;br /&gt;
Generates descriptions of entities and classes from OWL ontologies that have been annotated with linguistic and user modeling resources expressed in RDF. Currently supports English and Greek. Extensions for other languages welcome. NaturalOWL can also be used as a [http://protege.stanford.edu/ Protégé] plug-in. See [http://www.aueb.gr/users/ion/publications.html here] for publications describing NaturalOWL. (GPL)&lt;br /&gt;
&lt;br /&gt;
==NLGen==&lt;br /&gt;
The [https://launchpad.net/nlgen NLGen] natural language generation system applies the [http://www.opencog.org/wiki/SegSim SegSim strategy] for generating English sentences. Probabilistic inference for sentence construction is based on a statistical analysis of [http://opencog.org/wiki/RelEx RelEx] output. Not to be confused with NLGen2, below, which uses a different sentence generation theory.  Java, Apache license. See demo: [http://novamente.net/example/nlp.html Demo of AI Virtual Pet Answering Simple Questions].&lt;br /&gt;
&lt;br /&gt;
== NLGen2 ==&lt;br /&gt;
The [https://launchpad.net/nlgen2 NLGen2] natural language generation system uses [http://opencog.org/wiki/RelEx RelEx] dependency parses, together with [http://www.abisource.com/projects/link-grammar/ Link Grammar] linkage analysis to generate English-language output.  Not to be confused with NLGen, above, which uses a different sentence generation theory. Java, Apache license. Reference: Blake Lemoine, &amp;quot;[http://www.louisiana.edu/~bal2277/NLGen2.doc NLGen2: A Linguistically Plausible, General Purpose Natural Language Generation System]&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== OpenCCG ==&lt;br /&gt;
[http://openccg.sourceforge.net/ OpenCCG], the OpenNLP CCG Library (formerly Grok), is both a parser and a realizer for [[Combinatory Categorial Grammar]]. It has been used in several dialog systems. The realizer has been enhanced with n-gram models and a supertagging approach called hypertagging. OpenCCG is implemented in Java, and is freely available under the LGPL.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- as of April, 2011, a 30-day trial of project reporter is no longer offered&lt;br /&gt;
== Project Reporter ==&lt;br /&gt;
http://www.cogentex.com/products/reporter&lt;br /&gt;
&lt;br /&gt;
Project Reporter generates dynamic web-based project status reports from files created with Microsoft Project or &lt;br /&gt;
other compatible project management software. Reports feature hyperlinked textual descriptions of &lt;br /&gt;
project elements, as well as coordinated multimodal display with an interactive Gantt chart applet. &lt;br /&gt;
Commercial product. Implemented in Java. Free 30-day evaluation; on-line demo on website.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== RAGS (Reference Architecture for Generation Systems) software ==&lt;br /&gt;
http://www.csd.abdn.ac.uk/~cmellish/rags/deliverables/&lt;br /&gt;
&lt;br /&gt;
Deliverables from the RAGS project - RAGSOCKS software for interfacing modules using RAGS data representations,&lt;br /&gt;
example RAGS module (genetic algorithm based text planner) and RAGS wrapper for FUF/SURGE.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- no longer available, nor a NLG syste,&lt;br /&gt;
== RSTTool ==&lt;br /&gt;
http://www.dai.ed.ac.uk/staff/personal_pages/micko/RSTTool/&lt;br /&gt;
&lt;br /&gt;
is a tool which allows you to graphically annotate the &lt;br /&gt;
rhetorical structure of your text. The structure can be saved in an xml format, or save &lt;br /&gt;
eps versions of the structure diagram for inclusion in Latex, etc. Written in Tcl/Tk. &lt;br /&gt;
Runs on any machine.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== SimpleNLG ==&lt;br /&gt;
&lt;br /&gt;
http://www.csd.abdn.ac.uk/~ereiter/simplenlg&lt;br /&gt;
&lt;br /&gt;
is an ultra-simple Java-based realiser.  Its&lt;br /&gt;
grammatical coverage and syntactic knowledge is&lt;br /&gt;
minuscule compared to KPML or FUF/SURGE.&lt;br /&gt;
However, because it is so simple, its relatively&lt;br /&gt;
easy for people to learn how to use it.  It has&lt;br /&gt;
been used by many people in Aberdeen, and also&lt;br /&gt;
for teaching.  It is set up as a Java package,&lt;br /&gt;
so it can only be used by Java programs.&lt;br /&gt;
&lt;br /&gt;
== SPUD ==&lt;br /&gt;
[http://www.cs.rutgers.edu/~mdstone/nlg.html SPUD] (Sentence Planner Using Descriptions) is Matthew Purver&#039;s LTAG-based NLG system. There are two versions: SPUD version 0.01 was written in SML. Later versions, known as SPUD lite, are written in Prolog. The small codebase of SPUD lite makes it ideal for teaching, but it is also used in dialog system prototypes.&lt;br /&gt;
&lt;br /&gt;
== STANDUP ==&lt;br /&gt;
The [http://www.csd.abdn.ac.uk/research/standup/ STANDUP project] (System To Augment Non-speakers&#039; Dialogue Using Puns) is a collaborative project on generating simple jokes from a graphical user interface appropriate for non-speaking children. The project began in October 2003 and ran until March 2007. The software was written in Java and is available for Windows and Linux, including source code and database files.&lt;br /&gt;
&lt;br /&gt;
== Suregen-2 ==&lt;br /&gt;
[http://www.suregen.de/00023.html Suregen] is “a hybrid, ontology based and NLG-oriented formalism for generating text for documents in clinical medicine.”&lt;br /&gt;
The system Suregen-2 is written in (Allegro) Common Lisp. A [http://www.suregen.de/ftp/standalone1.zip demo system] which runs under Windows is available for download. A [http://www.suregen.de/ftp/selfrunningdemo.zip screencast video] shows data being entered into computer forms using mouse and keyboard while a feedback text is continually updated and shown below. (Try playing the AVI file in [http://www.videolan.org/vlc/ VLC] if you run into problems.) Perhaps this system could be considered an instance of the [http://en.wikipedia.org/wiki/WYSIWYM_(Meant) WYSIWYM] approach.&lt;br /&gt;
&lt;br /&gt;
== SURGE ==&lt;br /&gt;
http://www.cs.bgu.ac.il/surge/&lt;br /&gt;
&lt;br /&gt;
Syntactic realization package. (A CommonLisp package providing an interpreter for a functional&lt;br /&gt;
unification formalism called FUF and SURGE, a large grammar of English written in FUF.) Offers download of SURGE 2.2.&lt;br /&gt;
&lt;br /&gt;
== SURGE 2.3 ==&lt;br /&gt;
http://homepages.inf.ed.ac.uk/ccallawa/resources.html&lt;br /&gt;
&lt;br /&gt;
The latest version of Surge, including support for written dialogue, and expanded&lt;br /&gt;
syntactic coverage based on the Penn TreeBank.&lt;br /&gt;
&lt;br /&gt;
== SURG-SP ==&lt;br /&gt;
http://homepages.inf.ed.ac.uk/ccallawa/resources.html&lt;br /&gt;
&lt;br /&gt;
Systemic Unification Reusable Grammar for Spanish is a large scale&lt;br /&gt;
Spanish grammar allowing systems which already use FUF/SURGE for English NLG to be able&lt;br /&gt;
to generate syntactically (and many times semantically) equivalent text in Spanish when&lt;br /&gt;
new lexical items are introduced.  SURG-SP makes use of inputs almost identical to the&lt;br /&gt;
English version Surge 2.3.&lt;br /&gt;
&lt;br /&gt;
== SURG-IT ==&lt;br /&gt;
http://homepages.inf.ed.ac.uk/ccallawa/resources.html&lt;br /&gt;
&lt;br /&gt;
The Italian version of Surge 2.3.&lt;br /&gt;
&lt;br /&gt;
== TG/2 ==&lt;br /&gt;
http://www.dfki.de/pas/f2w.cgi?lts/tg2-e&lt;br /&gt;
&lt;br /&gt;
is a shallow verbalizer that can be quickly accustomed to new domains and tasks. &lt;br /&gt;
It combines context-free grammars with templates and canned &lt;br /&gt;
text in a single formalism. Thus the granularity of the language model may depend on the application&lt;br /&gt;
needs. The system currently runs under Solaris 2.5. It is available freely under a research license.&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;br /&gt;
{{SIGGEN Wiki}}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=NLG_publications_list&amp;diff=8769</id>
		<title>NLG publications list</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=NLG_publications_list&amp;diff=8769"/>
		<updated>2011-04-04T08:57:47Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: added my thesis&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- MoinMoin name:  PublicationsList --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Comment:         --&amp;gt;&lt;br /&gt;
&amp;lt;!-- WikiMedia name: PublicationsList --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Page revision:  00000017 --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Original date:  Tue Jul 17 16:19:01 2007 (1184689141000000) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you would like to add your own refereed and NLG-related publications, please go ahead - use the &amp;quot;Edit&amp;quot; link above to do it yourself.&lt;br /&gt;
&lt;br /&gt;
(Correct any broken links if you can - Thanks!)&lt;br /&gt;
&lt;br /&gt;
== Bibliographies ==&lt;br /&gt;
&lt;br /&gt;
* John Bateman and Michael Zock&#039;s list of [http://www.fb10.uni-bremen.de/anglistik/langpro/NLG-table/NLG-table-root.htm NLG systems] and associated references has now moved to the [http://www.nlg-wiki.org/systems/ NLG Systems Wiki].&lt;br /&gt;
* John Bateman&#039;s Bibliography site [http://www.fb10.uni-bremen.de/anglistik/langpro/bibliographies/index.htm] contains a superset of the references used in the above list of NLG systems, including references for all aspects of NLG. Particular sub-bibliographies can be generated on demand. There are over 3000 entries concerning NLG and updates are welcome. The bibliography is maintained in [[BibTeX]] and is linked to/maintained at the &amp;lt;i&amp;gt;Collection of Computer Science Bibliographies&amp;lt;/i&amp;gt; with its extensive cross-linking and search facilities.&lt;br /&gt;
* A 1993 bibliography of ~1200 entries provided by [http://www.kantrowitz.com:80/kantrowitz/mark.html Mark Kantrowitz] [http://liinwww.ira.uka.de/bibliography/Ai/nlg.html  On-line searchable version] ([ftp://ftp.cs.bgu.ac.il/pub/siggen/kbib/nlg-bib.ps.gz ps.gz] 126K, 49 pages, [ftp://ftp.cs.bgu.ac.il/pub/siggen/kbib/nlg-bib.dvi.gz dvi.gz] 109K, [ftp://ftp.cs.bgu.ac.il/pub/siggen/kbib/nlg.bib.gz  BIBTEX source bib.gz] 72K) Mark Kantrowitz, &amp;lt;i&amp;gt;&amp;quot;Bibliography of Research in Natural Language Generation&amp;quot;&amp;lt;/i&amp;gt;, Techical Report CMU-CS-93-216, Carnegie Mellon University, November 1993.&lt;br /&gt;
* A 1990 annotated bibliography provided by Robert Dale, 27 pages ([ftp://ftp.cs.bgu.ac.il/pub/siggen/dbib/IntroToNLG-[[RefList]].ps.gz  ps.gz] 70K, [ftp://ftp.cs.bgu.ac.il/pub/siggen/dbib/IntroToNLG-[[RefList]].tex.gz  [[LaTeX]] source tex.gz] 70K)&lt;br /&gt;
* A 1993 revision of Dale&#039;s bibliography, 50 pages ([ftp://ftp.cs.bgu.ac.il/pub/siggen/dbib/nlgbiblio2.01a4.ps.gz ps.gz] 100K)&lt;br /&gt;
* Aggeliki Dimitromanolaki&#039;s [http://www.iit.demokritos.gr/~adimit/bibliography.html  bibliography on machine learning and natural language generation]&lt;br /&gt;
* Piwek, P. (2003). An Annotated Bibliography of Affective Natural Language Generation. version 1.3 (version 1.0 appeared in 2002 as ITRI Technical Report ITRI-02-02, University of Brighton). [http://mcs.open.ac.uk/pp2464/affect-bib.pdf pdf]&lt;br /&gt;
* Piwek, P. and K. van Deemter (2006). Constraint-based Natural Language Generation: A Survey. Technical Report 2006/03, Computing Department, The Open University. [http://mcs.open.ac.uk/pp2464/constraints_survey.pdf pdf] [http://mcs.open.ac.uk/pp2464/constraints_in_nlg.bib bib]&lt;br /&gt;
&lt;br /&gt;
== Tutorials ==&lt;br /&gt;
&lt;br /&gt;
* Dale &amp;amp; Reiter&#039;s ANLP-97 Tutorial on Building Applied Natural Language Generation Systems. ([http://www.csd.abdn.ac.uk/~ereiter/papers/tut-ppt7.ppt.gz PPT7]) ([http://www.csd.abdn.ac.uk/~ereiter/papers/tut-ppt4.ppt.gz PPT4]) ([http://www.csd.abdn.ac.uk/~ereiter/papers/tut.ps.gz Postscript])&lt;br /&gt;
* Emiel Krahmer and Paul Piwek. Natural Language Generation for Embodied Agents. At the 7th European Agent Systems Summer School (EASSS) (July 2005, Utrecht). [http://mcs.open.ac.uk/pp2464/easss05 course material]   &lt;br /&gt;
&lt;br /&gt;
== Theses ==&lt;br /&gt;
&lt;br /&gt;
* Charles Callaway, &amp;lt;i&amp;gt;Narrative Prose Generation&amp;lt;/i&amp;gt;, Ph.D. Thesis, Department of Computer Science, North Carolina State University, April 2000. [http://homepages.inf.ed.ac.uk/ccallawa/pubs.html#dissertation web page]&lt;br /&gt;
* Giuseppe Carenini, &amp;lt;i&amp;gt;Generating and Evaluating Evaluative Arguments&amp;lt;/i&amp;gt;, Ph.D. Thesis, Department of Computer Science, University of Pittsburgh, 2000. [http://www.cs.ubc.ca/~carenini/THESIS/thesis-page.html web page]&lt;br /&gt;
* Hercules Dalianis, &amp;lt;i&amp;gt;Concise Natural Language Generation from Formal Specifications&amp;lt;/i&amp;gt;, Ph.D. Thesis, (Teknologie Doktorsavhandling), Department of Computer and Systems Sciences, Royal Institute of Technology, Stockholm University, June 1996, Report Series No. 96-008, ISSN 1101-8526, SRN SU-KTH/DSV/R--96/8--SE. [http://www.cs.bgu.ac.il/siggen/abstracts.html#dalianis-phd Abstract]&lt;br /&gt;
* Michael Elhadad, &amp;lt;i&amp;gt;Using argumentation to control lexical choice: a unification-based implementation&amp;lt;/i&amp;gt;, PhD thesis, Columbia University, Dept of Computer Science, 1993, [ftp://ftp.cs.bgu.ac.il/pub/siggen/elhadad-phd.ps.gz ps gzipped] (575K).&lt;br /&gt;
* Pablo Duboue, &#039;&#039;[http://duboue.net/pablo/thesis.html Indirect Supervised Learning of Strategic Generation Logic]&#039;&#039;, PhD thesis, Columbia University, Dept of Computer Science, 2005, [http://duboue.net/pablo/thesis/duboue2005thesis_deposit.pdf deposit PDF] [http://duboue.net/pablo/thesis/duboue2005thesis_single.pdf single page PDF] [http://duboue.net/pablo/thesis/html/index.html HTML]&lt;br /&gt;
* Blake Lemoine, &#039;&#039;[http://www.louisiana.edu/~bal2277/NLGen2.doc NLGen2: A Linguistically Plausible, General Purpose Natural Language Generation System]&#039;&#039;, August 2009, Center for Advanced Computer Studies, University of Louisiana, Lafayette. Excerpt from Master&#039;s thesis.  &lt;br /&gt;
* Maria Milosavljevic. &amp;lt;i&amp;gt;The Automatic Generation of Comparisons in Descriptions of Entities&amp;lt;/i&amp;gt;. PhD Thesis. Department of Computing, Macquarie University. February 1999. [http://www.comp.mq.edu.au/~mariam/papers/thesis/thesis.pdf pdf], [http://www.comp.mq.edu.au/~mariam/papers/thesis/thesis.ps.gz ps.gz]&lt;br /&gt;
* Jacques Robin, &amp;lt;i&amp;gt;Revision-based generation of natural language summaries providing historical background: corpus-based analysis, design, implementation and evaluation&amp;lt;/i&amp;gt;, PhD thesis, Columbia University, Dept of Computer Science, 1994, [ftp://ftp.cs.bgu.ac.il/pub/siggen/robin-phd.ps.gz ps gzipped] (762K).&lt;br /&gt;
* Manfred Stede, &amp;lt;i&amp;gt;Lexical semantics and knowledge representation in multilingual sentence generation&amp;lt;/i&amp;gt;, PhD thesis, Department of Computer Science, University of Toronto, 1996, Technical report CSRI-347, [http://www.cs.bgu.ac.il/siggen/abstracts.html#stede-phd Abstract], [ftp://ftp.cs.bgu.ac.il/pub/siggen/stede-phd.ps.gz ps gz] (384K), [ftp://ftp.cs.utoronto.ca/csri-technical-reports/347/Stede-thesis.ps.gz ps gz Toronto], [ftp://ftp.cs.utoronto.ca/csri-technical-reports/347/Stede-thesis.ps ps Toronto] (1292K).&lt;br /&gt;
* Mariet Theune, &amp;lt;i&amp;gt;From data to speech: language generation in context&amp;lt;/i&amp;gt;, PhD thesis, University of Eindhoven, The Netherlands, 2000.  [http://alexandria.tue.nl/extra2/200013408.pdf pdf]&lt;br /&gt;
&lt;br /&gt;
== Natural Language Generation Workshops ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;&#039;Note&#039;&amp;lt;/b&amp;gt;: Proceedings of many NLG workshops&lt;br /&gt;
are available at the&lt;br /&gt;
[http://www.aclweb.org/anthology ACL Anthology]&lt;br /&gt;
* [http://acl.ldc.upenn.edu/W/SIGGEN.html SIGGEN] contains proceedings of INLG 1990, 1994, 1996, 1998, 2000&lt;br /&gt;
* [http://acl.ldc.upenn.edu/W/W05 workshops05] contains proceedings of ENLG 2005&lt;br /&gt;
* [http://acl.ldc.upenn.edu/W/W06/ workshops06] contains proceedings of INLG 2006&lt;br /&gt;
&lt;br /&gt;
=== 1992 International NLGW ===&lt;br /&gt;
&lt;br /&gt;
* Michael Elhadad and Jacques Robin, &amp;lt;i&amp;gt;Controlling Content Realization with Functional Unification Grammars&amp;lt;/i&amp;gt;, in &amp;lt;var&amp;gt;Aspects of Automated Natural Language Generation&amp;lt;/var&amp;gt;&amp;lt;nowiki&amp;gt;; R. Dale, E. Hovy, D. Rosner and O. Stock editors, 89-104, Springer Verlag, 1992. (16 pages: 53K &amp;lt;/nowiki&amp;gt;[ftp://ftp.cs.bgu.ac.il/pub/people/elhadad/control.ps.gz ps gz], 62K [ftp://ftp.cs.bgu.ac.il/pub/people/elhadad/control.dvi dvi])&lt;br /&gt;
&lt;br /&gt;
=== 1994 International NLGW ===&lt;br /&gt;
&lt;br /&gt;
* Beryl Hoffman, &amp;lt;i&amp;gt;Generating Context-Appropriate Word Orders in Turkish&amp;lt;/i&amp;gt;, [http://www.cs.bgu.ac.il/siggen/abstracts.html#inlg94-hoffman Abstract], [http://xxx.lanl.gov/abs/cmp-lg/9407017 cmp-lg], [ftp://ftp.cs.bgu.ac.il/pub/siggen/inlg94-hoffman.ps.gz ps gz] (53K)&lt;br /&gt;
* Franck Panaget, &amp;lt;i&amp;gt;Using a textual representational level component in the context of discourse or dialog generation&amp;lt;/i&amp;gt;, [ftp://ftp.cs.bgu.ac.il/pub/siggen/inlg94-panaget.ps.gz ps gz] (10 pages, 57K)&lt;br /&gt;
* E. Reiter, &amp;lt;i&amp;gt;Has a Consensus NLG Architecture Appeared, and is it Psycholinguistically Plausible?&amp;lt;/i&amp;gt;, [http://www.cs.bgu.ac.il/siggen/abstracts.html#inlg94-reiter Abstract], [http://xxx.lanl.gov/abs/cmp-lg/9411032 cmp-lg], [ftp://ftp.cs.bgu.ac.il/pub/siggen/inlg94-reiter.ps.gz ps gz] (56K)&lt;br /&gt;
* R. Michael Young and Johanna D. Moore, &amp;lt;i&amp;gt;DPOCL: A Principled Approach to Discourse Planning&amp;lt;/i&amp;gt;, [http://www.cs.bgu.ac.il/siggen/abstracts.html#inlg94-young Abstract], 8 pages, [http://xxx.lanl.gov/abs/cmp-lg/9406020 cmp-lg], [ftp://ftp.cs.bgu.ac.il/pub/siggen/inlg94-young.ps.gz ps gz] (52K)&lt;br /&gt;
&lt;br /&gt;
=== 1995 European NLGW ===&lt;br /&gt;
&lt;br /&gt;
* Brigitte Grote, Nils Lenke and Manfred Stede, &amp;lt;i&amp;gt;Ma(r)king concessions in English and German&amp;lt;/i&amp;gt;, (23 pages, [http://www.cs.bgu.ac.il/siggen/abstracts.html#enlg95-grote Abstract], [http://xxx.lanl.gov/abs/cmp-lg/9506001 cmp-lg], [ftp://ftp.cs.bgu.ac.il/pub/siggen/enlg95-grote.ps.gz ps gz] 147K)&lt;br /&gt;
* E. Reiter, &amp;lt;i&amp;gt;NLG vs Templates&amp;lt;/i&amp;gt;, [http://www.cs.bgu.ac.il/siggen/abstracts.html#enlg95-reiter (Abstract], [http://xxx.lanl.gov/abs/cmp-lg/9504013 cmp-lg], [ftp://ftp.cs.bgu.ac.il/pub/siggen/enlg95-reiter.ps.gz ps gz] 113K)&lt;br /&gt;
* Michael White, &amp;lt;i&amp;gt;Presenting Punctuation&amp;lt;/i&amp;gt;, [http://www.cs.bgu.ac.il/siggen/abstracts.html#enlg95-white (Abstract], [http://xxx.lanl.gov/abs/cmp-lg/9506012 cmp-lg], [ftp://ftp.cs.bgu.ac.il/pub/siggen/enlg95-white.ps.gz ps gz] 113K, 19 pages)&lt;br /&gt;
&lt;br /&gt;
=== 1996 International NLGW (Brighton) ===&lt;br /&gt;
([http://www.itri.brighton.ac.uk/events/INLG-96/ Link])&lt;br /&gt;
&lt;br /&gt;
* Stephan Busemann, &amp;lt;i&amp;gt;Best-First Surface Realization&amp;lt;/i&amp;gt;, [http://www.cs.bgu.ac.il/siggen/abstracts.html#inlg96-busemann Abstract], 10 pages, 60K, [http://xxx.lanl.gov/abs/cmp-lg/9605010 cmp-lg], [ftp://ftp.cs.bgu.ac.il/pub/siggen/inlg96-busemann.ps.gz ps gz]&lt;br /&gt;
* H. Dalianis and E, Hovy, &amp;lt;i&amp;gt;On Lexical Aggregation and Ordering&amp;lt;/i&amp;gt; (Demo), [ftp://ftp.cs.bgu.ac.il/pub/siggen/inlg96-dalianis.ps.gz ps gz] (14K) or [http://www.dsv.su.se/~hercules/INLG96.html alternate]&lt;br /&gt;
* Michael Elhadad &amp;amp; Jacques Robin (Demo) &amp;lt;i&amp;gt;An Overview of SURGE: A reusable comprehensive syntactic realization component&amp;lt;/i&amp;gt; (10 pages, 55K [ftp://ftp.cs.bgu.ac.il/pub/people/elhadad/surge.dvi dvi], [ftp://ftp.cs.bgu.ac.il/pub/people/elhadad/surge.ps.gz ps gz])&lt;br /&gt;
* Dilek Zeynep Hakkani, Kemal Oflazer and Ilyas Cicekli, &amp;lt;i&amp;gt;Tactical Generation in a Free Constituent Order Language&amp;lt;/i&amp;gt;, [http://www.cs.bgu.ac.il/siggen/abstracts.html#inlg96-hakkani Abstract], 10 pages, 57K, [http://xxx.lanl.gov/abs/cmp-lg/9605008 cmp-lg], [ftp://ftp.cs.bgu.ac.il/pub/siggen/inlg96-hakkani.ps.gz ps gz]&lt;br /&gt;
* Keith Vander Linden and Barbara Di Eugenio, &amp;lt;i&amp;gt;Learning Micro-Planning Rules for Preventative Expressions&amp;lt;/i&amp;gt;, [http://www.cs.bgu.ac.il/siggen/abstracts.html#inlg96-vanderlinden Abstract], 8 pages, 95K, [ftp://ftp.cs.bgu.ac.il/pub/siggen/inlg96-vanderlinden.ps.gz ps gz], [http://xxx.lanl.gov/abs/cmp-lg/9607015 cmp-lg]&lt;br /&gt;
&lt;br /&gt;
=== UCNLG 2005 ===&lt;br /&gt;
Anja Belz and Sebastian Varges (eds). &amp;lt;i&amp;gt;Proceedings of the Corpus Linguistics 2005Workshop on Using Corpora for Natural Language Generation&amp;lt;/i&amp;gt;. Available [http://www.itri.brighton.ac.uk/ucnlg/Proceedings/index.html individually] or as a single [http://www.itri.brighton.ac.uk/~Anja.Belz/Publications/UCNLG05-proceedings.pdf PDF] file.&lt;br /&gt;
&lt;br /&gt;
=== INLG&#039;06 Special Session on Sharing Data and Comparative Evaluation ===&lt;br /&gt;
See [[Sharing data and evaluation (NLG)]].&lt;br /&gt;
&lt;br /&gt;
=== MOG 2007 ===&lt;br /&gt;
Ielka van der Sluis, Mariët Theune, Ehud Reiter &amp;amp; Emiel Krahmer (eds). &amp;lt;i&amp;gt;Proceedings of the Workshop on Multimodal Output Generation (MOG 2007)&amp;lt;/i&amp;gt;. 25-26 January 2007, Aberdeen, Scotland. [http://www.csd.abdn.ac.uk/mog2007/mog07_proceedings.pdf PDF].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Bibliographies]]&lt;br /&gt;
{{SIGGEN Wiki}}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Online_NLG_demos&amp;diff=8768</id>
		<title>Online NLG demos</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Online_NLG_demos&amp;diff=8768"/>
		<updated>2011-04-04T08:48:22Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: Checked links and moved off-line systems&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- MoinMoin name:  OnlineDemos --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Comment:        added pollen forecast demo to SumTime --&amp;gt;&lt;br /&gt;
&amp;lt;!-- WikiMedia name: OnlineDemos --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Page revision:  00000003 --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Original date:  Tue Sep 11 07:50:07 2007 (1189497007000000) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This page lists demos of NLG systems available online.&lt;br /&gt;
&lt;br /&gt;
== Pollen Forecast for Scotland ==&lt;br /&gt;
[http://www.csd.abdn.ac.uk/~rturner/ Ross Turner&#039;s] [http://www.csd.abdn.ac.uk/~rturner/cgi_bin/pollen.html Pollen Forecast for Scotland] NLG demo takes as input a pollen value for each of 6 areas of Scotland, and generates a textual pollen forecast.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== RISK ==&lt;br /&gt;
[http://www.csd.abdn.ac.uk/~chvenour/nlg/demos/risk.html RISK &amp;amp;ndash; 10 Year Coronary Heart Disease Predictor] aims to show various ways of presenting data. Input: medical data values. Output: tabular overview, textual summary, visual (comic-like), and chart diagram. Java applet.&lt;br /&gt;
&lt;br /&gt;
== Spatial descriptions for Kirklees in West Yorkshire ==&lt;br /&gt;
[http://www.csd.abdn.ac.uk/~rturner/ Ross Turner&#039;s] [http://www.csd.abdn.ac.uk/~rturner/cgi_bin/spatial.html Spatial descriptions for Kirklees in West Yorkshire] NLG demo takes as input a latitude and a longitude value, and generates a short spacial description relative to other places in the area.&lt;br /&gt;
&lt;br /&gt;
== STOP ==&lt;br /&gt;
http://www.csd.abdn.ac.uk/research/stop/ &lt;br /&gt;
produces personalised smoking-cessation&lt;br /&gt;
leaflets, based on responses to a smoking questionnaire.  The online version of STOP is&lt;br /&gt;
a simplified version of the main STOP system, which is based on paper input and output.&lt;br /&gt;
&lt;br /&gt;
== SUMTIME ==&lt;br /&gt;
http://www.csd.abdn.ac.uk/research/sumtime/&lt;br /&gt;
&lt;br /&gt;
SumTime-Mousam generates textual weather forecasts from numerical&lt;br /&gt;
weather data.  This demo shows how textual descriptions of changes&lt;br /&gt;
in wind speed and direction are generated from wind data. &lt;br /&gt;
&lt;br /&gt;
There is a corresponding [[Data sets for NLG|dataset]] called [[SumTime-Meteo]] available.&lt;br /&gt;
&lt;br /&gt;
A related demo generates [[#Pollen_Forecast_for_Scotland|pollen forecasts for Scotland]].&lt;br /&gt;
This may be easier for non-meteorologists to&lt;br /&gt;
understand, and the demo shows the human corpus&lt;br /&gt;
texts as well as the computer-generated texts.&lt;br /&gt;
&lt;br /&gt;
== TEMSIS ==&lt;br /&gt;
http://www.dfki.de/service/nlg-demo/&lt;br /&gt;
automatically generates air quality reports for the Franco-German border area &lt;br /&gt;
in the Moselle-Saar region.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= currenty offline =&lt;br /&gt;
&lt;br /&gt;
== ILEX ==&lt;br /&gt;
http://www.hcrc.ed.ac.uk/ilex/demos/museum.cgi&lt;br /&gt;
is a virtual museum system; it automatically produces&lt;br /&gt;
descriptions of museum items, taking into account the educational importance &lt;br /&gt;
of particular aspects of the objects. &amp;lt;small&amp;gt;(NLG functionality currently unavailable?)&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Peba-II ==&lt;br /&gt;
http://www.dynamicmultimedia.com.au/peba/&lt;br /&gt;
is an on-line animal encyclopedia&lt;br /&gt;
that produces descriptions and comparisons of animals as web pages.&lt;br /&gt;
&lt;br /&gt;
== Power ==&lt;br /&gt;
http://www.mri.mq.edu.au/%7Epeba/PowerTNG/ &lt;br /&gt;
is another virtual museum which dynamically&lt;br /&gt;
generates descriptions of museum objects.&lt;br /&gt;
&lt;br /&gt;
== PERSONAGE ==&lt;br /&gt;
[https://nlds.soe.ucsc.edu/personage/demo PERSONAGE] can produce utterances expressing various personality types on a continuous scale. You can compare and recommend various restaurants in New York City, and vary the personality trait parameters to produce a new output utterance.&lt;br /&gt;
&lt;br /&gt;
== Project Reporter ==&lt;br /&gt;
http://www.cogentex.com/products/reporter/demo.html (link exists, but servlet seems to be down)&lt;br /&gt;
generates dynamic web-based project status reports from files created with Microsoft Project &lt;br /&gt;
or other compatible project management software. Reports feature hyperlinked textual &lt;br /&gt;
descriptions of project elements, as well as coordinated multimodal display with &lt;br /&gt;
an interactive Gantt chart applet.&lt;br /&gt;
&lt;br /&gt;
== StockReporter ==&lt;br /&gt;
http://www.mri.mq.edu.au/stockreporter/&lt;br /&gt;
is a system which produces descriptions of stock market data.&lt;br /&gt;
&lt;br /&gt;
== XIG - CStar Italian Generator ==&lt;br /&gt;
http://ecate.itc.it:1024/projects/cstar/cstar.html &lt;br /&gt;
is a system for generating Italian sentences from the interlingua content representation &lt;br /&gt;
Interchange Format) adopted inside the C-STAR II project, &lt;br /&gt;
whose target is to build a speech to speech&lt;br /&gt;
translation system able to treat spontaneous speech. The application domain is tourist information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;br /&gt;
{{SIGGEN Wiki}}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=Downloadable_NLG_systems&amp;diff=8767</id>
		<title>Downloadable NLG systems</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=Downloadable_NLG_systems&amp;diff=8767"/>
		<updated>2011-04-04T08:31:54Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: Commented out broken links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- MoinMoin name:  DownloadableSystems --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Comment:        changed simplenlg URL --&amp;gt;&lt;br /&gt;
&amp;lt;!-- WikiMedia name: DownloadableSystems --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Page revision:  00000012 --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Original date:  Tue Jan 23 16:22:14 2007 (1169569334000000) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The natural language generation systems listed below are available for download over the web.  &lt;br /&gt;
If you know of a system which is not listed here, please click on Edit in the upper left corner of this page and add the system yourself.&lt;br /&gt;
&lt;br /&gt;
== ASTROGEN ==&lt;br /&gt;
http://www.dsv.su.se/~hercules/ASTROGEN/ASTROGEN.html (unavailable as of April, 2011)&lt;br /&gt;
&lt;br /&gt;
Aggregated deep and Surface naTuRal language GENerator - Prolog based system. &lt;br /&gt;
&lt;br /&gt;
== CLINT ==&lt;br /&gt;
http://www.cs.bgu.ac.il/~elhadad/clint.html &lt;br /&gt;
&lt;br /&gt;
CLINT is a hybrid template / word-based generation system with an example application of &lt;br /&gt;
business letter generation. The system is written in C++ and runs under Microsoft Windows. &lt;br /&gt;
&amp;lt;!-- THIS IS NOT NLG:&lt;br /&gt;
== Concordance ==&lt;br /&gt;
http://www.concordancesoftware.co.uk/&lt;br /&gt;
&lt;br /&gt;
Concordance is a sophisticated text analysis software for making concordances, wordlists, &lt;br /&gt;
and Web Concordances.  &lt;br /&gt;
Supports many different Western languages.  Turn a concordance into HTML. &lt;br /&gt;
Fully functional version available for download with a time limit.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== CRISP ==&lt;br /&gt;
[http://code.google.com/p/crisp-nlg/ CRISP] is Alexander Koller&#039;s NLG system that tries to cast both microplanning and sentence realisation as an AI planning problem. The code is a mixture of Java and Scala, a scripting language for the Java virtual machine. CRISP comes with its own implementation of GraphPlan, but it can also output plans in PDDL (“Planning Domain Definition Language”, a successor to STRIPS) for use with other AI planners. License: LGPL.&lt;br /&gt;
&lt;br /&gt;
== FUF/SURGE ==&lt;br /&gt;
[http://www.cs.bgu.ac.il/~elhadad/research.html FUF] is available as the [ftp://ftp.cs.bgu.ac.il/pub/fuf/fuf5.3.tar.gz original Common Lisp implementation] and as a C++ port called [http://www.cs.bgu.ac.il/~elhadad/cfuf.zip CFUF] which has an embedded Scheme interpreter.&lt;br /&gt;
&lt;br /&gt;
For more information, see [[#SURGE]], [[#SURGE_2.3]], [[#SURG-SP]], [[#SURG-IT]].&lt;br /&gt;
&lt;br /&gt;
== GenI ==&lt;br /&gt;
http://hackage.haskell.org/package/GenI &lt;br /&gt;
([http://trac.loria.fr/~geni old site] points to an empty folder in April, 2011)&lt;br /&gt;
&lt;br /&gt;
surface realiser for (Feature-Based Lexicalised) Tree Adjoining Grammar and a flat MRS-like semantics (sans top handle and underspecification).  Toy example grammars provided for English and French.  Largish core grammar for French is under development (contact us for details).  GPL, known to work under Linux and Mac OS X (potential for making it work on Windows as well).  Written in Haskell. Source code avalailable via [http://www.darcs.net darcs].&lt;br /&gt;
&lt;br /&gt;
== Grammar Explorer ==&lt;br /&gt;
http://www.fb10.uni-bremen.de/anglistik/langpro/kpml/tutorials/Grexplorer/grexplorer.html ([http://www.stir.ac.uk/crcl/Computational-tools/Grexplorer/grexplorer.html old site] unavailable as April, 2011)&lt;br /&gt;
&lt;br /&gt;
provides a means of exploring large-scale systemic-functional grammars in order to see how they are &lt;br /&gt;
organized and what kinds of things they cover. It can be used to explore the KPML resources. &lt;br /&gt;
Downloadable standalone executables of the grammar explorer are available for&amp;amp;nbsp;Windows 95/98/NT.&lt;br /&gt;
These already include a version of the Nigel grammar of English and pre-installed examples.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- no longer available as of April, 2011&lt;br /&gt;
== HALogen ==&lt;br /&gt;
http://www.isi.edu/licensed-sw/halogen/&lt;br /&gt;
&lt;br /&gt;
HALogen is a general-purpose natural language generation system developed by Irene Langkilde-Geary and  Kevin Knight at the USC Information Sciences Institute. &lt;br /&gt;
The download package consists of the symbolic generator, the forest ranker, and some sample inputs. The symbolic generator includes the  Sensus Ontology dictionary (which is based on WordNet). The forest ranker includes a 250-million word ngram language model (unigram, bigram, and trigram) trained on WSJ newspaper text. The symbolic generator is written in LISP and requires a CommonLisp interpreter.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- NOT AN NLG SYSTEM:&lt;br /&gt;
== kfNgram ==&lt;br /&gt;
http://www.kwicfinder.com/kfNgram/&lt;br /&gt;
&lt;br /&gt;
kfNgram is a free stand-alone Windows program for linguistic research which generates lists of n-grams in text and HTML files.  Here n-gram is understood as a sequence of either n words, where n can be any positive integer, also known as lexical bundles, chains, wordgrams, and, in WordSmith, clusters, or else of n characters, also known as chargrams.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
== KPML ==&lt;br /&gt;
&lt;br /&gt;
http://www.purl.org/net/kpml&lt;br /&gt;
&lt;br /&gt;
The KPML system offers a robust, mature platform for large-scale grammar engineering that is particularly oriented to multilingual grammar development and generation. It is particularly targetted at providing resources for realistic but broad-coverage generation applications, where both flexibility of expression and speed of generation are at issue—for example in online webpage generation or spoken dialogue. KPML is also used extensively in multilingual text generation research and for teaching. It is based on systemic functional linguistics.&lt;br /&gt;
&lt;br /&gt;
The KPML system was a direct descendent of the Penman text generation system, as developed further &lt;br /&gt;
multilingually in cooperative work between &lt;br /&gt;
the Komet (http://www.darmstadt.gmd.de/publish/komet/index.html)&lt;br /&gt;
project in Darmstadt and the Systemic Modelling Group&lt;br /&gt;
at Macquarie University. Downloadable standalone executables of the system are available for &lt;br /&gt;
PCs running Windows. The source code is written in ANSI Common Lisp and uses the &lt;br /&gt;
Common Lisp Interface Manager (CLIM). &lt;br /&gt;
The system has been compiled and tested[&lt;br /&gt;
under Franz Allegro Common Lisp (4.2, 4.3, 4.3.1, 5.0, 6.0, 7.0)&lt;br /&gt;
for Unix and Franz Allegro Common Lisp 3.0 &lt;br /&gt;
and Harlequin Lispworks 4.0, 4.1, 4.2 for Windows. &lt;br /&gt;
It is possible to use the system without the window interface as a generator serving requests for generation across sockets or via files.&lt;br /&gt;
&lt;br /&gt;
A growing set of generation grammars are under development for a variety of languages, inlcluding English, Spanish, Dutch, Chinese, German, Czech, and more. See the &lt;br /&gt;
Generation Bank (http://www.fb10.uni-bremen.de/anglistik/langpro/kpml/genbank/generation-bank.html )&lt;br /&gt;
for current examples. The development of further languages and of extensions to existing resources are very welcome!&lt;br /&gt;
&lt;br /&gt;
== LKB ==&lt;br /&gt;
[http://wiki.delph-in.net/moin/LkbTop LKB] ([[Linguistic Knowledge Builder]]) is a grammar engineering environment for unification-based formalisms, typically HPSG.&lt;br /&gt;
It includes a [http://wiki.delph-in.net/moin/LkbGeneration realiser] that takes as input Minimal Recursion Semantics (MRS). LKB is implemented in Common Lisp, and is freely available under an open source license. It includes also a KNOPPIX-based GNU/Linux live-CD, with all the system installed, ready to use.&lt;br /&gt;
&lt;br /&gt;
== Multimodal Unification Grammar ==&lt;br /&gt;
http://www.david-reitter.com/compling/mug/&lt;br /&gt;
&lt;br /&gt;
MUG Workbench is a development and debugging tool for Multimodal NLG.  The grammar formalism supported is&lt;br /&gt;
Multimodal Functional Unification  Grammar (MUG).  The MUG system runs MUG grammars with fixed (test cases)&lt;br /&gt;
and  arbitrary input specifications to produce output in a natural  language, graphical user interface and&lt;br /&gt;
possibly in other modes. It is  designed to do three things:&lt;br /&gt;
- Multimodal Fission (distributing output to interaction/communication  modes)&lt;br /&gt;
- Some sentence planning (chosing information to include in the utterance)&lt;br /&gt;
- Natural Language and graphical user interface realization (producing  some form of output)&lt;br /&gt;
The MUG system does these three jobs in parallel. MUG Workbench can  serve to inspect the data-structures&lt;br /&gt;
used during generation. It  should help you to learn more about the nature of unification  grammars used&lt;br /&gt;
for parsing or natural language generation.  Furthermore, the MUG Workbench is helpful in debugging your grammars.&lt;br /&gt;
&lt;br /&gt;
== NaturalOWL ==&lt;br /&gt;
http://www.aueb.gr/users/ion/software/NaturalOWL1.1.tar.gz NaturalOWL (version 1.1)&lt;br /&gt;
&lt;br /&gt;
Generates descriptions of entities and classes from OWL ontologies that have been annotated with linguistic and user modeling resources expressed in RDF. Currently supports English and Greek. Extensions for other languages welcome. NaturalOWL can also be used as a [http://protege.stanford.edu/ Protégé] plug-in. See [http://www.aueb.gr/users/ion/publications.html here] for publications describing NaturalOWL. (GPL)&lt;br /&gt;
&lt;br /&gt;
==NLGen==&lt;br /&gt;
The [https://launchpad.net/nlgen NLGen] natural language generation system applies the [http://www.opencog.org/wiki/SegSim SegSim strategy] for generating English sentences. Probabilistic inference for sentence construction is based on a statistical analysis of [http://opencog.org/wiki/RelEx RelEx] output. Not to be confused with NLGen2, below, which uses a different sentence generation theory.  Java, Apache license. See demo: [http://novamente.net/example/nlp.html Demo of AI Virtual Pet Answering Simple Questions].&lt;br /&gt;
&lt;br /&gt;
== NLGen2 ==&lt;br /&gt;
The [https://launchpad.net/nlgen2 NLGen2] natural language generation system uses [http://opencog.org/wiki/RelEx RelEx] dependency parses, together with [http://www.abisource.com/projects/link-grammar/ Link Grammar] linkage analysis to generate English-language output.  Not to be confused with NLGen, above, which uses a different sentence generation theory. Java, Apache license. Reference: Blake Lemoine, &amp;quot;[http://www.louisiana.edu/~bal2277/NLGen2.doc NLGen2: A Linguistically Plausible, General Purpose Natural Language Generation System]&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
== OpenCCG ==&lt;br /&gt;
[http://openccg.sourceforge.net/ OpenCCG], the OpenNLP CCG Library (formerly Grok), is both a parser and a realizer for [[Combinatory Categorial Grammar]]. It has been used in several dialog systems. The realizer has been enhanced with n-gram models and a supertagging approach called hypertagging. OpenCCG is implemented in Java, and is freely available under the LGPL.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- as of April, 2011, a 30-day trial of project reporter is no longer offered&lt;br /&gt;
== Project Reporter ==&lt;br /&gt;
http://www.cogentex.com/products/reporter&lt;br /&gt;
&lt;br /&gt;
Project Reporter generates dynamic web-based project status reports from files created with Microsoft Project or &lt;br /&gt;
other compatible project management software. Reports feature hyperlinked textual descriptions of &lt;br /&gt;
project elements, as well as coordinated multimodal display with an interactive Gantt chart applet. &lt;br /&gt;
Commercial product. Implemented in Java. Free 30-day evaluation; on-line demo on website.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== RAGS (Reference Architecture for Generation Systems) software ==&lt;br /&gt;
http://www.csd.abdn.ac.uk/~cmellish/rags/deliverables/&lt;br /&gt;
&lt;br /&gt;
Deliverables from the RAGS project - RAGSOCKS software for interfacing modules using RAGS data representations,&lt;br /&gt;
example RAGS module (genetic algorithm based text planner) and RAGS wrapper for FUF/SURGE.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- no longer available, nor a NLG syste,&lt;br /&gt;
== RSTTool ==&lt;br /&gt;
http://www.dai.ed.ac.uk/staff/personal_pages/micko/RSTTool/&lt;br /&gt;
&lt;br /&gt;
is a tool which allows you to graphically annotate the &lt;br /&gt;
rhetorical structure of your text. The structure can be saved in an xml format, or save &lt;br /&gt;
eps versions of the structure diagram for inclusion in Latex, etc. Written in Tcl/Tk. &lt;br /&gt;
Runs on any machine.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== SimpleNLG ==&lt;br /&gt;
&lt;br /&gt;
http://www.csd.abdn.ac.uk/~ereiter/simplenlg&lt;br /&gt;
&lt;br /&gt;
is an ultra-simple Java-based realiser.  Its&lt;br /&gt;
grammatical coverage and syntactic knowledge is&lt;br /&gt;
minuscule compared to KPML or FUF/SURGE.&lt;br /&gt;
However, because it is so simple, its relatively&lt;br /&gt;
easy for people to learn how to use it.  It has&lt;br /&gt;
been used by many people in Aberdeen, and also&lt;br /&gt;
for teaching.  It is set up as a Java package,&lt;br /&gt;
so it can only be used by Java programs.&lt;br /&gt;
&lt;br /&gt;
== SPUD ==&lt;br /&gt;
[http://www.cs.rutgers.edu/~mdstone/nlg.html SPUD] (Sentence Planner Using Descriptions) is Matthew Purver&#039;s LTAG-based NLG system. There are two versions: SPUD version 0.01 was written in SML. Later versions, known as SPUD lite, are written in Prolog. The small codebase of SPUD lite makes it ideal for teaching, but it is also used in dialog system prototypes.&lt;br /&gt;
&lt;br /&gt;
== STANDUP ==&lt;br /&gt;
The [http://www.csd.abdn.ac.uk/research/standup/ STANDUP project] (System To Augment Non-speakers&#039; Dialogue Using Puns) is a collaborative project on generating simple jokes from a graphical user interface appropriate for non-speaking children. The project began in October 2003 and ran until March 2007. The software was written in Java and is available for Windows and Linux, including source code and database files.&lt;br /&gt;
&lt;br /&gt;
== Suregen-2 ==&lt;br /&gt;
[http://www.suregen.de/00023.html Suregen] is “a hybrid, ontology based and NLG-oriented formalism for generating text for documents in clinical medicine.”&lt;br /&gt;
The system Suregen-2 is written in (Allegro) Common Lisp. A [http://www.suregen.de/ftp/standalone1.zip demo system] which runs under Windows is available for download. A [http://www.suregen.de/ftp/selfrunningdemo.zip screencast video] shows data being entered into computer forms using mouse and keyboard while a feedback text is continually updated and shown below. (Try playing the AVI file in [http://www.videolan.org/vlc/ VLC] if you run into problems.) Perhaps this system could be considered an instance of the [http://en.wikipedia.org/wiki/WYSIWYM_(Meant) WYSIWYM] approach.&lt;br /&gt;
&lt;br /&gt;
== SURGE ==&lt;br /&gt;
http://www.cs.bgu.ac.il/surge/&lt;br /&gt;
&lt;br /&gt;
Syntactic realization package. (A CommonLisp package providing an interpreter for a functional&lt;br /&gt;
unification formalism called FUF and SURGE, a large grammar of English written in FUF.) Offers download of SURGE 2.2.&lt;br /&gt;
&lt;br /&gt;
== SURGE 2.3 ==&lt;br /&gt;
http://homepages.inf.ed.ac.uk/ccallawa/resources.html&lt;br /&gt;
&lt;br /&gt;
The latest version of Surge, including support for written dialogue, and expanded&lt;br /&gt;
syntactic coverage based on the Penn TreeBank.&lt;br /&gt;
&lt;br /&gt;
== SURG-SP ==&lt;br /&gt;
http://homepages.inf.ed.ac.uk/ccallawa/resources.html&lt;br /&gt;
&lt;br /&gt;
Systemic Unification Reusable Grammar for Spanish is a large scale&lt;br /&gt;
Spanish grammar allowing systems which already use FUF/SURGE for English NLG to be able&lt;br /&gt;
to generate syntactically (and many times semantically) equivalent text in Spanish when&lt;br /&gt;
new lexical items are introduced.  SURG-SP makes use of inputs almost identical to the&lt;br /&gt;
English version Surge 2.3.&lt;br /&gt;
&lt;br /&gt;
== SURG-IT ==&lt;br /&gt;
http://homepages.inf.ed.ac.uk/ccallawa/resources.html&lt;br /&gt;
&lt;br /&gt;
The Italian version of Surge 2.3.&lt;br /&gt;
&lt;br /&gt;
== TG/2 ==&lt;br /&gt;
http://www.dfki.de/pas/f2w.cgi?lts/tg2-e&lt;br /&gt;
&lt;br /&gt;
is a shallow verbalizer that can be quickly accustomed to new domains and tasks. &lt;br /&gt;
It combines context-free grammars with templates and canned &lt;br /&gt;
text in a single formalism. Thus the granularity of the language model may depend on the application&lt;br /&gt;
needs. The system currently runs under Solaris 2.5. It is available freely under a research license.&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;br /&gt;
{{SIGGEN Wiki}}&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=User_talk:PabloDuboue&amp;diff=8766</id>
		<title>User talk:PabloDuboue</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=User_talk:PabloDuboue&amp;diff=8766"/>
		<updated>2011-04-04T06:57:38Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: New page: I&amp;#039;m easier to reach by e-mail.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I&#039;m easier to reach by e-mail.&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
	<entry>
		<id>https://www.aclweb.org/aclwiki/index.php?title=User:PabloDuboue&amp;diff=8765</id>
		<title>User:PabloDuboue</title>
		<link rel="alternate" type="text/html" href="https://www.aclweb.org/aclwiki/index.php?title=User:PabloDuboue&amp;diff=8765"/>
		<updated>2011-04-04T06:56:15Z</updated>

		<summary type="html">&lt;p&gt;PabloDuboue: New page: See [http://duboue.net/pablo my personal website for details].&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;See [http://duboue.net/pablo my personal website for details].&lt;/div&gt;</summary>
		<author><name>PabloDuboue</name></author>
	</entry>
</feed>