Published November 10, 2022
| Version v1
Dataset
Open
The English Headline Treebank corpus
Description
This repository contains the evaluation sets used in
A Benton, T Shi, O İrsoy, and I Malioutov."Weakly Supervised Headline Dependency Parsing". Findings of EMNLP. 2022.
This dataset contains parse annotations for English news headlines and a script to produce conllu files joined with original headline text.
Parse annotations are joined to the corresponding text by running:
LDC_NYT_DIR="/PATH/TO/UNTARRED/LDC2008T19/" # path to untarred LDC2008T19
python build_eht.py --nyt_dir ${LDC_NYT_DIR} --num_proc 4
This will download the Google sentence compression (GSC) dataset, and build conllu files for GSC examples. If you have the New York Times Annotated Corpus (LDC2008T19) untarred locally, this will also join annotations to the NYT examples (location passed via --nyt_dir).
Increase the argument to --num_procs to process more shards from the NYT corpus in parallel and reduce build time. The above was tested with python 3.9.7.
- The EHT evaluation sets, with gold-annotated POS tags and dependency relations, are built as
EHT/gsc.test.conlluandEHT/nyt.test.conllu - Silver, projected, trees which we used to train and validate out models are built under
GSC_projected. These are not gold parse trees (projected predictions from the article lead sentence), and are shared purely for reproducibility sake.
Files
eht_release.zip
Files
(3.6 MB)
| Name | Size | Download all |
|---|---|---|
|
md5:5fe4eb528f92f77fe740639155683a32
|
3.6 MB | Preview Download |
Additional details
Related works
- References
- Dataset: 10.5281/zenodo.5495668 (DOI)
References
- Weakly Supervised Headline Dependency Parsing. Adrian Benton, Tianze Shi,Ozan Irsoy,Igor Malioutov. Findings of EMNLP 2022.