File size: 1,778 Bytes
43f8411
 
69e3ae0
 
 
 
 
 
 
 
 
43f8411
69e3ae0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
---

license: apache-2.0
task_categories:
- image-to-text
language:
- en
tags:
- art
pretty_name: FlowerEvolver
size_categories:
- n<1K
---


# FlowerEvolver Dataset


Dataset for flower descriptions for [FlowerEvolver-frontend](https://github.com/cristianglezm/FlowerEvolver-frontend)

format

```javascript



{

    "annotations":[

        {

            "ImagePath":"flowers/001.png", 

            "caption":"A flower with 10 petals that are elongated and narrow ovals in shape. The petals are yellow with dark green tones, featuring a striped pattern. The center of the flower has a dense and colorful pattern with red, blue, green, and pink."

        },

        ...

    ]

}

```

## Make more flowers

You will need to get the desktop app [here](https://cristianglezm.github.io/FlowerEvolver-frontend/), go to downloads and download the correct version then extract the zip and open a terminal.

Make a new file makeDataset.sh and paste the following:

````bash

#!/bin/bash



# $1 min

# $2 max

random(){

    echo "$(($1 + $RANDOM % $2))"

}

# $1 min

# $2 max

randomFloat(){

    echo "$(($1 + $RANDOM % $2)).$((0 + $RANDOM % 99))"

}



if [ ! -d "FlowerDataset" ]

then

    mkdir "FlowerDataset"

fi

echo "Making flowers for dataset"

for i in $(seq 501 600)

do

    ./FlowerEvolver.exe -cli -b $(randomFloat -1 3) -l $(random 2 4) -r 64 -p $(randomFloat 1 12) -sf "FlowersDataset/$i.json" -si "FlowersDataset/$i.png"

done

````

then adjust the parameters to make new flowers not found in the dataset.

## FlowersDataset-500.json

This file is a generation file for FlowerEvolver app or [website](https://cristianglezm.github.io/FlowerEvolver-frontend/) you can load the flowers to inspect, mutate or reproduce them.