toolathon123 commited on
Commit
b0faa81
·
verified ·
1 Parent(s): a4af307

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +74 -0
README.md ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license:
3
+ - cc-by-4.0
4
+ - cc-by-sa-4.0
5
+ - cc0-1.0
6
+ language:
7
+ - de
8
+ - en
9
+ - es
10
+ - fr
11
+ - it
12
+ - ru
13
+ - zh
14
+ task_categories:
15
+ - text-generation
16
+ size_categories:
17
+ - n<1K
18
+ num_rows: 10
19
+ num_languages: 7
20
+ train_count: 6
21
+ validation_count: 4
22
+ ---
23
+
24
+ # Multilingual Short Stories
25
+
26
+ A small multilingual short story catalog curated from the source workbook `file1.xlsx`.
27
+ Records with empty or very short text (fewer than 50 whitespace-delimited words) were removed,
28
+ language values were standardized to two-letter ISO 639-1 codes, and a `split` column was added
29
+ (`train` when `word_count >= 200`, otherwise `validation`).
30
+
31
+ ## Dataset Summary
32
+
33
+ - **Total rows:** 10
34
+ - **Number of unique languages:** 7
35
+ - **Train rows:** 6
36
+ - **Validation rows:** 4
37
+
38
+ ## Languages
39
+
40
+ | Language | Rows |
41
+ | --- | --- |
42
+ | de | 1 |
43
+ | en | 4 |
44
+ | es | 1 |
45
+ | fr | 1 |
46
+ | it | 1 |
47
+ | ru | 1 |
48
+ | zh | 1 |
49
+
50
+ ## Splits
51
+
52
+ | Split | Rows |
53
+ | --- | --- |
54
+ | train | 6 |
55
+ | validation | 4 |
56
+
57
+ ## Data Fields
58
+
59
+ - `id`: unique identifier of the story
60
+ - `title`: title of the story
61
+ - `language`: two-letter ISO 639-1 language code
62
+ - `source`: origin of the record
63
+ - `license`: license of the story text
64
+ - `word_count`: reported word count
65
+ - `text`: full story text
66
+ - `split`: dataset split (`train` or `validation`)
67
+
68
+ ## Licenses
69
+
70
+ cc-by-4.0, cc-by-sa-4.0, cc0-1.0
71
+
72
+ ## Intended Uses
73
+
74
+ This dataset is intended for text generation and language modeling experiments across multiple languages.