prithivMLmods commited on
Commit
8ad965c
1 Parent(s): dfe795c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +51 -0
README.md CHANGED
@@ -23,7 +23,58 @@ license: apache-2.0
23
 
24
  <Gallery />
25
 
 
26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  ## Trigger words
28
 
29
  You should use `animal` to trigger the image generation.
 
23
 
24
  <Gallery />
25
 
26
+ **The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
27
 
28
+ ## Model description
29
+
30
+ Canopus-Pixar-Art
31
+
32
+ Image Processing Parameters
33
+
34
+ | Parameter | Value | Parameter | Value |
35
+ |---------------------------|--------|---------------------------|--------|
36
+ | LR Scheduler | constant | Noise Offset | 0.03 |
37
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
38
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
39
+ | Network Alpha | 32 | Repeat | 25 |
40
+ | Epoch | 13 | Save Every N Epochs | 1 |
41
+
42
+ ## SETTING-UP
43
+
44
+ ```py
45
+ pipe = StableDiffusionXLPipeline.from_pretrained(
46
+ "-------------xxxxxxxxx----------",
47
+ torch_dtype=torch.float16,
48
+ use_safetensors=True,
49
+ )
50
+ (or)
51
+ -----------------------------------------------------------
52
+ pipe = StableDiffusionXLPipeline.from_pretrained(
53
+ "stabilityai/stable-diffusion-xl-base-1.0",
54
+ torch_dtype=torch.float16,
55
+ use_safetensors=True,
56
+ )
57
+ pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
58
+
59
+ pipe.load_lora_weights("prithivMLmods/Canopus-Animaliea-Artism", weight_name=" Canopus-Animaliea-Artism.safetensors", adapter_name="Animaliea")
60
+ pipe.set_adapters("Animaliea")
61
+ pipe.to("cuda")
62
+ ```
63
+
64
+ ## Trigger prompts
65
+
66
+ A pig is standing in the grass next to a red barn, in the style of playful expressions, light white and pink, candid, close up, motion blur --ar 64:45 --v 6.0 --style raw
67
+
68
+
69
+ Small calf standing in field at sunset, in the style of y2k aesthetic, baroque animals, rusticcore, beige and amber, flickr, petcore --ar 2:3 --style raw --v 5.1
70
+
71
+
72
+ Dog walking in the grass near the mountain, in the style of maurizio cattelan, contax t2, strong facial expression, monumental vistas, associated press photo, close-up, frenchy --ar 3:2 --style raw --v 5.1
73
+
74
+ | Parameter | Value |
75
+ |-----------------|---------------------------------------------------------------------------------------|
76
+ | Prompt | A pig is standing in the grass next to a red barn, in the style of playful expressions, light white and pink, candid, close up, motion blur --ar 64:45 --v 6.0 --style raw |
77
+ | Sampler | euler |
78
  ## Trigger words
79
 
80
  You should use `animal` to trigger the image generation.