Lino-Urdaneta-Mammut commited on
Commit
2155124
1 Parent(s): 2cee6fa

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +142 -0
README.md ADDED
@@ -0,0 +1,142 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # How to use
2
+
3
+ How to load this dataset directly with the datasets library:
4
+
5
+ `>>> from datasets import load_dataset`
6
+ `>>> dataset = load_dataset("mammut-corpus-venezuela")`
7
+
8
+ # Dataset Summary
9
+
10
+ **mammut-corpus-venezuela** is a dataset for Spanish language modeling. This dataset comprises a large number of Venezuelan and Latin-American Spanish texts, manually selected and collected in 2021. The data was collected by a process of web scraping from different portals, downloading of Telegram group chats' history, and selecting of Venezuelan and Latin-American Spanish corpus available online. The texts come from Venezuelan Spanish speakers, subtitlers, journalists, politicians, doctors, writers, and online sellers. Social biases may be present, and a percentage of the texts may be fake or contain misleading or offensive language.
11
+
12
+ Each record in the dataset contains the author of the text (anonymized for conversation authors), the date on which the text entered in the corpus, the text which was automatically tokenized at sentence level for sources other than conversations, the source of the text, the title of the text, the number of tokens (excluding punctuation marks) of the text, and the linguistic register of the text.
13
+
14
+ The dataset counts with a train split and a test split.
15
+
16
+ # Supported Tasks and Leaderboards
17
+
18
+ This dataset can be used for language modeling.
19
+
20
+ # Languages
21
+
22
+ The dataset contains Venezuelan and Latin-American Spanish.
23
+
24
+ # Dataset Structure
25
+
26
+ ## Data Instances
27
+
28
+ An example from the dataset:
29
+ {
30
+ "AUTHOR":“author in title”,
31
+ “TITLE”:“Luis Alberto Buttó: Hecho en socialismo”
32
+ "SENTENCE":“Históricamente, siempre fue así.”,
33
+ "DATE":“2021-07-04 07:18:46.918253”,
34
+ "SOURCE":"la patilla",
35
+ “TOKENS”:“4”
36
+ “TYPE”:“opinion/news”
37
+ }
38
+
39
+
40
+
41
+ The average word token count are provided below:
42
+ Splits
43
+ Total of tokens (no spelling marks):
44
+ Train
45
+ 92,431,194
46
+ Test
47
+ 4,876,739
48
+
49
+ ## Data Fields
50
+
51
+ The data have several fields:
52
+ AUTHOR: author of the text. It is anonymized for conversation authors.
53
+ DATE: date on which the text was entered in the corpus.
54
+ SENTENCE: text. It was automatically tokenized for sources other than conversations.
55
+ SOURCE: source of the texts.
56
+ TITLE: title of the text from which SENTENCE originates.
57
+ TOKENS: number of tokens (excluding punctuation marks) of SENTENCE.
58
+ TYPE: linguistic register of the text.
59
+
60
+ ## Data Splits
61
+
62
+ Size of downloaded dataset files:
63
+ Size of the generated dataset:
64
+ Total amount of disk used:
65
+ The mammut-corpus-ve dataset has 2 splits: train and test. Below are the statistics:
66
+
67
+
68
+ Dataset Split
69
+ Number of Instances in Split
70
+ Train
71
+ 2,983,302
72
+ Test
73
+ 157,011
74
+
75
+ # Dataset Creation
76
+
77
+ ## Curation Rationale
78
+
79
+ The purpose of the mammut-corpus-ve dataset is language modeling. It can be used for pre-training a model from scratch or for fine-tuning on another pre-trained model.
80
+
81
+ ## Source Data
82
+
83
+ ### Initial Data Collection and Normalization
84
+
85
+ The data consists of opinion articles and text messages. It was collected by a process of web scraping from different portals, downloading of Telegram group chats’ history and selecting of Venezuelan and Latin-American Spanish corpus available online.
86
+
87
+ The text from the web scraping process was separated in sentences and was automatically tokenized for sources other than conversations.
88
+
89
+ An arrow parquet file was created.
90
+
91
+ Text sources: El Estímulo (website), cinco8 (website), csm_1990 (oral speaking corpus), “El atajo más largo” (blog), El Pitazo (website), La Patilla (website), Venezuelan movies subtitles, Preseea Mérida (oral speaking corpus), Prodavinci (website), Runrunes (website), and Telegram group chats.
92
+
93
+ ### Who are the source language producers?
94
+
95
+ The texts come from Venezuelan Spanish speakers, subtitlers, journalists, politicians, doctors, writers, and online sellers.
96
+
97
+ ## Annotations
98
+
99
+ ### Annotation process
100
+
101
+ At the moment the dataset does not contain any additional annotations.
102
+
103
+ ### Who are the annotators?
104
+
105
+ Not applicable.
106
+
107
+ ## Personal and Sensitive Information
108
+
109
+ The data is partially anonymized. Also, there are messages from Telegram selling chats, some percentage of these messages may be fake or contain misleading or offensive language.
110
+
111
+ # Considerations for Using the Data
112
+
113
+ ## Social Impact of Dataset
114
+
115
+ The purpose of this dataset is to help the development of language modeling models (pre-training or fine-tuning) in Venezuelan Spanish.
116
+
117
+ ## Discussion of Biases
118
+
119
+ Most of the content comes from political, economical and sociological opinion articles. Social biases may be present.
120
+
121
+ ## Other Known Limitations
122
+ (If applicable, description of the other limitations in the data.)
123
+
124
+ Not applicable.
125
+
126
+ # Additional Information
127
+
128
+ ## Dataset Curators
129
+
130
+ The data was originally collected by Lino Urdaneta and Miguel Riveros from Mammut.io.
131
+
132
+ ## Licensing Information
133
+
134
+ Not applicable.
135
+
136
+ ## Citation Information
137
+
138
+ Not applicable.
139
+
140
+ ## Contributions
141
+
142
+ Not applicable.