system HF staff commited on
Commit
45b2ed1
1 Parent(s): 1cb96a4

Update files from the datasets library (from 1.3.0)

Browse files

Release notes: https://github.com/huggingface/datasets/releases/tag/1.3.0

Files changed (1) hide show
  1. README.md +186 -0
README.md ADDED
@@ -0,0 +1,186 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ ---
3
+
4
+ # Dataset Card for "cornell_movie_dialog"
5
+
6
+ ## Table of Contents
7
+ - [Dataset Description](#dataset-description)
8
+ - [Dataset Summary](#dataset-summary)
9
+ - [Supported Tasks](#supported-tasks)
10
+ - [Languages](#languages)
11
+ - [Dataset Structure](#dataset-structure)
12
+ - [Data Instances](#data-instances)
13
+ - [Data Fields](#data-fields)
14
+ - [Data Splits Sample Size](#data-splits-sample-size)
15
+ - [Dataset Creation](#dataset-creation)
16
+ - [Curation Rationale](#curation-rationale)
17
+ - [Source Data](#source-data)
18
+ - [Annotations](#annotations)
19
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
20
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
21
+ - [Social Impact of Dataset](#social-impact-of-dataset)
22
+ - [Discussion of Biases](#discussion-of-biases)
23
+ - [Other Known Limitations](#other-known-limitations)
24
+ - [Additional Information](#additional-information)
25
+ - [Dataset Curators](#dataset-curators)
26
+ - [Licensing Information](#licensing-information)
27
+ - [Citation Information](#citation-information)
28
+ - [Contributions](#contributions)
29
+
30
+ ## [Dataset Description](#dataset-description)
31
+
32
+ - **Homepage:** [http://www.cs.cornell.edu/~cristian/Cornell_Movie-Dialogs_Corpus.html](http://www.cs.cornell.edu/~cristian/Cornell_Movie-Dialogs_Corpus.html)
33
+ - **Repository:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
34
+ - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
35
+ - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
36
+ - **Size of downloaded dataset files:** 9.46 MB
37
+ - **Size of the generated dataset:** 18.64 MB
38
+ - **Total amount of disk used:** 28.10 MB
39
+
40
+ ### [Dataset Summary](#dataset-summary)
41
+
42
+ This corpus contains a large metadata-rich collection of fictional conversations extracted from raw movie scripts:
43
+ - 220,579 conversational exchanges between 10,292 pairs of movie characters
44
+ - involves 9,035 characters from 617 movies
45
+ - in total 304,713 utterances
46
+ - movie metadata included:
47
+ - genres
48
+ - release year
49
+ - IMDB rating
50
+ - number of IMDB votes
51
+ - IMDB rating
52
+ - character metadata included:
53
+ - gender (for 3,774 characters)
54
+ - position on movie credits (3,321 characters)
55
+
56
+ ### [Supported Tasks](#supported-tasks)
57
+
58
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
59
+
60
+ ### [Languages](#languages)
61
+
62
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
63
+
64
+ ## [Dataset Structure](#dataset-structure)
65
+
66
+ We show detailed information for up to 5 configurations of the dataset.
67
+
68
+ ### [Data Instances](#data-instances)
69
+
70
+ #### default
71
+
72
+ - **Size of downloaded dataset files:** 9.46 MB
73
+ - **Size of the generated dataset:** 18.64 MB
74
+ - **Total amount of disk used:** 28.10 MB
75
+
76
+ An example of 'train' looks as follows.
77
+ ```
78
+ {
79
+ "characterID1": "u0 ",
80
+ "characterID2": " u2 ",
81
+ "characterName1": " m0 ",
82
+ "characterName2": " m0 ",
83
+ "movieGenres": ["comedy", "romance"],
84
+ "movieID": " m0 ",
85
+ "movieIMDBRating": " 6.90 ",
86
+ "movieNoIMDBVotes": " 62847 ",
87
+ "movieTitle": " f ",
88
+ "movieYear": " 1999 ",
89
+ "utterance": {
90
+ "LineID": ["L1"],
91
+ "text": ["L1 "]
92
+ }
93
+ }
94
+ ```
95
+
96
+ ### [Data Fields](#data-fields)
97
+
98
+ The data fields are the same among all splits.
99
+
100
+ #### default
101
+ - `movieID`: a `string` feature.
102
+ - `movieTitle`: a `string` feature.
103
+ - `movieYear`: a `string` feature.
104
+ - `movieIMDBRating`: a `string` feature.
105
+ - `movieNoIMDBVotes`: a `string` feature.
106
+ - `movieGenres`: a `list` of `string` features.
107
+ - `characterID1`: a `string` feature.
108
+ - `characterID2`: a `string` feature.
109
+ - `characterName1`: a `string` feature.
110
+ - `characterName2`: a `string` feature.
111
+ - `utterance`: a dictionary feature containing:
112
+ - `text`: a `string` feature.
113
+ - `LineID`: a `string` feature.
114
+
115
+ ### [Data Splits Sample Size](#data-splits-sample-size)
116
+
117
+ | name |train|
118
+ |-------|----:|
119
+ |default|83097|
120
+
121
+ ## [Dataset Creation](#dataset-creation)
122
+
123
+ ### [Curation Rationale](#curation-rationale)
124
+
125
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
126
+
127
+ ### [Source Data](#source-data)
128
+
129
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
130
+
131
+ ### [Annotations](#annotations)
132
+
133
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
134
+
135
+ ### [Personal and Sensitive Information](#personal-and-sensitive-information)
136
+
137
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
138
+
139
+ ## [Considerations for Using the Data](#considerations-for-using-the-data)
140
+
141
+ ### [Social Impact of Dataset](#social-impact-of-dataset)
142
+
143
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
144
+
145
+ ### [Discussion of Biases](#discussion-of-biases)
146
+
147
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
148
+
149
+ ### [Other Known Limitations](#other-known-limitations)
150
+
151
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
152
+
153
+ ## [Additional Information](#additional-information)
154
+
155
+ ### [Dataset Curators](#dataset-curators)
156
+
157
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
158
+
159
+ ### [Licensing Information](#licensing-information)
160
+
161
+ [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
162
+
163
+ ### [Citation Information](#citation-information)
164
+
165
+ ```
166
+ @InProceedings{Danescu-Niculescu-Mizil+Lee:11a,
167
+
168
+ author={Cristian Danescu-Niculescu-Mizil and Lillian Lee},
169
+
170
+ title={Chameleons in imagined conversations:
171
+ A new approach to understanding coordination of linguistic style in dialogs.},
172
+
173
+ booktitle={Proceedings of the
174
+
175
+ Workshop on Cognitive Modeling and Computational Linguistics, ACL 2011},
176
+
177
+ year={2011}
178
+
179
+ }
180
+
181
+ ```
182
+
183
+
184
+ ### Contributions
185
+
186
+ Thanks to [@mariamabarham](https://github.com/mariamabarham), [@patrickvonplaten](https://github.com/patrickvonplaten), [@thomwolf](https://github.com/thomwolf) for adding this dataset.