autonlp-data-processor commited on
Commit
609cc0b
1 Parent(s): 87b1027

Processed data from autonlp data processor ([2021-10-18 16:39 ]

Browse files
README.md ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ languages:
3
+ - pt
4
+
5
+ ---
6
+ # AutoNLP Dataset for project: pos-tag-bosque
7
+
8
+ ## Table of content
9
+ - [Dataset Description](#dataset-description)
10
+ - [Languages](#languages)
11
+ - [Dataset Structure](#dataset-structure)
12
+ - [Data Instances](#data-instances)
13
+ - [Data Fields](#data-fields)
14
+ - [Data Splits](#data-splits)
15
+
16
+ ## Dataset Descritpion
17
+
18
+ This dataset has been automatically processed by AutoNLP for project pos-tag-bosque.
19
+
20
+ ### Languages
21
+
22
+ The BCP-47 code for the dataset's language is pt.
23
+
24
+ ## Dataset Structure
25
+
26
+ ### Data Instances
27
+
28
+ A sample from this dataset looks as follows:
29
+
30
+ ```json
31
+ [
32
+ {
33
+ "tags": [
34
+ 5,
35
+ 7,
36
+ 0
37
+ ],
38
+ "tokens": [
39
+ "Um",
40
+ "revivalismo",
41
+ "refrescante"
42
+ ]
43
+ },
44
+ {
45
+ "tags": [
46
+ 5,
47
+ 11,
48
+ 11,
49
+ 11,
50
+ 3,
51
+ 5,
52
+ 7,
53
+ 1,
54
+ 5,
55
+ 7,
56
+ 0,
57
+ 12
58
+ ],
59
+ "tokens": [
60
+ "O",
61
+ "7",
62
+ "e",
63
+ "Meio",
64
+ "\u00e9",
65
+ "um",
66
+ "ex-libris",
67
+ "de",
68
+ "a",
69
+ "noite",
70
+ "algarvia",
71
+ "."
72
+ ]
73
+ }
74
+ ]
75
+ ```
76
+
77
+ ### Dataset Fields
78
+
79
+ The dataset has the following fields (also called "features"):
80
+
81
+ ```json
82
+ {
83
+ "tags": "Sequence(feature=ClassLabel(num_classes=17, names=['ADJ', 'ADP', 'ADV', 'AUX', 'CCONJ', 'DET', 'INTJ', 'NOUN', 'NUM', 'PART', 'PRON', 'PROPN', 'PUNCT', 'SCONJ', 'SYM', 'VERB', 'X'], names_file=None, id=None), length=-1, id=None)",
84
+ "tokens": "Sequence(feature=Value(dtype='string', id=None), length=-1, id=None)"
85
+ }
86
+ ```
87
+
88
+ ### Dataset Splits
89
+
90
+ This dataset is split into a train and validation split. The split sizes are as follow:
91
+
92
+ | Split name | Num samples |
93
+ | ------------ | ------------------- |
94
+ | train | 8328 |
95
+ | valid | 476 |
processed/dataset_dict.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"splits": ["train", "valid"]}
processed/train/dataset.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c12161da0e416ae4da30dd0046900a1e6142e197c5d306d838833f83bcaa68a3
3
+ size 3612520
processed/train/dataset_info.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "builder_name": null,
3
+ "citation": "",
4
+ "config_name": null,
5
+ "dataset_size": null,
6
+ "description": "AutoNLP generated dataset",
7
+ "download_checksums": null,
8
+ "download_size": null,
9
+ "features": {
10
+ "tags": {
11
+ "feature": {
12
+ "num_classes": 17,
13
+ "names": [
14
+ "ADJ",
15
+ "ADP",
16
+ "ADV",
17
+ "AUX",
18
+ "CCONJ",
19
+ "DET",
20
+ "INTJ",
21
+ "NOUN",
22
+ "NUM",
23
+ "PART",
24
+ "PRON",
25
+ "PROPN",
26
+ "PUNCT",
27
+ "SCONJ",
28
+ "SYM",
29
+ "VERB",
30
+ "X"
31
+ ],
32
+ "names_file": null,
33
+ "id": null,
34
+ "_type": "ClassLabel"
35
+ },
36
+ "length": -1,
37
+ "id": null,
38
+ "_type": "Sequence"
39
+ },
40
+ "tokens": {
41
+ "feature": {
42
+ "dtype": "string",
43
+ "id": null,
44
+ "_type": "Value"
45
+ },
46
+ "length": -1,
47
+ "id": null,
48
+ "_type": "Sequence"
49
+ }
50
+ },
51
+ "homepage": "",
52
+ "license": "",
53
+ "post_processed": null,
54
+ "post_processing_size": null,
55
+ "size_in_bytes": null,
56
+ "splits": {
57
+ "train": {
58
+ "name": "train",
59
+ "num_bytes": 3608750,
60
+ "num_examples": 8328,
61
+ "dataset_name": null
62
+ }
63
+ },
64
+ "supervised_keys": null,
65
+ "task_templates": null,
66
+ "version": null
67
+ }
processed/train/indices.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59db338ae78a9b95649924313b73b735d00c6f821b0602a2872c55e18a3da0ce
3
+ size 68200
processed/train/state.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "dataset.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "790340a5e2ebb220",
8
+ "_format_columns": [
9
+ "split",
10
+ "tags",
11
+ "tokens"
12
+ ],
13
+ "_format_kwargs": {},
14
+ "_format_type": null,
15
+ "_indexes": {},
16
+ "_indices_data_files": [
17
+ {
18
+ "filename": "indices.arrow"
19
+ }
20
+ ],
21
+ "_output_all_columns": false,
22
+ "_split": null
23
+ }
processed/valid/dataset.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c12161da0e416ae4da30dd0046900a1e6142e197c5d306d838833f83bcaa68a3
3
+ size 3612520
processed/valid/dataset_info.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "builder_name": null,
3
+ "citation": "",
4
+ "config_name": null,
5
+ "dataset_size": null,
6
+ "description": "AutoNLP generated dataset",
7
+ "download_checksums": null,
8
+ "download_size": null,
9
+ "features": {
10
+ "tags": {
11
+ "feature": {
12
+ "num_classes": 17,
13
+ "names": [
14
+ "ADJ",
15
+ "ADP",
16
+ "ADV",
17
+ "AUX",
18
+ "CCONJ",
19
+ "DET",
20
+ "INTJ",
21
+ "NOUN",
22
+ "NUM",
23
+ "PART",
24
+ "PRON",
25
+ "PROPN",
26
+ "PUNCT",
27
+ "SCONJ",
28
+ "SYM",
29
+ "VERB",
30
+ "X"
31
+ ],
32
+ "names_file": null,
33
+ "id": null,
34
+ "_type": "ClassLabel"
35
+ },
36
+ "length": -1,
37
+ "id": null,
38
+ "_type": "Sequence"
39
+ },
40
+ "tokens": {
41
+ "feature": {
42
+ "dtype": "string",
43
+ "id": null,
44
+ "_type": "Value"
45
+ },
46
+ "length": -1,
47
+ "id": null,
48
+ "_type": "Sequence"
49
+ }
50
+ },
51
+ "homepage": "",
52
+ "license": "",
53
+ "post_processed": null,
54
+ "post_processing_size": null,
55
+ "size_in_bytes": null,
56
+ "splits": {
57
+ "valid": {
58
+ "name": "valid",
59
+ "num_bytes": 3608750,
60
+ "num_examples": 476,
61
+ "dataset_name": null
62
+ }
63
+ },
64
+ "supervised_keys": null,
65
+ "task_templates": null,
66
+ "version": null
67
+ }
processed/valid/indices.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9934e0cc657257057cd82d882aeacac04b7620fc5b597e5b56b1d6378cbce6ba
3
+ size 4232
processed/valid/state.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "dataset.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "7a1ec15c0c4b54f3",
8
+ "_format_columns": [
9
+ "split",
10
+ "tags",
11
+ "tokens"
12
+ ],
13
+ "_format_kwargs": {},
14
+ "_format_type": null,
15
+ "_indexes": {},
16
+ "_indices_data_files": [
17
+ {
18
+ "filename": "indices.arrow"
19
+ }
20
+ ],
21
+ "_output_all_columns": false,
22
+ "_split": null
23
+ }