File size: 4,076 Bytes
a8cf156 e4a597e a8cf156 e4a597e a8cf156 e4a597e a8cf156 688cf26 a8cf156 688cf26 a8cf156 688cf26 a8cf156 688cf26 a8cf156 4ba6f4b a8cf156 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
---
license: mit
language:
- en
task_categories:
- text-classification
- token-classification
- other
task_ids:
- named-entity-recognition
- text-scoring
pretty_name: Dubliners (James Joyce)
description: |
A dataset of James Joyce's collection of short stories "Dubliners," prepared for NLP tasks and computational analysis of literary texts. The dataset includes:
- Text tokenized by sentences.
- POS-tagged sentences using NLTK.
- Results of analyzing the text with spaCy (POS-tagged, named entities, dependencies).
This dataset was created as part of an NLP course at the Higher School of Economics (HSE). For more details, see the original repository: https://github.com/vifirsanova/compling.
The dataset can be used for various NLP tasks, including:
- Part-of-speech tagging.
- Named entity recognition.
- Dependency parsing.
- Computational analysis of literary texts.
It is particularly suited for researchers and students interested in computational linguistics and literary analysis.
size_categories:
- 10K<n<100K
source_datasets:
- original
dataset_info:
features:
- name: text
dtype: string
description: Raw text from "Dubliners," tokenized by sentences.
- name: nltk_pos
dtype: string
description: Part-of-speech tags for each sentence, generated using NLTK.
- name: spacy_pos
dtype: string
description: Part-of-speech tags for each sentence, generated using spaCy.
- name: named_entities
dtype: string
description: Named entities identified in the text, generated using spaCy.
- name: dependencies
dtype: string
description: Dependency parses for each sentence, generated using spaCy.
splits:
- name: train
num_bytes: 5717280
num_examples: 3949
download_size: 5717280
dataset_size: 5717280
tags:
- literature
- nlp
- pos-tagging
- named-entity-recognition
- dependency-parsing
- james-joyce
- dubliners
- computational-linguistics
---
# Dataset Card for Dubliners (James Joyce)
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Structure](#dataset-structure)
- [Usage](#usage)
- [License](#license)
- [Citation](#citation)
## Dataset Description
- **Homepage:** [GitHub Repository](https://github.com/docsportellochrys/nlp-learning)
- **Repository:** [GitHub](https://github.com/docsportellochrys/nlp-learning/tree/main/3.text_preprocessing/)
- **Point of Contact:** [20chryskylodon09@gmail.com]
- **License:** MIT
### Dataset Summary
This dataset contains James Joyce's collection of short stories "Dubliners," prepared for NLP tasks and computational analysis. It includes:
- Text tokenized by sentences.
- POS-tagged sentences using NLTK.
- Results of analyzing the text with spaCy (POS-tagged, named entities, dependencies).
### Supported Tasks
- Part-of-speech tagging
- Named entity recognition
- Dependency parsing
- Computational analysis of literary texts
## Dataset Structure
### Data Fields
- `text`: Raw text from "Dubliners," tokenized by sentences.
- `nltk_pos`: Part-of-speech tags for each sentence, generated using NLTK.
- `spacy_pos`: Part-of-speech tags for each sentence, generated using spaCy.
- `named_entities`: Named entities identified in the text, generated using spaCy.
- `dependencies`: Dependency parses for each sentence, generated using spaCy.
### Data Splits
- `train`: Contains the entire dataset.
## Usage
This dataset is intended for use in NLP tasks such as part-of-speech tagging, named entity recognition, dependency parsing, and computational analysis of literary texts. It is particularly suited for researchers and students interested in computational linguistics and literary analysis.
## License
This dataset is licensed under the MIT License.
## Citation
If you use this dataset, please cite the original source:
```bibtex
@misc{dubliners-nlp-dataset,
author = {doc_sportello},
title = {Dubliners (James Joyce) NLP Dataset},
year = {2025},
publisher = {GitHub},
journal = {GitHub repository},
howpublished = {\url{https://github.com/docsportellochrys/nlp-learning}},
} |