Update README.md
Browse files
README.md
CHANGED
|
@@ -14,24 +14,7 @@ inference: true
|
|
| 14 |
|
| 15 |
# Text-to-image finetuning - iamkaikai/amazing-logos
|
| 16 |
|
| 17 |
-
This pipeline was finetuned from **runwayml/stable-diffusion-v1-5** on the **iamkaikai/amazing_logos_v2** dataset.
|
| 18 |
-
|
| 19 |
-

|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
## Pipeline usage
|
| 23 |
-
|
| 24 |
-
You can use the pipeline like so:
|
| 25 |
-
|
| 26 |
-
```python
|
| 27 |
-
from diffusers import DiffusionPipeline
|
| 28 |
-
import torch
|
| 29 |
-
|
| 30 |
-
pipeline = DiffusionPipeline.from_pretrained("iamkaikai/amazing-logos", torch_dtype=torch.float16)
|
| 31 |
-
prompt = "Simple elegant logo for Digital Art, D A Square Symmetrical, successful vibe, minimalist, thought-provoking, abstract, recognizable, black and white"
|
| 32 |
-
image = pipeline(prompt).images[0]
|
| 33 |
-
image.save("my_image.png")
|
| 34 |
-
```
|
| 35 |
|
| 36 |
## Training info
|
| 37 |
|
|
@@ -45,4 +28,52 @@ These are the key hyperparameters used during training:
|
|
| 45 |
* Mixed-precision: fp16
|
| 46 |
|
| 47 |
|
| 48 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
|
| 15 |
# Text-to-image finetuning - iamkaikai/amazing-logos
|
| 16 |
|
| 17 |
+
This pipeline was finetuned from **runwayml/stable-diffusion-v1-5** on the **iamkaikai/amazing_logos_v2** dataset.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
|
| 19 |
## Training info
|
| 20 |
|
|
|
|
| 28 |
* Mixed-precision: fp16
|
| 29 |
|
| 30 |
|
| 31 |
+
|
| 32 |
+

|
| 33 |
+
|
| 34 |
+
|
| 35 |
+
## Prompt Format
|
| 36 |
+
The prompt format is as follows:
|
| 37 |
+
|
| 38 |
+
```javascript
|
| 39 |
+
{template keywords} + [company name] + [concept & country] + {template keywords}
|
| 40 |
+
```
|
| 41 |
+
|
| 42 |
+
For example:
|
| 43 |
+
```text
|
| 44 |
+
Simple elegant logo for **[Google]**, **[G circle United states]**, successful vibe, minimalist, thought-provoking, abstract, recognizable, black and white
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
The [concept & country] section can include words such as:
|
| 48 |
+
- lines
|
| 49 |
+
- circles
|
| 50 |
+
- triangles
|
| 51 |
+
- dot
|
| 52 |
+
- crosses
|
| 53 |
+
- waves
|
| 54 |
+
- square
|
| 55 |
+
- letters (A-Z)
|
| 56 |
+
- 3D
|
| 57 |
+
- Angled
|
| 58 |
+
- Arrows
|
| 59 |
+
- cube
|
| 60 |
+
- Diamond
|
| 61 |
+
- Hexagon
|
| 62 |
+
- Loops
|
| 63 |
+
- outline
|
| 64 |
+
- ovals
|
| 65 |
+
- rectangle
|
| 66 |
+
- reflection
|
| 67 |
+
- rings
|
| 68 |
+
- round
|
| 69 |
+
- semicircle
|
| 70 |
+
- spiral
|
| 71 |
+
- woven
|
| 72 |
+
- stars
|
| 73 |
+
|
| 74 |
+
Here are some examples of prompts:
|
| 75 |
+
|
| 76 |
+
- Simple elegant logo for Digital Art, **D A circle**, successful vibe, minimalist, thought-provoking, abstract, recognizable, black and white
|
| 77 |
+
- Simple elegant logo for 3M Technology Products, **3 M square United states**, successful vibe, minimalist, thought-provoking, abstract, recognizable, black and white
|
| 78 |
+
- Simple elegant logo for 38Energy, **lines drop fire flame water**, successful vibe, minimalist, thought provoking, abstract, recognizable, relatable, sharp, vector art, even edges, black and white
|
| 79 |
+
```
|