autotrain-data-processor
commited on
Commit
•
fa7cdad
1
Parent(s):
bc8ee12
Processed data from AutoTrain data processor ([2022-06-20 16:04 ]
Browse files- README.md +55 -0
- processed/dataset_dict.json +1 -0
- processed/train/dataset.arrow +3 -0
- processed/train/dataset_info.json +47 -0
- processed/train/state.json +17 -0
- processed/valid/dataset.arrow +3 -0
- processed/valid/dataset_info.json +47 -0
- processed/valid/state.json +17 -0
README.md
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
languages:
|
3 |
+
- en
|
4 |
+
task_categories:
|
5 |
+
- text-classification
|
6 |
+
|
7 |
+
---
|
8 |
+
# AutoTrain Dataset for project: yes-or-no-classifier-on-circa
|
9 |
+
|
10 |
+
## Dataset Descritpion
|
11 |
+
|
12 |
+
This dataset has been automatically processed by AutoTrain for project yes-or-no-classifier-on-circa.
|
13 |
+
|
14 |
+
### Languages
|
15 |
+
|
16 |
+
The BCP-47 code for the dataset's language is en.
|
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": "Situation: X wants to know about Y's food preferences.\nQ: Do you like burritos\nA: Any Mexican food i[...]",
|
28 |
+
"target": 6
|
29 |
+
},
|
30 |
+
{
|
31 |
+
"text": "Situation: X wants to know about Y's music preferences.\nQ: Would you like to go to a music club?\nA: [...]",
|
32 |
+
"target": 7
|
33 |
+
}
|
34 |
+
]
|
35 |
+
```
|
36 |
+
|
37 |
+
### Dataset Fields
|
38 |
+
|
39 |
+
The dataset has the following fields (also called "features"):
|
40 |
+
|
41 |
+
```json
|
42 |
+
{
|
43 |
+
"text": "Value(dtype='string', id=None)",
|
44 |
+
"target": "ClassLabel(num_classes=8, names=['I am not sure how X will interpret Y\u2019s answer', 'In the middle, neither yes nor no', 'No', 'Other', 'Probably no', 'Probably yes / sometimes yes', 'Yes', 'Yes, subject to some conditions'], id=None)"
|
45 |
+
}
|
46 |
+
```
|
47 |
+
|
48 |
+
### Dataset Splits
|
49 |
+
|
50 |
+
This dataset is split into a train and validation split. The split sizes are as follow:
|
51 |
+
|
52 |
+
| Split name | Num samples |
|
53 |
+
| ------------ | ------------------- |
|
54 |
+
| train | 25218 |
|
55 |
+
| valid | 6307 |
|
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:d018607b14b524bcccf98b7d932e31e636f7162b71618e1eff5b51d7565ec10f
|
3 |
+
size 3865576
|
processed/train/dataset_info.json
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"builder_name": null,
|
3 |
+
"citation": "",
|
4 |
+
"config_name": null,
|
5 |
+
"dataset_size": null,
|
6 |
+
"description": "AutoTrain generated dataset",
|
7 |
+
"download_checksums": null,
|
8 |
+
"download_size": null,
|
9 |
+
"features": {
|
10 |
+
"text": {
|
11 |
+
"dtype": "string",
|
12 |
+
"id": null,
|
13 |
+
"_type": "Value"
|
14 |
+
},
|
15 |
+
"target": {
|
16 |
+
"num_classes": 8,
|
17 |
+
"names": [
|
18 |
+
"I am not sure how X will interpret Y\u2019s answer",
|
19 |
+
"In the middle, neither yes nor no",
|
20 |
+
"No",
|
21 |
+
"Other",
|
22 |
+
"Probably no",
|
23 |
+
"Probably yes / sometimes yes",
|
24 |
+
"Yes",
|
25 |
+
"Yes, subject to some conditions"
|
26 |
+
],
|
27 |
+
"id": null,
|
28 |
+
"_type": "ClassLabel"
|
29 |
+
}
|
30 |
+
},
|
31 |
+
"homepage": "",
|
32 |
+
"license": "",
|
33 |
+
"post_processed": null,
|
34 |
+
"post_processing_size": null,
|
35 |
+
"size_in_bytes": null,
|
36 |
+
"splits": {
|
37 |
+
"train": {
|
38 |
+
"name": "train",
|
39 |
+
"num_bytes": 3859294,
|
40 |
+
"num_examples": 25218,
|
41 |
+
"dataset_name": null
|
42 |
+
}
|
43 |
+
},
|
44 |
+
"supervised_keys": null,
|
45 |
+
"task_templates": null,
|
46 |
+
"version": null
|
47 |
+
}
|
processed/train/state.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_data_files": [
|
3 |
+
{
|
4 |
+
"filename": "dataset.arrow"
|
5 |
+
}
|
6 |
+
],
|
7 |
+
"_fingerprint": "4f9217d0fab42dcf",
|
8 |
+
"_format_columns": [
|
9 |
+
"target",
|
10 |
+
"text"
|
11 |
+
],
|
12 |
+
"_format_kwargs": {},
|
13 |
+
"_format_type": null,
|
14 |
+
"_indexes": {},
|
15 |
+
"_output_all_columns": false,
|
16 |
+
"_split": null
|
17 |
+
}
|
processed/valid/dataset.arrow
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d88faf20a63d8522a04e52aa48eb77306bf00dffe6b3028dbc7ea31fcec49942
|
3 |
+
size 971472
|
processed/valid/dataset_info.json
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"builder_name": null,
|
3 |
+
"citation": "",
|
4 |
+
"config_name": null,
|
5 |
+
"dataset_size": null,
|
6 |
+
"description": "AutoTrain generated dataset",
|
7 |
+
"download_checksums": null,
|
8 |
+
"download_size": null,
|
9 |
+
"features": {
|
10 |
+
"text": {
|
11 |
+
"dtype": "string",
|
12 |
+
"id": null,
|
13 |
+
"_type": "Value"
|
14 |
+
},
|
15 |
+
"target": {
|
16 |
+
"num_classes": 8,
|
17 |
+
"names": [
|
18 |
+
"I am not sure how X will interpret Y\u2019s answer",
|
19 |
+
"In the middle, neither yes nor no",
|
20 |
+
"No",
|
21 |
+
"Other",
|
22 |
+
"Probably no",
|
23 |
+
"Probably yes / sometimes yes",
|
24 |
+
"Yes",
|
25 |
+
"Yes, subject to some conditions"
|
26 |
+
],
|
27 |
+
"id": null,
|
28 |
+
"_type": "ClassLabel"
|
29 |
+
}
|
30 |
+
},
|
31 |
+
"homepage": "",
|
32 |
+
"license": "",
|
33 |
+
"post_processed": null,
|
34 |
+
"post_processing_size": null,
|
35 |
+
"size_in_bytes": null,
|
36 |
+
"splits": {
|
37 |
+
"valid": {
|
38 |
+
"name": "valid",
|
39 |
+
"num_bytes": 969344,
|
40 |
+
"num_examples": 6307,
|
41 |
+
"dataset_name": null
|
42 |
+
}
|
43 |
+
},
|
44 |
+
"supervised_keys": null,
|
45 |
+
"task_templates": null,
|
46 |
+
"version": null
|
47 |
+
}
|
processed/valid/state.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_data_files": [
|
3 |
+
{
|
4 |
+
"filename": "dataset.arrow"
|
5 |
+
}
|
6 |
+
],
|
7 |
+
"_fingerprint": "a214791f10bd1944",
|
8 |
+
"_format_columns": [
|
9 |
+
"target",
|
10 |
+
"text"
|
11 |
+
],
|
12 |
+
"_format_kwargs": {},
|
13 |
+
"_format_type": null,
|
14 |
+
"_indexes": {},
|
15 |
+
"_output_all_columns": false,
|
16 |
+
"_split": null
|
17 |
+
}
|