autotrain-data-processor commited on
Commit ·
dd77e1c
1
Parent(s): bdf588a
Processed data from AutoTrain data processor ([2023-01-30 19:23 ]
Browse files- README.md +53 -0
- processed/dataset_dict.json +1 -0
- processed/train/dataset.arrow +3 -0
- processed/train/dataset_info.json +30 -0
- processed/train/state.json +17 -0
- processed/valid/dataset.arrow +3 -0
- processed/valid/dataset_info.json +30 -0
- processed/valid/state.json +17 -0
README.md
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
task_categories:
|
| 3 |
+
- image-classification
|
| 4 |
+
|
| 5 |
+
---
|
| 6 |
+
# AutoTrain Dataset for project: ssip2
|
| 7 |
+
|
| 8 |
+
## Dataset Description
|
| 9 |
+
|
| 10 |
+
This dataset has been automatically processed by AutoTrain for project ssip2.
|
| 11 |
+
|
| 12 |
+
### Languages
|
| 13 |
+
|
| 14 |
+
The BCP-47 code for the dataset's language is unk.
|
| 15 |
+
|
| 16 |
+
## Dataset Structure
|
| 17 |
+
|
| 18 |
+
### Data Instances
|
| 19 |
+
|
| 20 |
+
A sample from this dataset looks as follows:
|
| 21 |
+
|
| 22 |
+
```json
|
| 23 |
+
[
|
| 24 |
+
{
|
| 25 |
+
"image": "<512x384 RGB PIL image>",
|
| 26 |
+
"target": 3
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"image": "<512x384 RGB PIL image>",
|
| 30 |
+
"target": 1
|
| 31 |
+
}
|
| 32 |
+
]
|
| 33 |
+
```
|
| 34 |
+
|
| 35 |
+
### Dataset Fields
|
| 36 |
+
|
| 37 |
+
The dataset has the following fields (also called "features"):
|
| 38 |
+
|
| 39 |
+
```json
|
| 40 |
+
{
|
| 41 |
+
"image": "Image(decode=True, id=None)",
|
| 42 |
+
"target": "ClassLabel(names=['cardboard', 'glass', 'metal', 'paper', 'plastic', 'trash'], id=None)"
|
| 43 |
+
}
|
| 44 |
+
```
|
| 45 |
+
|
| 46 |
+
### Dataset Splits
|
| 47 |
+
|
| 48 |
+
This dataset is split into a train and validation split. The split sizes are as follow:
|
| 49 |
+
|
| 50 |
+
| Split name | Num samples |
|
| 51 |
+
| ------------ | ------------------- |
|
| 52 |
+
| train | 355 |
|
| 53 |
+
| valid | 90 |
|
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:3f9f3d206cd16270ab2807e214b70e6f6c70d89ed39498099f80c2e5b6c841e8
|
| 3 |
+
size 6028400
|
processed/train/dataset_info.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"citation": "",
|
| 3 |
+
"description": "AutoTrain generated dataset",
|
| 4 |
+
"features": {
|
| 5 |
+
"image": {
|
| 6 |
+
"_type": "Image"
|
| 7 |
+
},
|
| 8 |
+
"target": {
|
| 9 |
+
"names": [
|
| 10 |
+
"cardboard",
|
| 11 |
+
"glass",
|
| 12 |
+
"metal",
|
| 13 |
+
"paper",
|
| 14 |
+
"plastic",
|
| 15 |
+
"trash"
|
| 16 |
+
],
|
| 17 |
+
"_type": "ClassLabel"
|
| 18 |
+
}
|
| 19 |
+
},
|
| 20 |
+
"homepage": "",
|
| 21 |
+
"license": "",
|
| 22 |
+
"splits": {
|
| 23 |
+
"train": {
|
| 24 |
+
"name": "train",
|
| 25 |
+
"num_bytes": 6027581,
|
| 26 |
+
"num_examples": 355,
|
| 27 |
+
"dataset_name": null
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
}
|
processed/train/state.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_data_files": [
|
| 3 |
+
{
|
| 4 |
+
"filename": "dataset.arrow"
|
| 5 |
+
}
|
| 6 |
+
],
|
| 7 |
+
"_fingerprint": "3051c339b25a4621",
|
| 8 |
+
"_format_columns": [
|
| 9 |
+
"image",
|
| 10 |
+
"target"
|
| 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:adcd4f90a837d7986d3e6beb99246e75f2d96121b9d68527a4a72ebd47b6716c
|
| 3 |
+
size 1586472
|
processed/valid/dataset_info.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"citation": "",
|
| 3 |
+
"description": "AutoTrain generated dataset",
|
| 4 |
+
"features": {
|
| 5 |
+
"image": {
|
| 6 |
+
"_type": "Image"
|
| 7 |
+
},
|
| 8 |
+
"target": {
|
| 9 |
+
"names": [
|
| 10 |
+
"cardboard",
|
| 11 |
+
"glass",
|
| 12 |
+
"metal",
|
| 13 |
+
"paper",
|
| 14 |
+
"plastic",
|
| 15 |
+
"trash"
|
| 16 |
+
],
|
| 17 |
+
"_type": "ClassLabel"
|
| 18 |
+
}
|
| 19 |
+
},
|
| 20 |
+
"homepage": "",
|
| 21 |
+
"license": "",
|
| 22 |
+
"splits": {
|
| 23 |
+
"valid": {
|
| 24 |
+
"name": "valid",
|
| 25 |
+
"num_bytes": 1585649,
|
| 26 |
+
"num_examples": 90,
|
| 27 |
+
"dataset_name": null
|
| 28 |
+
}
|
| 29 |
+
}
|
| 30 |
+
}
|
processed/valid/state.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_data_files": [
|
| 3 |
+
{
|
| 4 |
+
"filename": "dataset.arrow"
|
| 5 |
+
}
|
| 6 |
+
],
|
| 7 |
+
"_fingerprint": "75170e47d6a624d0",
|
| 8 |
+
"_format_columns": [
|
| 9 |
+
"image",
|
| 10 |
+
"target"
|
| 11 |
+
],
|
| 12 |
+
"_format_kwargs": {},
|
| 13 |
+
"_format_type": null,
|
| 14 |
+
"_indexes": {},
|
| 15 |
+
"_output_all_columns": false,
|
| 16 |
+
"_split": null
|
| 17 |
+
}
|