CarlosRiverMe commited on
Commit
26ddbd6
1 Parent(s): 6a8ce88

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +50 -0
README.md ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ pipeline_tag: text-to-image
4
+ tags:
5
+ - stable-diffusion
6
+ - stable-diffusion-xl
7
+ - text-to-image
8
+ - diffusers
9
+ - lora
10
+ ---
11
+
12
+ # SimpleTuner-stable-diffusion-3.5-large-ZukyTheDog
13
+
14
+ This is a custom-trained LoRA model for Stable Diffusion 3.5, focused on generating images of ZukyTheDog.
15
+
16
+ ## Model Description
17
+
18
+ This model is a LoRA fine-tune of Stable Diffusion 3.5, trained to generate high-quality images of ZukyTheDog. It can be used to create detailed and accurate representations in various styles and settings.
19
+
20
+ ## Base Model
21
+
22
+ - Base Model: Stable Diffusion 3.5
23
+
24
+ ## How to Use
25
+
26
+ You can use this model in two ways:
27
+
28
+ ### 1. Using Hugging Face Inference API
29
+ Simply input your prompt in the inference API tab above and click "Compute".
30
+
31
+ Example prompts:
32
+ - "A photo of ZukyTheDog sitting in a garden"
33
+ - "ZukyTheDog playing with a ball, high quality, detailed"
34
+ - "Portrait of ZukyTheDog in a natural setting"
35
+
36
+ ### 2. Using Python Code
37
+
38
+ ```python
39
+ from diffusers import StableDiffusionPipeline
40
+ import torch
41
+
42
+ pipeline = StableDiffusionPipeline.from_pretrained(
43
+ "CarlosRiverMe/SimpleTuner-stable-diffusion-3.5-large-ZukyTheDog",
44
+ torch_dtype=torch.float16
45
+ )
46
+ pipeline.to("cuda")
47
+
48
+ prompt = "A photo of ZukyTheDog sitting in a garden"
49
+ image = pipeline(prompt).images[0]
50
+ image.save("generated_image.png")