autotrain-data-processor
commited on
Commit
•
cf31a6a
1
Parent(s):
87f808a
Processed data from AutoTrain data processor ([2023-04-17 12:08 ]
Browse files- README.md +61 -0
- processed/dataset_dict.json +1 -0
- processed/train/data-00000-of-00001.arrow +3 -0
- processed/train/dataset_info.json +36 -0
- processed/train/state.json +18 -0
- processed/valid/data-00000-of-00001.arrow +3 -0
- processed/valid/dataset_info.json +36 -0
- processed/valid/state.json +18 -0
README.md
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- es
|
4 |
+
task_categories:
|
5 |
+
- text-classification
|
6 |
+
|
7 |
+
---
|
8 |
+
# AutoTrain Dataset for project: taras_es_sentiment_analysis
|
9 |
+
|
10 |
+
## Dataset Description
|
11 |
+
|
12 |
+
This dataset has been automatically processed by AutoTrain for project taras_es_sentiment_analysis.
|
13 |
+
|
14 |
+
### Languages
|
15 |
+
|
16 |
+
The BCP-47 code for the dataset's language is es.
|
17 |
+
|
18 |
+
## Dataset Structure
|
19 |
+
|
20 |
+
### Data Instances
|
21 |
+
|
22 |
+
A sample from this dataset looks as follows:
|
23 |
+
|
24 |
+
```json
|
25 |
+
[
|
26 |
+
{
|
27 |
+
"text": "Varela: gran elecci\u00f3n de la izquierda en Centro de Estudiantes del ISFD 54",
|
28 |
+
"feat_id_noticia": 15707,
|
29 |
+
"feat_target": "la izquierda",
|
30 |
+
"target": 2
|
31 |
+
},
|
32 |
+
{
|
33 |
+
"text": "El casamiento de Alberto Cormillot y Estefan\u00eda Pasquini: cu\u00e1ndo se conocieron y en qu\u00e9 fecha ella anunci\u00f3 la boda",
|
34 |
+
"feat_id_noticia": 18813,
|
35 |
+
"feat_target": "Alberto",
|
36 |
+
"target": 1
|
37 |
+
}
|
38 |
+
]
|
39 |
+
```
|
40 |
+
|
41 |
+
### Dataset Fields
|
42 |
+
|
43 |
+
The dataset has the following fields (also called "features"):
|
44 |
+
|
45 |
+
```json
|
46 |
+
{
|
47 |
+
"text": "Value(dtype='string', id=None)",
|
48 |
+
"feat_id_noticia": "Value(dtype='int16', id=None)",
|
49 |
+
"feat_target": "Value(dtype='string', id=None)",
|
50 |
+
"target": "ClassLabel(names=['NEG', 'NEU', 'POS'], id=None)"
|
51 |
+
}
|
52 |
+
```
|
53 |
+
|
54 |
+
### Dataset Splits
|
55 |
+
|
56 |
+
This dataset is split into a train and validation split. The split sizes are as follow:
|
57 |
+
|
58 |
+
| Split name | Num samples |
|
59 |
+
| ------------ | ------------------- |
|
60 |
+
| train | 1096 |
|
61 |
+
| valid | 275 |
|
processed/dataset_dict.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"splits": ["train", "valid"]}
|
processed/train/data-00000-of-00001.arrow
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3e4e8d1cc276a696ce3669e0b47d30cfd91b3b3370ada35e835cdfb2738d1722
|
3 |
+
size 132072
|
processed/train/dataset_info.json
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"citation": "",
|
3 |
+
"description": "AutoTrain generated dataset",
|
4 |
+
"features": {
|
5 |
+
"text": {
|
6 |
+
"dtype": "string",
|
7 |
+
"_type": "Value"
|
8 |
+
},
|
9 |
+
"feat_id_noticia": {
|
10 |
+
"dtype": "int16",
|
11 |
+
"_type": "Value"
|
12 |
+
},
|
13 |
+
"feat_target": {
|
14 |
+
"dtype": "string",
|
15 |
+
"_type": "Value"
|
16 |
+
},
|
17 |
+
"target": {
|
18 |
+
"names": [
|
19 |
+
"NEG",
|
20 |
+
"NEU",
|
21 |
+
"POS"
|
22 |
+
],
|
23 |
+
"_type": "ClassLabel"
|
24 |
+
}
|
25 |
+
},
|
26 |
+
"homepage": "",
|
27 |
+
"license": "",
|
28 |
+
"splits": {
|
29 |
+
"train": {
|
30 |
+
"name": "train",
|
31 |
+
"num_bytes": 130776,
|
32 |
+
"num_examples": 1096,
|
33 |
+
"dataset_name": null
|
34 |
+
}
|
35 |
+
}
|
36 |
+
}
|
processed/train/state.json
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_data_files": [
|
3 |
+
{
|
4 |
+
"filename": "data-00000-of-00001.arrow"
|
5 |
+
}
|
6 |
+
],
|
7 |
+
"_fingerprint": "a5ed086155748b2e",
|
8 |
+
"_format_columns": [
|
9 |
+
"feat_id_noticia",
|
10 |
+
"feat_target",
|
11 |
+
"target",
|
12 |
+
"text"
|
13 |
+
],
|
14 |
+
"_format_kwargs": {},
|
15 |
+
"_format_type": null,
|
16 |
+
"_output_all_columns": false,
|
17 |
+
"_split": null
|
18 |
+
}
|
processed/valid/data-00000-of-00001.arrow
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:31a8b26001598194ef868bf241b67edabee8d26a7ded6a6d73d5cbec7352b11a
|
3 |
+
size 34144
|
processed/valid/dataset_info.json
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"citation": "",
|
3 |
+
"description": "AutoTrain generated dataset",
|
4 |
+
"features": {
|
5 |
+
"text": {
|
6 |
+
"dtype": "string",
|
7 |
+
"_type": "Value"
|
8 |
+
},
|
9 |
+
"feat_id_noticia": {
|
10 |
+
"dtype": "int16",
|
11 |
+
"_type": "Value"
|
12 |
+
},
|
13 |
+
"feat_target": {
|
14 |
+
"dtype": "string",
|
15 |
+
"_type": "Value"
|
16 |
+
},
|
17 |
+
"target": {
|
18 |
+
"names": [
|
19 |
+
"NEG",
|
20 |
+
"NEU",
|
21 |
+
"POS"
|
22 |
+
],
|
23 |
+
"_type": "ClassLabel"
|
24 |
+
}
|
25 |
+
},
|
26 |
+
"homepage": "",
|
27 |
+
"license": "",
|
28 |
+
"splits": {
|
29 |
+
"valid": {
|
30 |
+
"name": "valid",
|
31 |
+
"num_bytes": 33203,
|
32 |
+
"num_examples": 275,
|
33 |
+
"dataset_name": null
|
34 |
+
}
|
35 |
+
}
|
36 |
+
}
|
processed/valid/state.json
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_data_files": [
|
3 |
+
{
|
4 |
+
"filename": "data-00000-of-00001.arrow"
|
5 |
+
}
|
6 |
+
],
|
7 |
+
"_fingerprint": "39149f23712fe4ba",
|
8 |
+
"_format_columns": [
|
9 |
+
"feat_id_noticia",
|
10 |
+
"feat_target",
|
11 |
+
"target",
|
12 |
+
"text"
|
13 |
+
],
|
14 |
+
"_format_kwargs": {},
|
15 |
+
"_format_type": null,
|
16 |
+
"_output_all_columns": false,
|
17 |
+
"_split": null
|
18 |
+
}
|