R3troR0b commited on
Commit
256abef
1 Parent(s): cd20900

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +140 -3
README.md CHANGED
@@ -1,3 +1,140 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-classification
5
+ language:
6
+ - en
7
+ tags:
8
+ - writing
9
+ pretty_name: PlotStructureClassification
10
+ size_categories:
11
+ - n<1K
12
+ ---
13
+
14
+ # Dataset Card for PlotStructureClassification
15
+
16
+ PlotStructureClassification is a dataset designed for text classification tasks, where the objective is to classify narrative descriptions into well-known plot structures (e.g., "The Hero's Journey," "Three-Act Structure"). Each entry contains a label (the plot structure) and a corresponding description of the structure. This dataset is curated to support models in understanding and categorizing narrative frameworks often used in literature and film.
17
+
18
+ ## Dataset Details
19
+
20
+ ### Dataset Description
21
+
22
+ This dataset contains manually curated plot structure descriptions. Each entry includes a narrative label (e.g., "The Hero's Journey") and a brief explanation of the plot structure. The dataset aims to train models to classify narrative descriptions into their appropriate plot structure categories.
23
+
24
+ - **Curated by:** Robert McNarland, McNarland Software Consultants
25
+ - **Funded by [optional]:** None
26
+ - **Shared by [optional]:** None
27
+ - **Language(s) (NLP):** English
28
+ - **License:** MIT
29
+
30
+ ### Dataset Sources [optional]
31
+
32
+ - **Repository:** [More Information Needed]
33
+ - **Paper [optional]:** [More Information Needed]
34
+ - **Demo [optional]:** [More Information Needed]
35
+
36
+ ## Uses
37
+ ### Direct Use
38
+
39
+
40
+ This dataset can be used to:
41
+
42
+ - Train text classification models to identify plot structures based on descriptions.
43
+ - Support research on narrative structures and the automatic detection of plot frameworks.
44
+ - Enhance models designed for content creation, storytelling, or creative writing by recognizing core narrative patterns.
45
+
46
+ ### Out-of-Scope Use
47
+
48
+ The dataset is not suitable for tasks unrelated to narrative or storytelling. It should not be used for tasks such as numerical prediction or classification unrelated to plot structure.
49
+
50
+ ## Dataset Structure
51
+
52
+ Each instance in the dataset includes:
53
+
54
+ label: The name of the plot structure (e.g., "The Hero's Journey").
55
+ text: A description of the plot structure.
56
+ Example:
57
+
58
+ ```json
59
+ {
60
+ "label": "The Hero's Journey (Monomyth)",
61
+ "text": "A narrative arc where a hero ventures forth, faces trials, and returns transformed, often used in mythological stories."
62
+ }
63
+ ```
64
+
65
+ Data Fields
66
+ - label (string): The plot structure label.
67
+ - text (string): A description of the plot structure.
68
+
69
+ Data Splits
70
+ - Train: 70%
71
+ - Validation: 15%
72
+ - Test: 15%
73
+
74
+ ## Dataset Creation
75
+
76
+ ### Curation Rationale
77
+
78
+ This dataset was created to assist in the development of models capable of classifying and understanding narrative structures. By focusing on well-known plot frameworks, the dataset supports research into storytelling techniques and narrative comprehension.
79
+
80
+ ### Source Data
81
+ #### Data Collection and Processing
82
+
83
+ The dataset was manually curated by summarizing well-known plot structures from books, films, and storytelling guides. Each entry was carefully reviewed to ensure consistency and accuracy.
84
+
85
+ #### Who are the source data producers?
86
+
87
+ The source data was drawn from storytelling and narrative studies, film analysis, and literary guides. The dataset was curated to focus on well-known structures that appear in a variety of media.
88
+
89
+ ### Annotations [optional]
90
+ #### Annotation process
91
+
92
+ The dataset was manually annotated, ensuring that the labels and descriptions aligned with well-defined narrative structures.
93
+
94
+ #### Who are the annotators?
95
+
96
+ Annotations were performed by individuals with experience in narrative analysis and storytelling frameworks.
97
+
98
+ #### Personal and Sensitive Information
99
+
100
+ This dataset does not contain any personal or sensitive information, as it focuses entirely on narrative structures from public sources.
101
+
102
+ ## Bias, Risks, and Limitations
103
+ ### Recommendations
104
+
105
+ Users should be aware of potential biases in the types of narrative structures included. The dataset focuses on traditional Western storytelling frameworks, which may limit its applicability to non-Western or experimental storytelling techniques.
106
+
107
+ ## Citation [optional]
108
+
109
+ **BibTeX:**
110
+
111
+ ```css
112
+ @dataset{mcnarland2024plotstructure,
113
+ title={PlotStructureClassification},
114
+ author={Robert McNarland, McNarland Software Consultants},
115
+ year={2024},
116
+ publisher={Hugging Face},
117
+ howpublished={\url{https://huggingface.co/datasets/R3troR0b/PlotStructureClassification}},
118
+ license={MIT}
119
+ }
120
+ ```
121
+
122
+ **APA:**
123
+
124
+ [More Information Needed]
125
+
126
+ ## Glossary [optional]
127
+
128
+ [More Information Needed]
129
+
130
+ ## More Information [optional]
131
+
132
+ [More Information Needed]
133
+
134
+ ## Dataset Card Authors [optional]
135
+
136
+ Robert McNarland, McNarland Software Consultants
137
+
138
+ ## Dataset Card Contact
139
+
140
+ [More Information Needed]