--- language: - en license: cc-by-4.0 task_categories: - text-classification task_ids: - multi-class-classification pretty_name: Complex Word Identification size_categories: - 1K **Simplification Using Paraphrases and Context-Based Lexical Substitution** > Reno Kriz, Eleni Miltsakaki, Marianna Apidianaki, Chris Callison-Burch > *Proceedings of NAACL-HLT 2018*, pages 207–217 > [https://aclanthology.org/N18-1019/](https://aclanthology.org/N18-1019/) The words are drawn from news articles and annotated by both native and non-native English speakers who indicated which words could be difficult for non-native speakers, children, or people with reading disabilities. ### Annotation scheme and binarization Each word was independently labeled by approximately 10 annotators. The `annotators` column records how many annotators marked the word as complex. Binary labels were derived using a threshold: - **Simple (0)**: No annotator marked the word as complex (`annotators = 0`) - **Complex (1)**: Three or more annotators marked it as complex (`annotators >= 3`) - **Excluded**: Words in the ambiguous zone (1–2 annotators) were removed from the dataset This means the dataset contains only clear cases — words that are unambiguously simple or where a meaningful fraction of annotators agreed on complexity. ### Domain generalization sources - **Biomedical**: From the CompLex dataset (Shardlow et al., 2020) — words from biomedical abstracts with continuous complexity scores binarized at threshold 0.5. - **News**: From the CWI 2018 Shared Task (Yimam et al., 2018) — words from news articles annotated for complexity. ## Intended Use This dataset is used for **Homework 1** in [CIS 5300: Natural Language Processing](https://www.seas.upenn.edu/~cis5300/) at the University of Pennsylvania. Students build progressively more sophisticated classifiers: 1. **Baselines**: Word length and word frequency thresholds 2. **Machine learning**: Naive Bayes and Logistic Regression with engineered features 3. **Custom models**: Additional features with error analysis 4. **Domain generalization**: Evaluate on biomedical and news text ## Citation ```bibtex @inproceedings{kriz-etal-2018-simplification, title = "Simplification Using Paraphrases and Context-Based Lexical Substitution", author = "Kriz, Reno and Miltsakaki, Eleni and Apidianaki, Marianna and Callison-Burch, Chris", booktitle = "Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies", year = "2018", address = "New Orleans, Louisiana", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/N18-1019", doi = "10.18653/v1/N18-1019", pages = "207--217", } ```