autotrain-data-processor
commited on
Commit
•
ec05cca
1
Parent(s):
b8cd005
Processed data from AutoTrain data processor ([2022-12-21 00:52 ]
Browse files- README.md +53 -0
- processed/dataset_dict.json +1 -0
- processed/train/dataset.arrow +3 -0
- processed/train/dataset_info.json +25 -0
- processed/train/state.json +17 -0
- processed/valid/dataset.arrow +3 -0
- processed/valid/dataset_info.json +25 -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: feetfoot
|
7 |
+
|
8 |
+
## Dataset Description
|
9 |
+
|
10 |
+
This dataset has been automatically processed by AutoTrain for project feetfoot.
|
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": "<180x320 RGB PIL image>",
|
26 |
+
"target": 0
|
27 |
+
},
|
28 |
+
{
|
29 |
+
"image": "<78x320 RGB PIL image>",
|
30 |
+
"target": 0
|
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=['gettyimagefeet'], 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 | 97 |
|
53 |
+
| valid | 25 |
|
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:2d31a635bfd063532db063e4343edf026dc00539a62d4462426098cbe2ef1b9f
|
3 |
+
size 3180064
|
processed/train/dataset_info.json
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"citation": "",
|
3 |
+
"description": "AutoTrain generated dataset",
|
4 |
+
"features": {
|
5 |
+
"image": {
|
6 |
+
"_type": "Image"
|
7 |
+
},
|
8 |
+
"target": {
|
9 |
+
"names": [
|
10 |
+
"gettyimagefeet"
|
11 |
+
],
|
12 |
+
"_type": "ClassLabel"
|
13 |
+
}
|
14 |
+
},
|
15 |
+
"homepage": "",
|
16 |
+
"license": "",
|
17 |
+
"splits": {
|
18 |
+
"train": {
|
19 |
+
"name": "train",
|
20 |
+
"num_bytes": 3179290,
|
21 |
+
"num_examples": 97,
|
22 |
+
"dataset_name": null
|
23 |
+
}
|
24 |
+
}
|
25 |
+
}
|
processed/train/state.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_data_files": [
|
3 |
+
{
|
4 |
+
"filename": "dataset.arrow"
|
5 |
+
}
|
6 |
+
],
|
7 |
+
"_fingerprint": "c8d7c4958ce48f49",
|
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:fa3b6bc63b5cf86a345bc67ffdf163460d25f2accd386737dd5e6f39146c9484
|
3 |
+
size 971152
|
processed/valid/dataset_info.json
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"citation": "",
|
3 |
+
"description": "AutoTrain generated dataset",
|
4 |
+
"features": {
|
5 |
+
"image": {
|
6 |
+
"_type": "Image"
|
7 |
+
},
|
8 |
+
"target": {
|
9 |
+
"names": [
|
10 |
+
"gettyimagefeet"
|
11 |
+
],
|
12 |
+
"_type": "ClassLabel"
|
13 |
+
}
|
14 |
+
},
|
15 |
+
"homepage": "",
|
16 |
+
"license": "",
|
17 |
+
"splits": {
|
18 |
+
"valid": {
|
19 |
+
"name": "valid",
|
20 |
+
"num_bytes": 970376,
|
21 |
+
"num_examples": 25,
|
22 |
+
"dataset_name": null
|
23 |
+
}
|
24 |
+
}
|
25 |
+
}
|
processed/valid/state.json
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_data_files": [
|
3 |
+
{
|
4 |
+
"filename": "dataset.arrow"
|
5 |
+
}
|
6 |
+
],
|
7 |
+
"_fingerprint": "4c5183dcfbca324a",
|
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 |
+
}
|