File size: 959 Bytes
e8fadfa
 
 
2ce91f5
e8fadfa
 
 
6a17838
2ce91f5
e8fadfa
 
3dd4908
50e6bd5
 
 
2ce91f5
 
 
 
3bcedca
2ce91f5
50e6bd5
3bcedca
1befe85
3bcedca
1befe85
 
 
 
3bcedca
 
1befe85
 
50e6bd5
6a17838
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
task_categories:
- image-to-text
- text-to-image
language:
- en
tags:
- stylegan3
- face-generation
size_categories:
- 10K<n<100K
---

# StyleGAN3 Annotated Images

This dataset consists of a `pandas` table and attached `images.zip` file with these entries:

* seed (`numpy` seed used to generate random vectors)
* path (path to the generated image obtained after unzipping `images.zip`)
* vector (generated numpy "random" vector used to create StyleGAN3 images)
* text (caption of each image, generated using BLIP model: `Salesforce/blip-image-captioning-base`)

## Usage

In order not to load the images into the memory, we will load the images separately.

```python
images = load_dataset("balgot/stylegan3-annotated", data_files=["*.zip"])
dataset = load_dataset("balgot/stylegan3-annotated", data_files=["*.csv"])

# TODO: convert "vector" column to numpy/torch
```


It was created as a part of the course project for FI:PA228 at Masaryk University.