prithivMLmods commited on
Commit
a6f5937
·
verified ·
1 Parent(s): eb4fbf1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +62 -4
README.md CHANGED
@@ -5,14 +5,20 @@ tags:
5
  - lora
6
  - diffusers
7
  - template:sd-lora
 
8
  widget:
9
- - text: '3d image, cute girl, in the style of Pixar --ar 1:2 --stylize 750'
10
  output:
11
  url: images/11.png
12
- - text: 'cartoon 3D sunny bright Pixar-style image : super hero : full costume : cinematic --ar 68:128 --stylize 750 --v 5.2'
 
 
13
  output:
14
  url: images/22.png
15
- - text: 'A young man with light brown wavy hair and light brown eyes sitting in an armchair and looking directly at the camera, pixar style, disney pixar, office background, ultra detailed, 1 man'
 
 
 
16
  output:
17
  url: images/33.png
18
  base_model: stabilityai/stable-diffusion-xl-base-1.0
@@ -25,6 +31,58 @@ license: apache-2.0
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
  ## Trigger words
29
 
30
  You should use `Pixar` to trigger the image generation.
@@ -34,4 +92,4 @@ You should use `Pixar` to trigger the image generation.
34
 
35
  Weights for this model are available in Safetensors format.
36
 
37
- [Download](/prithivMLmods/Canopus-Pixar-Art/tree/main) them in the Files & versions tab.
 
5
  - lora
6
  - diffusers
7
  - template:sd-lora
8
+ - tensorart
9
  widget:
10
+ - text: 3d image, cute girl, in the style of Pixar --ar 1:2 --stylize 750
11
  output:
12
  url: images/11.png
13
+ - text: >-
14
+ cartoon 3D sunny bright Pixar-style image : super hero : full costume :
15
+ cinematic --ar 68:128 --stylize 750 --v 5.2
16
  output:
17
  url: images/22.png
18
+ - text: >-
19
+ A young man with light brown wavy hair and light brown eyes sitting in an
20
+ armchair and looking directly at the camera, pixar style, disney pixar,
21
+ office background, ultra detailed, 1 man
22
  output:
23
  url: images/33.png
24
  base_model: stabilityai/stable-diffusion-xl-base-1.0
 
31
 
32
  **The model is still in the training phase. This is not the final version and may contain artifacts and perform poorly in some cases.**
33
 
34
+ ## Model description
35
+
36
+ Canopus-Pixar-Art
37
+
38
+ Image Processing Parameters
39
+
40
+ | Parameter | Value | Parameter | Value |
41
+ |---------------------------|--------|---------------------------|--------|
42
+ | LR Scheduler | constant | Noise Offset | 0.03 |
43
+ | Optimizer | AdamW | Multires Noise Discount | 0.1 |
44
+ | Network Dim | 64 | Multires Noise Iterations | 10 |
45
+ | Network Alpha | 32 | Repeat | 27 |
46
+ | Epoch | 12 | Save Every N Epochs | 1 |
47
+
48
+ ## SETTING-UP
49
+
50
+ ```py
51
+ pipe = StableDiffusionXLPipeline.from_pretrained(
52
+ "-------------xxxxxxxxx----------",
53
+ torch_dtype=torch.float16,
54
+ use_safetensors=True,
55
+ )
56
+ (or)
57
+ -----------------------------------------------------------
58
+ pipe = StableDiffusionXLPipeline.from_pretrained(
59
+ "stabilityai/stable-diffusion-xl-base-1.0",
60
+ torch_dtype=torch.float16,
61
+ use_safetensors=True,
62
+ )
63
+ pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
64
+
65
+ pipe.load_lora_weights("prithivMLmods/Canopus-Pixar-Art", weight_name="Canopus-Pixar-Art.safetensors", adapter_name="pixar")
66
+ pipe.set_adapters("pixar")
67
+ pipe.to("cuda")
68
+ ```
69
+
70
+ ## Trigger prompts
71
+
72
+ 3d image, cute girl, in the style of Pixar --ar 1:2 --stylize 750
73
+
74
+
75
+ cartoon 3D sunny bright Pixar-style image : super hero : full costume : cinematic --ar 68:128 --stylize 750 --v 5.2
76
+
77
+
78
+ A young man with light brown wavy hair and light brown eyes sitting in an armchair and looking directly at the camera, pixar style, disney pixar, office background, ultra detailed, 1 man
79
+
80
+ | Parameter | Value |
81
+ |-----------------|---------------------------------------------------------------------------------------|
82
+ | Prompt | 3d image, cute girl, in the style of Pixar --ar 1:2 --stylize 750 |
83
+ | Sampler | euler |
84
+
85
+
86
  ## Trigger words
87
 
88
  You should use `Pixar` to trigger the image generation.
 
92
 
93
  Weights for this model are available in Safetensors format.
94
 
95
+ [Download](/prithivMLmods/Canopus-Pixar-Art/tree/main) them in the Files & versions tab.