baruga commited on
Commit
2d43f59
1 Parent(s): 4fe578e

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: creativeml-openrail-m
3
+ tags:
4
+ - pytorch
5
+ - diffusers
6
+ - stable-diffusion
7
+ - text-to-image
8
+ - diffusion-models-class
9
+ - dreambooth-hackathon
10
+ - science
11
+ widget:
12
+ - text: a photo of mafra fractal in the shape of a beautiful flower.
13
+ ---
14
+
15
+ ## Description
16
+ This is a Stable Diffusion model fine-tuned on Mandelbrot fractal images for the DreamBooth Hackathon 🔥 science theme. To participate or learn more, visit [this page](https://huggingface.co/dreambooth-hackathon).
17
+
18
+ To generate Mandelbrot fractals, use **a photo of mafra fractal in the shape of [your choice]** or experiment with other variations. Additional modifiers and negative prompts may improve results.
19
+
20
+ ## Examples
21
+ *a photo of mafra fractal in the shape of a squid.*
22
+ ![squid fractal](https://i.imgur.com/UHJ5K7J.png)
23
+ *a photo of mafra fractal in the shape of seashells.*
24
+ ![seashell fractal](https://i.imgur.com/PgzEOAV.png)
25
+ *a photo of mafra fractal in the shape of jungle foliage.*
26
+ ![jungle fractal](https://i.imgur.com/v6ISc3u.png)
27
+ *a photo of mafra fractal in the shape of a beautiful flower.*
28
+ ![flower fractal](https://i.imgur.com/9VIk2Jc.png)
29
+
30
+
31
+ ## Usage
32
+
33
+ ```python
34
+ from diffusers import StableDiffusionPipeline
35
+
36
+ pipeline = StableDiffusionPipeline.from_pretrained('baruga/mandelbrot-fractals')
37
+ image = pipeline().images[0]
38
+ image
39
+ ```