chryskylodon commited on
Commit
a8cf156
·
verified ·
1 Parent(s): 7d9bcb9

Update README.md

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