autonlp-data-processor
commited on
Commit
·
26911ec
1
Parent(s):
0dab696
Processed data from autonlp data processor ([2022-01-28 19:24 ]
Browse files- README.md +63 -0
- processed/dataset_dict.json +1 -0
- processed/train/dataset.arrow +3 -0
- processed/train/dataset_info.json +42 -0
- processed/train/state.json +18 -0
- processed/valid/dataset.arrow +3 -0
- processed/valid/dataset_info.json +42 -0
- processed/valid/state.json +18 -0
README.md
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
languages:
|
3 |
+
- en
|
4 |
+
task_categories:
|
5 |
+
- text-classification
|
6 |
+
|
7 |
+
---
|
8 |
+
# AutoNLP Dataset for project: traffic_nlp_binary
|
9 |
+
|
10 |
+
## Table of content
|
11 |
+
- [Dataset Description](#dataset-description)
|
12 |
+
- [Languages](#languages)
|
13 |
+
- [Dataset Structure](#dataset-structure)
|
14 |
+
- [Data Instances](#data-instances)
|
15 |
+
- [Data Fields](#data-fields)
|
16 |
+
- [Data Splits](#data-splits)
|
17 |
+
|
18 |
+
## Dataset Descritpion
|
19 |
+
|
20 |
+
This dataset has been automatically processed by AutoNLP for project traffic_nlp_binary.
|
21 |
+
|
22 |
+
### Languages
|
23 |
+
|
24 |
+
The BCP-47 code for the dataset's language is en.
|
25 |
+
|
26 |
+
## Dataset Structure
|
27 |
+
|
28 |
+
### Data Instances
|
29 |
+
|
30 |
+
A sample from this dataset looks as follows:
|
31 |
+
|
32 |
+
```json
|
33 |
+
[
|
34 |
+
{
|
35 |
+
"text": "1 train is still delayed in both directions",
|
36 |
+
"target": 1
|
37 |
+
},
|
38 |
+
{
|
39 |
+
"text": "maybe there was no train traffic ????. i know the feeling.",
|
40 |
+
"target": 1
|
41 |
+
}
|
42 |
+
]
|
43 |
+
```
|
44 |
+
|
45 |
+
### Dataset Fields
|
46 |
+
|
47 |
+
The dataset has the following fields (also called "features"):
|
48 |
+
|
49 |
+
```json
|
50 |
+
{
|
51 |
+
"target": "ClassLabel(num_classes=2, names=['0', '1'], names_file=None, id=None)",
|
52 |
+
"text": "Value(dtype='string', id=None)"
|
53 |
+
}
|
54 |
+
```
|
55 |
+
|
56 |
+
### Dataset Splits
|
57 |
+
|
58 |
+
This dataset is split into a train and validation split. The split sizes are as follow:
|
59 |
+
|
60 |
+
| Split name | Num samples |
|
61 |
+
| ------------ | ------------------- |
|
62 |
+
| train | 2195 |
|
63 |
+
| valid | 549 |
|
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:31c1681ab44cd84f70db40648ea376228139b124a4f6d77afd4613c45f26bb11
|
3 |
+
size 325728
|
processed/train/dataset_info.json
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"target": {
|
11 |
+
"num_classes": 2,
|
12 |
+
"names": [
|
13 |
+
"0",
|
14 |
+
"1"
|
15 |
+
],
|
16 |
+
"names_file": null,
|
17 |
+
"id": null,
|
18 |
+
"_type": "ClassLabel"
|
19 |
+
},
|
20 |
+
"text": {
|
21 |
+
"dtype": "string",
|
22 |
+
"id": null,
|
23 |
+
"_type": "Value"
|
24 |
+
}
|
25 |
+
},
|
26 |
+
"homepage": "",
|
27 |
+
"license": "",
|
28 |
+
"post_processed": null,
|
29 |
+
"post_processing_size": null,
|
30 |
+
"size_in_bytes": null,
|
31 |
+
"splits": {
|
32 |
+
"train": {
|
33 |
+
"name": "train",
|
34 |
+
"num_bytes": 324697,
|
35 |
+
"num_examples": 2195,
|
36 |
+
"dataset_name": null
|
37 |
+
}
|
38 |
+
},
|
39 |
+
"supervised_keys": null,
|
40 |
+
"task_templates": null,
|
41 |
+
"version": null
|
42 |
+
}
|
processed/train/state.json
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_data_files": [
|
3 |
+
{
|
4 |
+
"filename": "dataset.arrow"
|
5 |
+
}
|
6 |
+
],
|
7 |
+
"_fingerprint": "4f5d419c0d4247fe",
|
8 |
+
"_format_columns": [
|
9 |
+
"target",
|
10 |
+
"text"
|
11 |
+
],
|
12 |
+
"_format_kwargs": {},
|
13 |
+
"_format_type": null,
|
14 |
+
"_indexes": {},
|
15 |
+
"_indices_data_files": null,
|
16 |
+
"_output_all_columns": false,
|
17 |
+
"_split": null
|
18 |
+
}
|
processed/valid/dataset.arrow
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fa29850f6c071489bca4127e141c58ce07778d90a804c5f6b0f3a45bc16a3817
|
3 |
+
size 83784
|
processed/valid/dataset_info.json
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
"target": {
|
11 |
+
"num_classes": 2,
|
12 |
+
"names": [
|
13 |
+
"0",
|
14 |
+
"1"
|
15 |
+
],
|
16 |
+
"names_file": null,
|
17 |
+
"id": null,
|
18 |
+
"_type": "ClassLabel"
|
19 |
+
},
|
20 |
+
"text": {
|
21 |
+
"dtype": "string",
|
22 |
+
"id": null,
|
23 |
+
"_type": "Value"
|
24 |
+
}
|
25 |
+
},
|
26 |
+
"homepage": "",
|
27 |
+
"license": "",
|
28 |
+
"post_processed": null,
|
29 |
+
"post_processing_size": null,
|
30 |
+
"size_in_bytes": null,
|
31 |
+
"splits": {
|
32 |
+
"valid": {
|
33 |
+
"name": "valid",
|
34 |
+
"num_bytes": 83178,
|
35 |
+
"num_examples": 549,
|
36 |
+
"dataset_name": null
|
37 |
+
}
|
38 |
+
},
|
39 |
+
"supervised_keys": null,
|
40 |
+
"task_templates": null,
|
41 |
+
"version": null
|
42 |
+
}
|
processed/valid/state.json
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_data_files": [
|
3 |
+
{
|
4 |
+
"filename": "dataset.arrow"
|
5 |
+
}
|
6 |
+
],
|
7 |
+
"_fingerprint": "549f774ce0c25a50",
|
8 |
+
"_format_columns": [
|
9 |
+
"target",
|
10 |
+
"text"
|
11 |
+
],
|
12 |
+
"_format_kwargs": {},
|
13 |
+
"_format_type": null,
|
14 |
+
"_indexes": {},
|
15 |
+
"_indices_data_files": null,
|
16 |
+
"_output_all_columns": false,
|
17 |
+
"_split": null
|
18 |
+
}
|