Datasets:
Tasks:
Image Classification
Modalities:
Image
Formats:
parquet
Size:
10K - 100K
Tags:
biology
License:
Update README.md
Browse files
README.md
CHANGED
@@ -19,13 +19,13 @@ dataset_info:
|
|
19 |
'9': tiger
|
20 |
splits:
|
21 |
- name: train
|
22 |
-
num_bytes: 14149466600
|
23 |
num_examples: 10000
|
24 |
- name: test
|
25 |
-
num_bytes: 7115540480
|
26 |
num_examples: 5000
|
27 |
download_size: 23294717535
|
28 |
-
dataset_size: 21265007080
|
29 |
configs:
|
30 |
- config_name: default
|
31 |
data_files:
|
@@ -33,4 +33,40 @@ configs:
|
|
33 |
path: data/train-*
|
34 |
- split: test
|
35 |
path: data/test-*
|
|
|
|
|
|
|
|
|
|
|
36 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
'9': tiger
|
20 |
splits:
|
21 |
- name: train
|
22 |
+
num_bytes: 14149466600
|
23 |
num_examples: 10000
|
24 |
- name: test
|
25 |
+
num_bytes: 7115540480
|
26 |
num_examples: 5000
|
27 |
download_size: 23294717535
|
28 |
+
dataset_size: 21265007080
|
29 |
configs:
|
30 |
- config_name: default
|
31 |
data_files:
|
|
|
33 |
path: data/train-*
|
34 |
- split: test
|
35 |
path: data/test-*
|
36 |
+
license: other
|
37 |
+
task_categories:
|
38 |
+
- image-classification
|
39 |
+
tags:
|
40 |
+
- biology
|
41 |
---
|
42 |
+
|
43 |
+
# Fake Animals
|
44 |
+
This dataset is a collection of 10 types of animal images created using [Stable Diffusion 3.5 Large](https://huggingface.co/stabilityai/stable-diffusion-3.5-large).
|
45 |
+
|
46 |
+
## Dataset Details
|
47 |
+
|
48 |
+
### Dataset Description
|
49 |
+
All images have a resolution of 1024x1024 and are divided into training and test sets with 1000 and 500 images, respectively. The classes are as follows:
|
50 |
+
- '0': cat
|
51 |
+
- '1': dog
|
52 |
+
- '2': elephant
|
53 |
+
- '3': fish
|
54 |
+
- '4': giraffe
|
55 |
+
- '5': horse
|
56 |
+
- '6': lion
|
57 |
+
- '7': penguin
|
58 |
+
- '8': rabbit
|
59 |
+
- '9': tiger
|
60 |
+
|
61 |
+
The data was generated according to the prompt "a photo of {animal}."
|
62 |
+
|
63 |
+
## Uses
|
64 |
+
```python
|
65 |
+
from datasets import load_dataset
|
66 |
+
ds = load_dataset('Prgckwb/fake-animals')
|
67 |
+
ds_train = ds['train']
|
68 |
+
ds_test = ds['test']
|
69 |
+
```
|
70 |
+
|
71 |
+
## License
|
72 |
+
Since this dataset was created using [Stable Diffusion 3.5 Large](https://huggingface.co/stabilityai/stable-diffusion-3.5-large), it should be used for non-commercial purposes and in accordance with [this license](https://huggingface.co/stabilityai/stable-diffusion-3.5-large/blob/main/LICENSE.md).
|