Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -20,5 +20,14 @@ This dataset consists of a `pandas` table and attached `images.zip` file with th
|
|
20 |
* vector (generated "random" vector used to create StyleGAN3 images)
|
21 |
* text (caption of each image, generated using BLIP model: `Salesforce/blip-image-captioning-base`)
|
22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
It was created as a part of the course project for FI:PA228 at Masaryk University.
|
|
|
20 |
* vector (generated "random" vector used to create StyleGAN3 images)
|
21 |
* text (caption of each image, generated using BLIP model: `Salesforce/blip-image-captioning-base`)
|
22 |
|
23 |
+
## Usage (WIP)
|
24 |
+
|
25 |
+
To use the dataset, download images and the csv file, convert the ... TODO
|
26 |
+
|
27 |
+
```python
|
28 |
+
images = load_dataset("balgot/stylegan3-annotated", data_files=["*.zip"])
|
29 |
+
dataset = load_dataset("balgot/stylegan3-annotated", data_files=["*.csv"])
|
30 |
+
```
|
31 |
+
|
32 |
|
33 |
It was created as a part of the course project for FI:PA228 at Masaryk University.
|