From 7031757fa01d57c433c39e1218c6d91d4d8ac65c Mon Sep 17 00:00:00 2001 From: Xing Han Lu <21180505+xhluca@users.noreply.github.com> Date: Wed, 28 Feb 2024 00:41:17 -0500 Subject: [PATCH] Update tags (#283) * Update tags * Update a few tags * Update a few mor tags * Update more venues based on venue_full/venue * Add venues page * Improve sorting for venues * update papers without assigned venues --- _includes/display-publications.html | 4 ++- _includes/posts-publication-by-venue.html | 32 +++++++++++++++++++ _layouts/venue.html | 9 ++++++ _pages/venues.md | 9 ++++++ ...6288e07187978b99f7dec4a40d0cd80c07cf212.md | 2 +- ...7c3018f20adf046386d97975a501046df06f42d.md | 2 +- .../2006-01-01-10.1142-9789812774262_0084.md | 2 +- ...80356ea2a4b7758f0e53173fa44357ab2ccb592.md | 2 +- ...874932b6a06171e35363dc9fe1d77936226028e.md | 2 +- ...9ec04f56a6580fa7f358ee9cf3af540d95aa6a4.md | 2 +- ...c1122aaef8d7fbc5714ab78448a01ceb3779f1c.md | 2 +- _posts/papers/2012-01-01-S12-1081.md | 5 +-- ...1-01-10.1016-J.EVOLHUMBEHAV.2014.05.001.md | 2 +- ...442f16cf4e1e7b7914c67b56bf9455d79faeb08.md | 5 +-- .../papers/2015-01-01-10.18653-v1-W15-2403.md | 5 +-- ...10.7551-MITPRESS-9780262028844.003.0007.md | 2 +- ...10.7551-mitpress-9780262028844.003.0005.md | 2 +- ...cc3d39f61d705331ecb4e66bda9b38e424c8f72.md | 5 +-- _posts/papers/2017-01-01-1702.03305.md | 5 +-- ...a0e8e3a495400220a34b3e0a78fe1534c1fbd5b.md | 2 +- ...a2256899552328b09ad3c3f27b4f6dfc67a8a26.md | 4 +-- .../2017-03-08-10.1145-3017680.3028255.md | 4 +-- _posts/papers/2017-06-18-1706.05723.md | 3 +- .../papers/2018-01-01-10.12775-3991-1.085.md | 4 +-- .../2018-01-01-10.31234-osf.io-emq8r.md | 2 +- ...f76a0312dcbed23773e3e42bcf0b5ed534f6f5a.md | 2 +- _posts/papers/2020-11-01-2012.13978.md | 6 ++-- ...269d4721ca2b6b555bee86aad97f562fa5cd9ac.md | 4 +-- _posts/papers/2021-01-01-2109.13238.md | 5 +-- ...66b88e4dc9a6d5896748f9f40f7bbb5e67b0645.md | 3 +- _posts/papers/2021-04-17-2104.08419.md | 1 - _posts/papers/2022-05-25-2206.14145.md | 4 +-- _posts/papers/2022-06-08-2206.04187.md | 3 +- _posts/papers/2023-02-02-2302.00871.md | 2 +- _posts/papers/2023-04-13-2304.06638.md | 4 +-- _posts/papers/2023-05-02-2305.01633.md | 7 ++-- .../2023-05-07-retriever-lm-reasoning.md | 2 +- _posts/papers/2023-05-09-2305.06161.md | 2 +- _posts/papers/2023-09-19-2309.10954.md | 7 ++-- _posts/papers/2024-01-15-2401.07927.md | 2 +- .../out/2015-07-01-10.18653-v1-W15-4003.md | 7 ++-- ...def97eefdd979c9cbb55ed7d0325c8e56613e1e.md | 2 +- .../out/2016-11-01-10.18653-v1-W16-6010.md | 5 +-- ...1c1c711138b1f7deb33a0af6675522c285269a1.md | 2 +- ...7133ef4c4de4d54a57686b8a914b06e4ff4aab5.md | 2 +- ...f9d67bad068a77d165e145368e98bf7bd7cce72.md | 2 +- ...4d5149b31c9d08debcc4883768b3b6b23bb1ad2.md | 2 +- ...442f16cf4e1e7b7914c67b56bf9455d79faeb08.md | 5 +-- ...e210e53e73af5105ed1d6f5ef395485e6f3ac55.md | 2 +- ...9-01-10.1016-J.EVOLHUMBEHAV.2014.05.001.md | 2 +- 50 files changed, 131 insertions(+), 72 deletions(-) create mode 100644 _includes/posts-publication-by-venue.html create mode 100644 _layouts/venue.html create mode 100644 _pages/venues.md diff --git a/_includes/display-publications.html b/_includes/display-publications.html index e100cb73..d2a7a0f3 100644 --- a/_includes/display-publications.html +++ b/_includes/display-publications.html @@ -28,7 +28,9 @@

{% else %}
- {% if post.venue %} + {% if post.venue_full %} + {{ post.venue_full }} + {% elsif post.venue %} {{ post.venue }} {% endif %} ({{ post.date | date: "%Y" }}) diff --git a/_includes/posts-publication-by-venue.html b/_includes/posts-publication-by-venue.html new file mode 100644 index 00000000..8e202f2c --- /dev/null +++ b/_includes/posts-publication-by-venue.html @@ -0,0 +1,32 @@ +{% assign posts = site.categories[include.taxonomy] | where_exp: "item", "item.hidden != true" %} +{% if include.author %} + {% assign posts = posts | where_exp: "post", "post.names contains include.author" %} +{% endif %} + + + +{% assign postsByVenue = posts | group_by_exp: "post", "post.venue"%} +{% assign sortedPostsByVenue = postsByVenue | sort: "size" | reverse %} +{% assign sortedPostsByVenue = sortedPostsByVenue | where_exp: "item", "item.name != ''" %} + + + +{% for venue_group in sortedPostsByVenue %} +
+

{{ venue_group.name }}

+
+ {% for post in venue_group.items %} + {%- include display-publications.html %} + {% endfor %} +
+ {{ site.data.ui-text[site.locale].back_to_top | default: 'Back to Top' }} ↑ +
+{% endfor %} diff --git a/_layouts/venue.html b/_layouts/venue.html new file mode 100644 index 00000000..30a61ce5 --- /dev/null +++ b/_layouts/venue.html @@ -0,0 +1,9 @@ +--- +layout: archive +--- + +{{ content }} + +
+ {% include posts-publication-by-venue.html taxonomy=page.taxonomy %} +
\ No newline at end of file diff --git a/_pages/venues.md b/_pages/venues.md new file mode 100644 index 00000000..56d733c8 --- /dev/null +++ b/_pages/venues.md @@ -0,0 +1,9 @@ +--- +title: Publications by Venue +layout: venue +classes: + - no-sidebar + - wide +permalink: /venues/ +taxonomy: Publications +--- \ No newline at end of file diff --git a/_posts/papers/2002-01-01-86288e07187978b99f7dec4a40d0cd80c07cf212.md b/_posts/papers/2002-01-01-86288e07187978b99f7dec4a40d0cd80c07cf212.md index 0d306878..125c60c2 100644 --- a/_posts/papers/2002-01-01-86288e07187978b99f7dec4a40d0cd80c07cf212.md +++ b/_posts/papers/2002-01-01-86288e07187978b99f7dec4a40d0cd80c07cf212.md @@ -1,7 +1,7 @@ --- title: The NITE Object Model Library for Handling Structured Linguistic Annotation on Multimodal Data Sets -venue: '' +venue: 'NLPXML' names: J. Carletta, J. Kilgour, T. O’Donnell, S. Evert, Holger Voormann link: https://www.semanticscholar.org/paper/86288e07187978b99f7dec4a40d0cd80c07cf212 diff --git a/_posts/papers/2003-01-01-87c3018f20adf046386d97975a501046df06f42d.md b/_posts/papers/2003-01-01-87c3018f20adf046386d97975a501046df06f42d.md index 3bef9537..7942f244 100644 --- a/_posts/papers/2003-01-01-87c3018f20adf046386d97975a501046df06f42d.md +++ b/_posts/papers/2003-01-01-87c3018f20adf046386d97975a501046df06f42d.md @@ -1,6 +1,6 @@ --- title: The NXT Object Model -venue: '' +venue: 'Technical Report' names: S. Evert, J. Carletta, T. O’Donnell, J. Kilgour, Andreas Vögele, Holger Voormann link: https://www.semanticscholar.org/paper/87c3018f20adf046386d97975a501046df06f42d diff --git a/_posts/papers/2006-01-01-10.1142-9789812774262_0084.md b/_posts/papers/2006-01-01-10.1142-9789812774262_0084.md index f4102b20..4418186c 100644 --- a/_posts/papers/2006-01-01-10.1142-9789812774262_0084.md +++ b/_posts/papers/2006-01-01-10.1142-9789812774262_0084.md @@ -1,6 +1,6 @@ --- title: Beyond the argument from design -venue: '' +venue: 'Evolang' names: Willem H. Zuidema, T. O’Donnell, A. Cangelosi, Andrew D. M. Smith, Kenny Smith link: https://doi.org/10.1142/9789812774262_0084 diff --git a/_posts/papers/2006-01-01-780356ea2a4b7758f0e53173fa44357ab2ccb592.md b/_posts/papers/2006-01-01-780356ea2a4b7758f0e53173fa44357ab2ccb592.md index 38c4da54..4c7988d2 100644 --- a/_posts/papers/2006-01-01-780356ea2a4b7758f0e53173fa44357ab2ccb592.md +++ b/_posts/papers/2006-01-01-780356ea2a4b7758f0e53173fa44357ab2ccb592.md @@ -1,6 +1,6 @@ --- title: 'Learning English as a Foreign Language in Korea : Does CALL have a place ?' -venue: '' +venue: 'Asian EFL Journal' names: T. O’Donnell link: https://www.semanticscholar.org/paper/780356ea2a4b7758f0e53173fa44357ab2ccb592 diff --git a/_posts/papers/2009-01-01-e874932b6a06171e35363dc9fe1d77936226028e.md b/_posts/papers/2009-01-01-e874932b6a06171e35363dc9fe1d77936226028e.md index 569f78a2..805cd5f8 100644 --- a/_posts/papers/2009-01-01-e874932b6a06171e35363dc9fe1d77936226028e.md +++ b/_posts/papers/2009-01-01-e874932b6a06171e35363dc9fe1d77936226028e.md @@ -1,6 +1,6 @@ --- title: 'Fragment Grammars: Exploring Computation and Reuse in Language' -venue: '' +venue: 'Technical Report' names: T. O’Donnell, Noah D. Goodman, J. Tenenbaum link: https://www.semanticscholar.org/paper/e874932b6a06171e35363dc9fe1d77936226028e diff --git a/_posts/papers/2010-01-01-19ec04f56a6580fa7f358ee9cf3af540d95aa6a4.md b/_posts/papers/2010-01-01-19ec04f56a6580fa7f358ee9cf3af540d95aa6a4.md index 86cd50da..d81c75e2 100644 --- a/_posts/papers/2010-01-01-19ec04f56a6580fa7f358ee9cf3af540d95aa6a4.md +++ b/_posts/papers/2010-01-01-19ec04f56a6580fa7f358ee9cf3af540d95aa6a4.md @@ -1,6 +1,6 @@ --- title: 'Linking meaning to language: linguistic universals and variation' -venue: '' +venue: 'CogSci' names: Joshua K. Hartshorne, T. O’Donnell, Y. Sudo, Miki Uruwashi, J. Snedeker link: https://www.semanticscholar.org/paper/19ec04f56a6580fa7f358ee9cf3af540d95aa6a4 diff --git a/_posts/papers/2011-01-01-bc1122aaef8d7fbc5714ab78448a01ceb3779f1c.md b/_posts/papers/2011-01-01-bc1122aaef8d7fbc5714ab78448a01ceb3779f1c.md index 8cbef3f6..e21a289b 100644 --- a/_posts/papers/2011-01-01-bc1122aaef8d7fbc5714ab78448a01ceb3779f1c.md +++ b/_posts/papers/2011-01-01-bc1122aaef8d7fbc5714ab78448a01ceb3779f1c.md @@ -1,7 +1,7 @@ --- title: 'Frozen Chunks and Generalized Representations: The Case of the English Dative Alternation' -venue: '' +venue: 'BUCLD' names: E. Conwell, T. O’Donnell, J. Snedeker link: https://www.semanticscholar.org/paper/bc1122aaef8d7fbc5714ab78448a01ceb3779f1c diff --git a/_posts/papers/2012-01-01-S12-1081.md b/_posts/papers/2012-01-01-S12-1081.md index 105bb8e4..fa616d6b 100644 --- a/_posts/papers/2012-01-01-S12-1081.md +++ b/_posts/papers/2012-01-01-S12-1081.md @@ -1,7 +1,8 @@ --- title: 'DSS: Text Similarity Using Lexical Alignments of Form, Distributional Semantics and Grammatical Relations' -venue: SemEval @ NAACL +venue_full: SemEval @ NAACL +venue: NAACL Workshop names: Diana McCarthy, Spandana Gella, Siva Reddy tags: - NAACL @@ -13,7 +14,7 @@ categories: Publications *{{ page.names }}* -**{{ page.venue }}** +**{{ page.venue_full }}** {% include display-publication-links.html pub=page %} diff --git a/_posts/papers/2014-01-01-10.1016-J.EVOLHUMBEHAV.2014.05.001.md b/_posts/papers/2014-01-01-10.1016-J.EVOLHUMBEHAV.2014.05.001.md index e180f2ba..7881b138 100644 --- a/_posts/papers/2014-01-01-10.1016-J.EVOLHUMBEHAV.2014.05.001.md +++ b/_posts/papers/2014-01-01-10.1016-J.EVOLHUMBEHAV.2014.05.001.md @@ -1,6 +1,6 @@ --- title: Social dialect and men's voice pitch influence women's mate preferences -venue: '' +venue: 'Evolution and Human Behavior' names: J. O'Connor, Paul J. Fraccaro, K. Pisanski, C. C. Tigue, T. O’Donnell, D. Feinberg link: https://doi.org/10.1016/J.EVOLHUMBEHAV.2014.05.001 diff --git a/_posts/papers/2014-01-01-1442f16cf4e1e7b7914c67b56bf9455d79faeb08.md b/_posts/papers/2014-01-01-1442f16cf4e1e7b7914c67b56bf9455d79faeb08.md index 413a9d31..7cb87c0d 100644 --- a/_posts/papers/2014-01-01-1442f16cf4e1e7b7914c67b56bf9455d79faeb08.md +++ b/_posts/papers/2014-01-01-1442f16cf4e1e7b7914c67b56bf9455d79faeb08.md @@ -1,7 +1,8 @@ --- title: UvA-DARE (Digital Academic Repository) A Usage-Based Model of Early Grammatical Development A Usage-Based Model of Early Grammatical Development -venue: '' +venue: 'ACL Workshop' +venue_full: CMCL @ ACL names: V. Demberg, T. O’Donnell link: https://www.semanticscholar.org/paper/1442f16cf4e1e7b7914c67b56bf9455d79faeb08 @@ -12,7 +13,7 @@ categories: Publications *{{ page.names }}* -**{{ page.venue }}** +**{{ page.venue_full }}** {% include display-publication-links.html pub=page %} diff --git a/_posts/papers/2015-01-01-10.18653-v1-W15-2403.md b/_posts/papers/2015-01-01-10.18653-v1-W15-2403.md index 55884eae..d9568898 100644 --- a/_posts/papers/2015-01-01-10.18653-v1-W15-2403.md +++ b/_posts/papers/2015-01-01-10.18653-v1-W15-2403.md @@ -1,6 +1,7 @@ --- title: Evaluating Models of Computation and Storage in Human Sentence Processing -venue: CogACLL @ ACL +venue_full: CogACLL @ ACL +venue: ACL Workshop names: Thang Luong, T. O’Donnell, Noah D. Goodman tags: - ACL @@ -12,7 +13,7 @@ categories: Publications *{{ page.names }}* -**{{ page.venue }}** +**{{ page.venue_full }}** {% include display-publication-links.html pub=page %} diff --git a/_posts/papers/2015-01-01-10.7551-MITPRESS-9780262028844.003.0007.md b/_posts/papers/2015-01-01-10.7551-MITPRESS-9780262028844.003.0007.md index 1964ad4c..6230423a 100644 --- a/_posts/papers/2015-01-01-10.7551-MITPRESS-9780262028844.003.0007.md +++ b/_posts/papers/2015-01-01-10.7551-MITPRESS-9780262028844.003.0007.md @@ -1,6 +1,6 @@ --- title: 'English Derivational Morphology: Simulations' -venue: '' +venue: 'MIT Press' names: T. O’Donnell link: https://doi.org/10.7551/MITPRESS/9780262028844.003.0007 diff --git a/_posts/papers/2015-01-01-10.7551-mitpress-9780262028844.003.0005.md b/_posts/papers/2015-01-01-10.7551-mitpress-9780262028844.003.0005.md index d4f476ad..ec4ffb53 100644 --- a/_posts/papers/2015-01-01-10.7551-mitpress-9780262028844.003.0005.md +++ b/_posts/papers/2015-01-01-10.7551-mitpress-9780262028844.003.0005.md @@ -1,6 +1,6 @@ --- title: 'The English Past Tense: Simulations' -venue: '' +venue: 'MIT Press' names: T. O’Donnell link: https://doi.org/10.7551/mitpress/9780262028844.003.0005 diff --git a/_posts/papers/2015-01-01-8cc3d39f61d705331ecb4e66bda9b38e424c8f72.md b/_posts/papers/2015-01-01-8cc3d39f61d705331ecb4e66bda9b38e424c8f72.md index 2138d688..c549ceb7 100644 --- a/_posts/papers/2015-01-01-8cc3d39f61d705331ecb4e66bda9b38e424c8f72.md +++ b/_posts/papers/2015-01-01-8cc3d39f61d705331ecb4e66bda9b38e424c8f72.md @@ -1,7 +1,8 @@ --- title: Proceedings of the 6th Workshop on Cognitive Modeling and Computational Linguistics, CMCL@NAACL-HLT 2015, Denver, CO, USA, June 4, 2015 -venue: CMCL @ NAACL +venue_full: CMCL @ NAACL +venue: NAACL Workshop names: T. O’Donnell, Marten van Schijndel tags: - NAACL @@ -13,7 +14,7 @@ categories: Publications *{{ page.names }}* -**{{ page.venue }}** +**{{ page.venue_full }}** {% include display-publication-links.html pub=page %} diff --git a/_posts/papers/2017-01-01-1702.03305.md b/_posts/papers/2017-01-01-1702.03305.md index 7fa7a3aa..e24b3e10 100644 --- a/_posts/papers/2017-01-01-1702.03305.md +++ b/_posts/papers/2017-01-01-1702.03305.md @@ -1,6 +1,7 @@ --- title: Universal Dependencies to Logical Form with Negation Scope -venue: SemBEaR @ NAACL +venue_full: SemBEaR @ NAACL +venue: NAACL Workshop names: Federico Fancellu, Siva Reddy, Adam Lopez, B. Webber tags: - NAACL @@ -12,7 +13,7 @@ categories: Publications *{{ page.names }}* -**{{ page.venue }}** +**{{ page.venue_full }}** {% include display-publication-links.html pub=page %} diff --git a/_posts/papers/2017-01-01-8a0e8e3a495400220a34b3e0a78fe1534c1fbd5b.md b/_posts/papers/2017-01-01-8a0e8e3a495400220a34b3e0a78fe1534c1fbd5b.md index 31b7e18d..baee4572 100644 --- a/_posts/papers/2017-01-01-8a0e8e3a495400220a34b3e0a78fe1534c1fbd5b.md +++ b/_posts/papers/2017-01-01-8a0e8e3a495400220a34b3e0a78fe1534c1fbd5b.md @@ -1,6 +1,6 @@ --- title: Formalizing accessibility using linguistic productivity -venue: '' +venue: 'MIT Press' names: Kyle Mahowald, J. Tenenbaum, T. O’Donnell link: https://www.semanticscholar.org/paper/8a0e8e3a495400220a34b3e0a78fe1534c1fbd5b diff --git a/_posts/papers/2017-01-01-aa2256899552328b09ad3c3f27b4f6dfc67a8a26.md b/_posts/papers/2017-01-01-aa2256899552328b09ad3c3f27b4f6dfc67a8a26.md index 216ba1f0..066942e4 100644 --- a/_posts/papers/2017-01-01-aa2256899552328b09ad3c3f27b4f6dfc67a8a26.md +++ b/_posts/papers/2017-01-01-aa2256899552328b09ad3c3f27b4f6dfc67a8a26.md @@ -1,11 +1,11 @@ --- title: 'Grammar Induction for Minimalist Grammars using Variational Bayesian Inference : A Technical Report' -venue: '' +venue: 'arXiv' names: Eva Portelance, Amelia Bruno, Daniel Harasim, Leon Bergen, T. O’Donnell link: https://www.semanticscholar.org/paper/aa2256899552328b09ad3c3f27b4f6dfc67a8a26 -author: Timothy J. O'Donnell +author: Eva Portelance categories: Publications --- diff --git a/_posts/papers/2017-03-08-10.1145-3017680.3028255.md b/_posts/papers/2017-03-08-10.1145-3017680.3028255.md index 00786412..09db54c1 100644 --- a/_posts/papers/2017-03-08-10.1145-3017680.3028255.md +++ b/_posts/papers/2017-03-08-10.1145-3017680.3028255.md @@ -1,10 +1,10 @@ --- title: Nifty Assignments -venue: Technical Symposium on Computer Science Education +venue: ACM SIGCSE Technical Symposium names: Nick Parlante, Julie Zelenski, Dave Feinberg, Kunal Mishra, Josh Hug, Kevin Wayne, Michael Guerzhoy, J. Cheung, François Pitt tags: -- Technical Symposium on Computer Science Education +- ACM link: https://doi.org/10.1145/3017680.3028255 author: Jackie Cheung categories: Publications diff --git a/_posts/papers/2017-06-18-1706.05723.md b/_posts/papers/2017-06-18-1706.05723.md index 5024cdd6..32211b46 100644 --- a/_posts/papers/2017-06-18-1706.05723.md +++ b/_posts/papers/2017-06-18-1706.05723.md @@ -1,10 +1,9 @@ --- title: Detecting Large Concept Extensions for Conceptual Analysis venue: MLDM - Recognition names: L. Chartrand, J. Cheung, M. Bouguessa tags: -- MLDM Recognition +- MLDM link: https://arxiv.org/abs/1706.05723 author: Jackie Cheung categories: Publications diff --git a/_posts/papers/2018-01-01-10.12775-3991-1.085.md b/_posts/papers/2018-01-01-10.12775-3991-1.085.md index 38a4b2d5..33fadc1b 100644 --- a/_posts/papers/2018-01-01-10.12775-3991-1.085.md +++ b/_posts/papers/2018-01-01-10.12775-3991-1.085.md @@ -1,8 +1,8 @@ --- title: 'The evolutionary causes of irregularity: Evidence for an irregularization bias in morphological learning' -venue: '' -names: T. O’Donnell, Kenny Smith +venue: 'Evolang' +names: T. O'Donnell, Kenny Smith link: https://doi.org/10.12775/3991-1.085 author: Timothy J. O'Donnell diff --git a/_posts/papers/2018-01-01-10.31234-osf.io-emq8r.md b/_posts/papers/2018-01-01-10.31234-osf.io-emq8r.md index b35e05ff..db8d9ba2 100644 --- a/_posts/papers/2018-01-01-10.31234-osf.io-emq8r.md +++ b/_posts/papers/2018-01-01-10.31234-osf.io-emq8r.md @@ -1,6 +1,6 @@ --- title: Universality and diversity in human song -venue: '' +venue: 'Science' names: Samuel A. Mehr, Manvir Singh, D. Knox, Daniel M. Ketter, Daniel Pickens-Jones, S. Atwood, Christophe Lucas, Nori Jacoby, Alena Egner, Erin J. Hopkins, Rhea M. Howard, Joshua K. Hartshorne, M. Jennings, Jan Simson, C. Bainbridge, S. Pinker, diff --git a/_posts/papers/2019-01-01-8f76a0312dcbed23773e3e42bcf0b5ed534f6f5a.md b/_posts/papers/2019-01-01-8f76a0312dcbed23773e3e42bcf0b5ed534f6f5a.md index 2017ab3f..f0b12bc9 100644 --- a/_posts/papers/2019-01-01-8f76a0312dcbed23773e3e42bcf0b5ed534f6f5a.md +++ b/_posts/papers/2019-01-01-8f76a0312dcbed23773e3e42bcf0b5ed534f6f5a.md @@ -1,6 +1,6 @@ --- title: Learning Multi-Task Communication with Message Passing -venue: '' +venue: 'AAAI' names: Peng Liu, Jie Fu, Yue Dong, Xipeng Qiu, J. Cheung link: https://www.semanticscholar.org/paper/8f76a0312dcbed23773e3e42bcf0b5ed534f6f5a diff --git a/_posts/papers/2020-11-01-2012.13978.md b/_posts/papers/2020-11-01-2012.13978.md index 0f11fb65..b1b710ca 100644 --- a/_posts/papers/2020-11-01-2012.13978.md +++ b/_posts/papers/2020-11-01-2012.13978.md @@ -1,7 +1,8 @@ --- title: 'MeDAL: Medical Abbreviation Disambiguation Dataset for Natural Language Understanding Pretraining' -venue: EMNLP ClinicalNLP +venue_full: ClinicalNLP @ EMNLP +venue: EMNLP Workshop names: Zhi Wen, Xing Han Lu, Siva Reddy tags: - EMNLP @@ -10,14 +11,13 @@ author: Xing Han Lu categories: Publications code: https://github.com/BruceWen120/medal thumbnail: /assets/images/papers/2012.13978.png - --- *{{ page.names }}* -**{{ page.venue }}** +**{{ page.venue_full }}** {% include display-publication-links.html pub=page %} diff --git a/_posts/papers/2020-11-10-7269d4721ca2b6b555bee86aad97f562fa5cd9ac.md b/_posts/papers/2020-11-10-7269d4721ca2b6b555bee86aad97f562fa5cd9ac.md index 726bc662..1b952792 100644 --- a/_posts/papers/2020-11-10-7269d4721ca2b6b555bee86aad97f562fa5cd9ac.md +++ b/_posts/papers/2020-11-10-7269d4721ca2b6b555bee86aad97f562fa5cd9ac.md @@ -1,6 +1,6 @@ --- -title: On Posterior Collapse and Encoder Feature Dispersion in Sequence VAEs. -venue: '' +title: On Posterior Collapse and Encoder Feature Dispersion in Sequence VAEs +venue: 'arXiv' names: Teng Long, Yanshuai Cao, J. Cheung link: https://www.semanticscholar.org/paper/7269d4721ca2b6b555bee86aad97f562fa5cd9ac diff --git a/_posts/papers/2021-01-01-2109.13238.md b/_posts/papers/2021-01-01-2109.13238.md index 3e76e7f0..cac1c4a0 100644 --- a/_posts/papers/2021-01-01-2109.13238.md +++ b/_posts/papers/2021-01-01-2109.13238.md @@ -1,6 +1,7 @@ --- title: Visually Grounded Reasoning across Languages and Cultures -venue: EMNLP (Best Paper Award) +venue_full: EMNLP (Best Paper Award) +venue: EMNLP names: Fangyu Liu, Emanuele Bugliarello, E. Ponti, Siva Reddy, N. Collier, Desmond Elliott tags: @@ -13,7 +14,7 @@ categories: Publications *{{ page.names }}* -**{{ page.venue }}** +**{{ page.venue_full }}** {% include display-publication-links.html pub=page %} diff --git a/_posts/papers/2021-01-01-e66b88e4dc9a6d5896748f9f40f7bbb5e67b0645.md b/_posts/papers/2021-01-01-e66b88e4dc9a6d5896748f9f40f7bbb5e67b0645.md index 27877ae8..416bde29 100644 --- a/_posts/papers/2021-01-01-e66b88e4dc9a6d5896748f9f40f7bbb5e67b0645.md +++ b/_posts/papers/2021-01-01-e66b88e4dc9a6d5896748f9f40f7bbb5e67b0645.md @@ -1,8 +1,7 @@ --- title: Introduction to the special issue on simplicity in grammar learning -venue: '' +venue: 'Journal of Language Modelling' names: Roni Katzir, T. O’Donnell, E. Rasin - link: https://www.semanticscholar.org/paper/e66b88e4dc9a6d5896748f9f40f7bbb5e67b0645 author: Timothy J. O'Donnell categories: Publications diff --git a/_posts/papers/2021-04-17-2104.08419.md b/_posts/papers/2021-04-17-2104.08419.md index e0b7b55c..06f58f56 100644 --- a/_posts/papers/2021-04-17-2104.08419.md +++ b/_posts/papers/2021-04-17-2104.08419.md @@ -2,7 +2,6 @@ title: 'TIE: A Framework for Embedding-based Incremental Temporal Knowledge Graph Completion' venue: ACM SIGIR - Retrieval names: Jiapeng Wu, Yishi Xu, Yingxue Zhang, Chen Ma, M. Coates, J. Cheung tags: - ACM diff --git a/_posts/papers/2022-05-25-2206.14145.md b/_posts/papers/2022-05-25-2206.14145.md index 432438e8..adf5eb4f 100644 --- a/_posts/papers/2022-05-25-2206.14145.md +++ b/_posts/papers/2022-05-25-2206.14145.md @@ -1,9 +1,9 @@ --- title: Question Personalization in an Intelligent Tutoring System -venue: International Conference on Artificial Intelligence in Education +venue: AIED names: Sabina Elkins, Robert Belfer, E. Kochmar, Iulian Serban, J. Cheung tags: -- International Conference on Artificial Intelligence in Education +- AIED link: https://arxiv.org/abs/2206.14145 author: Sabina Elkins categories: Publications diff --git a/_posts/papers/2022-06-08-2206.04187.md b/_posts/papers/2022-06-08-2206.04187.md index dc8f7c9e..9612b3e9 100644 --- a/_posts/papers/2022-06-08-2206.04187.md +++ b/_posts/papers/2022-06-08-2206.04187.md @@ -1,10 +1,11 @@ --- title: Few-shot Question Generation for Personalized Feedback in Intelligent Tutoring Systems -venue: PAIS@ECAI +venue: PAIS names: Devang Kulshreshtha, Muhammad Shayan, Robert Belfer, Siva Reddy, Iulian Serban, E. Kochmar tags: +- PAIS - ECAI link: https://arxiv.org/abs/2206.04187 author: Devang Kulshreshtha diff --git a/_posts/papers/2023-02-02-2302.00871.md b/_posts/papers/2023-02-02-2302.00871.md index c2037482..6dafbb5d 100644 --- a/_posts/papers/2023-02-02-2302.00871.md +++ b/_posts/papers/2023-02-02-2302.00871.md @@ -4,7 +4,7 @@ venue: EMNLP Findings names: Nicholas Meade, Spandana Gella, Devamanyu Hazarika, Prakhar Gupta, Di Jin, Siva Reddy, Yang Liu, Dilek Z. Hakkani-Tür tags: -- EMNLP Findings +- EMNLP link: https://arxiv.org/abs/2302.00871 author: Nicholas Meade categories: Publications diff --git a/_posts/papers/2023-04-13-2304.06638.md b/_posts/papers/2023-04-13-2304.06638.md index 8a33b020..550d178f 100644 --- a/_posts/papers/2023-04-13-2304.06638.md +++ b/_posts/papers/2023-04-13-2304.06638.md @@ -1,9 +1,9 @@ --- title: How Useful are Educational Questions Generated by Large Language Models? -venue: International Conference on Artificial Intelligence in Education +venue: AIED names: Sabina Elkins, E. Kochmar, J. Cheung, Iulian Serban tags: -- International Conference on Artificial Intelligence in Education +- AIED link: https://arxiv.org/abs/2304.06638 author: Sabina Elkins categories: Publications diff --git a/_posts/papers/2023-05-02-2305.01633.md b/_posts/papers/2023-05-02-2305.01633.md index 119bc82b..48d89dc9 100644 --- a/_posts/papers/2023-05-02-2305.01633.md +++ b/_posts/papers/2023-05-02-2305.01633.md @@ -1,7 +1,8 @@ --- title: 'Missing Information, Unresponsive Authors, Experimental Flaws: The Impossibility of Assessing the Reproducibility of Previous Human Evaluations in NLP' -venue: ACL Workshop on Insights from Negative Results in NLP +venue_full: Insights from Negative Results in NLP @ EACL +venue: EACL Workshop names: Anya Belz, Craig Thomson, E. Reiter, Gavin Abercrombie, J. Alonso-Moral, Mohammad Arvan, J. Cheung, Mark Cieliebak, Elizabeth Clark, K. V. Deemter, Tanvi Dinkar, Ondrej Dusek, Steffen Eger, Qixiang Fang, Albert Gatt, Dimitra Gkatzia, Javier Gonz'alez-Corbelle, @@ -10,7 +11,7 @@ names: Anya Belz, Craig Thomson, E. Reiter, Gavin Abercrombie, J. Alonso-Moral, M. Nissim, Natalie Parde, Ondvrej Pl'atek, Verena Rieser, Pablo Romero, Joel Tetreault, Antonio Toral, Xiao-Yi Wan, L. Wanner, Lewis J. Watson, Diyi Yang tags: -- ACL +- EACL link: https://arxiv.org/abs/2305.01633 author: Jackie Cheung categories: Publications @@ -19,7 +20,7 @@ categories: Publications *{{ page.names }}* -**{{ page.venue }}** +**{{ page.venue_full }}** {% include display-publication-links.html pub=page %} diff --git a/_posts/papers/2023-05-07-retriever-lm-reasoning.md b/_posts/papers/2023-05-07-retriever-lm-reasoning.md index c0a2c073..6695ee4f 100644 --- a/_posts/papers/2023-05-07-retriever-lm-reasoning.md +++ b/_posts/papers/2023-05-07-retriever-lm-reasoning.md @@ -6,7 +6,7 @@ names: Parishad BehnamGhader, Santiago Miret, Siva Reddy venue: EMNLP Findings link: https://arxiv.org/abs/2212.09146 tags: -- EMNLP Findings +- EMNLP code: https://github.com/McGill-NLP/retriever-lm-reasoning thumbnail: /assets/images/papers/retriever-lm-reasoning-2.jpg categories: Publications diff --git a/_posts/papers/2023-05-09-2305.06161.md b/_posts/papers/2023-05-09-2305.06161.md index 40a3a356..2554d48f 100644 --- a/_posts/papers/2023-05-09-2305.06161.md +++ b/_posts/papers/2023-05-09-2305.06161.md @@ -1,6 +1,6 @@ --- title: 'StarCoder: may the source be with you!' -venue: '' +venue: 'arXiv' names: Raymond Li, Loubna Ben Allal, Yangtian Zi, Niklas Muennighoff, Denis Kocetkov, Chenghao Mou, Marc Marone, Christopher Akiki, Jia Li, Jenny Chim, Qian Liu, Evgenii Zheltonozhskii, Terry Yue Zhuo, Thomas Wang, Olivier Dehaene, Mishig Davaadorj, diff --git a/_posts/papers/2023-09-19-2309.10954.md b/_posts/papers/2023-09-19-2309.10954.md index bc3133c2..897490c6 100644 --- a/_posts/papers/2023-09-19-2309.10954.md +++ b/_posts/papers/2023-09-19-2309.10954.md @@ -1,9 +1,10 @@ --- title: In-Context Learning for Text Classification with Many Labels -venue: GenBench workshop @ EMNLP +venue_full: GenBench @ EMNLP +venue: EMNLP Workshop names: Aristides Milios, Siva Reddy, Dzmitry Bahdanau tags: -- arXiv +- EMNLP link: https://arxiv.org/abs/2309.10954 author: Aristides Milios categories: Publications @@ -12,7 +13,7 @@ categories: Publications *{{ page.names }}* -**{{ page.venue }}** +**{{ page.venue_full }}** {% include display-publication-links.html pub=page %} diff --git a/_posts/papers/2024-01-15-2401.07927.md b/_posts/papers/2024-01-15-2401.07927.md index b3a21343..7e52b67c 100644 --- a/_posts/papers/2024-01-15-2401.07927.md +++ b/_posts/papers/2024-01-15-2401.07927.md @@ -1,6 +1,6 @@ --- title: Are self-explanations from Large Language Models faithful? -venue: '' +venue: 'arXiv' names: Andreas Madsen, Sarath Chandar, Siva Reddy link: https://arxiv.org/abs/2401.07927 diff --git a/tests/data/add_publications_by_author/jackie/out/2015-07-01-10.18653-v1-W15-4003.md b/tests/data/add_publications_by_author/jackie/out/2015-07-01-10.18653-v1-W15-4003.md index 9f9af4c0..f1e7f520 100644 --- a/tests/data/add_publications_by_author/jackie/out/2015-07-01-10.18653-v1-W15-4003.md +++ b/tests/data/add_publications_by_author/jackie/out/2015-07-01-10.18653-v1-W15-4003.md @@ -1,18 +1,17 @@ --- title: 'Concept Extensions as the Basis for Vector-Space Semantics: Combining Distributional and Ontological Information about Entities' -venue: '' +venue: 'ACL Workshop' names: J. C. Cheung - +venue_full:Workshop on Continuous Vector Space Models and their Compositionality @ ACL' link: https://doi.org/10.18653/v1/W15-4003 author: Jackie Cheung categories: Publications - --- *{{ page.names }}* -**{{ page.venue }}** +**{{ page.venue_full }}** {% include display-publication-links.html pub=page %} diff --git a/tests/data/add_publications_by_author/jackie/out/2016-02-18-fdef97eefdd979c9cbb55ed7d0325c8e56613e1e.md b/tests/data/add_publications_by_author/jackie/out/2016-02-18-fdef97eefdd979c9cbb55ed7d0325c8e56613e1e.md index b65fc4eb..5b7145f6 100644 --- a/tests/data/add_publications_by_author/jackie/out/2016-02-18-fdef97eefdd979c9cbb55ed7d0325c8e56613e1e.md +++ b/tests/data/add_publications_by_author/jackie/out/2016-02-18-fdef97eefdd979c9cbb55ed7d0325c8e56613e1e.md @@ -1,6 +1,6 @@ --- title: Initializing Entity Representations in Relational Models -venue: '' +venue: 'ICLR Workshop' names: Teng Long, Ryan Lowe, J. C. Cheung, Doina Precup link: https://www.semanticscholar.org/paper/fdef97eefdd979c9cbb55ed7d0325c8e56613e1e diff --git a/tests/data/add_publications_by_author/jackie/out/2016-11-01-10.18653-v1-W16-6010.md b/tests/data/add_publications_by_author/jackie/out/2016-11-01-10.18653-v1-W16-6010.md index 9270a48b..813bf3d1 100644 --- a/tests/data/add_publications_by_author/jackie/out/2016-11-01-10.18653-v1-W16-6010.md +++ b/tests/data/add_publications_by_author/jackie/out/2016-11-01-10.18653-v1-W16-6010.md @@ -1,7 +1,8 @@ --- title: Stylistic Transfer in Natural Language Generation Systems Using Recurrent Neural Networks -venue: '' +venue: ACL Workshop +venue_full: 'Uphill Battles in Language Processing @ ACL' names: Jad Kabbara, J. C. Cheung link: https://doi.org/10.18653/v1/W16-6010 @@ -12,7 +13,7 @@ categories: Publications *{{ page.names }}* -**{{ page.venue }}** +**{{ page.venue_full }}** {% include display-publication-links.html pub=page %} diff --git a/tests/data/add_publications_by_author/siva/out/2017-01-01-61c1c711138b1f7deb33a0af6675522c285269a1.md b/tests/data/add_publications_by_author/siva/out/2017-01-01-61c1c711138b1f7deb33a0af6675522c285269a1.md index a2bdf4d8..5a72b65e 100644 --- a/tests/data/add_publications_by_author/siva/out/2017-01-01-61c1c711138b1f7deb33a0af6675522c285269a1.md +++ b/tests/data/add_publications_by_author/siva/out/2017-01-01-61c1c711138b1f7deb33a0af6675522c285269a1.md @@ -1,6 +1,6 @@ --- title: Explorer Predicting Target Language CCG Supertags Improves Neural Machine Translation -venue: '' +venue: 'WMT' names: Maria Nadejde, Siva Reddy, Rico Sennrich, Tomasz Dwojak, Marcin Junczys-Dowmunt, Philipp Koehn, Alexandra Birch diff --git a/tests/data/add_publications_by_author/siva/out/2017-03-13-57133ef4c4de4d54a57686b8a914b06e4ff4aab5.md b/tests/data/add_publications_by_author/siva/out/2017-03-13-57133ef4c4de4d54a57686b8a914b06e4ff4aab5.md index 0cf59552..57b2fd7b 100644 --- a/tests/data/add_publications_by_author/siva/out/2017-03-13-57133ef4c4de4d54a57686b8a914b06e4ff4aab5.md +++ b/tests/data/add_publications_by_author/siva/out/2017-03-13-57133ef4c4de4d54a57686b8a914b06e4ff4aab5.md @@ -1,6 +1,6 @@ --- title: Universal Dependencies 2.1 -venue: '' +venue: 'Technical Report' names: Joakim Nivre, Zeljko Agic, Lars Ahrenberg, Lene Antonsen, M. J. Aranzabe, Masayuki Asahara, Luma Ateyah, Mohammed Attia, Aitziber Atutxa, Liesbeth Augustinus, E. Badmaeva, Miguel Ballesteros, Esha Banerjee, S. Bank, V. Mititelu, John Bauer, K. Bengoetxea, diff --git a/tests/data/add_publications_by_author/siva/out/2017-05-18-af9d67bad068a77d165e145368e98bf7bd7cce72.md b/tests/data/add_publications_by_author/siva/out/2017-05-18-af9d67bad068a77d165e145368e98bf7bd7cce72.md index 9e9a1bc1..c15e845a 100644 --- a/tests/data/add_publications_by_author/siva/out/2017-05-18-af9d67bad068a77d165e145368e98bf7bd7cce72.md +++ b/tests/data/add_publications_by_author/siva/out/2017-05-18-af9d67bad068a77d165e145368e98bf7bd7cce72.md @@ -1,6 +1,6 @@ --- title: Universal Dependencies 2.0 – CoNLL 2017 Shared Task Development and Test Data -venue: '' +venue: 'Technical Report' names: Joakim Nivre, Zeljko Agic, Lars Ahrenberg, Lene Antonsen, M. J. Aranzabe, Masayuki Asahara, Luma Ateyah, Mohammed Attia, Aitziber Atutxa, E. Badmaeva, Miguel Ballesteros, Esha Banerjee, S. Bank, John Bauer, K. Bengoetxea, Riyaz Ahmad Bhat, Eckhard Bick, diff --git a/tests/data/add_publications_by_author/timothy/out/2013-04-12-14d5149b31c9d08debcc4883768b3b6b23bb1ad2.md b/tests/data/add_publications_by_author/timothy/out/2013-04-12-14d5149b31c9d08debcc4883768b3b6b23bb1ad2.md index 189ba0fe..20936083 100644 --- a/tests/data/add_publications_by_author/timothy/out/2013-04-12-14d5149b31c9d08debcc4883768b3b6b23bb1ad2.md +++ b/tests/data/add_publications_by_author/timothy/out/2013-04-12-14d5149b31c9d08debcc4883768b3b6b23bb1ad2.md @@ -1,6 +1,6 @@ --- title: Compositional Policy Priors -venue: '' +venue: 'Technical Report' names: D. Wingate, Carlos Diuk, T. O’Donnell, J. Tenenbaum, S. Gershman link: https://www.semanticscholar.org/paper/14d5149b31c9d08debcc4883768b3b6b23bb1ad2 diff --git a/tests/data/add_publications_by_author/timothy/out/2014-01-01-1442f16cf4e1e7b7914c67b56bf9455d79faeb08.md b/tests/data/add_publications_by_author/timothy/out/2014-01-01-1442f16cf4e1e7b7914c67b56bf9455d79faeb08.md index 413a9d31..b04d6796 100644 --- a/tests/data/add_publications_by_author/timothy/out/2014-01-01-1442f16cf4e1e7b7914c67b56bf9455d79faeb08.md +++ b/tests/data/add_publications_by_author/timothy/out/2014-01-01-1442f16cf4e1e7b7914c67b56bf9455d79faeb08.md @@ -1,7 +1,8 @@ --- title: UvA-DARE (Digital Academic Repository) A Usage-Based Model of Early Grammatical Development A Usage-Based Model of Early Grammatical Development -venue: '' +venue: 'ACL Workshop' +venue_full: 'CMCL @ ACL' names: V. Demberg, T. O’Donnell link: https://www.semanticscholar.org/paper/1442f16cf4e1e7b7914c67b56bf9455d79faeb08 @@ -12,7 +13,7 @@ categories: Publications *{{ page.names }}* -**{{ page.venue }}** +**{{ page.venue_full }}** {% include display-publication-links.html pub=page %} diff --git a/tests/data/add_publications_by_author/timothy/out/2014-01-01-ee210e53e73af5105ed1d6f5ef395485e6f3ac55.md b/tests/data/add_publications_by_author/timothy/out/2014-01-01-ee210e53e73af5105ed1d6f5ef395485e6f3ac55.md index c82d0fb8..d65af410 100644 --- a/tests/data/add_publications_by_author/timothy/out/2014-01-01-ee210e53e73af5105ed1d6f5ef395485e6f3ac55.md +++ b/tests/data/add_publications_by_author/timothy/out/2014-01-01-ee210e53e73af5105ed1d6f5ef395485e6f3ac55.md @@ -1,6 +1,6 @@ --- title: Quantifying availability through linguistic productivity -venue: '' +venue: 'Applied Linguistics' names: Kyle Mahowald, J. Tenenbaum, T. O’Donnell link: https://www.semanticscholar.org/paper/ee210e53e73af5105ed1d6f5ef395485e6f3ac55 diff --git a/tests/data/add_publications_by_author/timothy/out/2014-09-01-10.1016-J.EVOLHUMBEHAV.2014.05.001.md b/tests/data/add_publications_by_author/timothy/out/2014-09-01-10.1016-J.EVOLHUMBEHAV.2014.05.001.md index e180f2ba..7881b138 100644 --- a/tests/data/add_publications_by_author/timothy/out/2014-09-01-10.1016-J.EVOLHUMBEHAV.2014.05.001.md +++ b/tests/data/add_publications_by_author/timothy/out/2014-09-01-10.1016-J.EVOLHUMBEHAV.2014.05.001.md @@ -1,6 +1,6 @@ --- title: Social dialect and men's voice pitch influence women's mate preferences -venue: '' +venue: 'Evolution and Human Behavior' names: J. O'Connor, Paul J. Fraccaro, K. Pisanski, C. C. Tigue, T. O’Donnell, D. Feinberg link: https://doi.org/10.1016/J.EVOLHUMBEHAV.2014.05.001