Diffusers
TalHach61 commited on
Commit
074981a
·
verified ·
1 Parent(s): c5d23df

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -7
README.md CHANGED
@@ -18,7 +18,7 @@ For more information, please visit our [website](https://bria.ai/).
18
  Join our [Discord community](https://discord.gg/Nxe9YW9zHS) for more information, tutorials, tools, and to connect with other users!
19
 
20
  "Two kids in jackets play near a tent in a forest with trees."
21
- ![controlnet_pose_showoff.png](https://huggingface.co/briaai/BRIA-2.3-ControlNet-Pose/resolve/main/controlnet_pose_showoff.png)
22
 
23
  ### Get Access
24
  Interested in BRIA-3.0 ControlNet-Union? Purchase is required to license and access BRIA-3.0 ControlNet-Union, ensuring royalty management with our data partners and full liability coverage for commercial use.
@@ -94,7 +94,7 @@ controlnet = BriaControlNetModel.from_pretrained(controlnet_model, torch_dtype=t
94
  pipe = BriaControlNetPipeline.from_pretrained(base_model, controlnet=controlnet, torch_dtype=torch.bfloat16, trust_remote_code=True)
95
  pipe.to("cuda")
96
 
97
- control_image_canny = load_image("https://huggingface.co/briaai/BRIA-3.0-ControlNet-Union/resolve/main/canny.jpg")
98
  controlnet_conditioning_scale = 1.0
99
  control_mode = 1
100
 
@@ -149,11 +149,8 @@ controlnet = BriaMultiControlNetModel([controlnet])
149
  pipe = BriaControlNetPipeline.from_pretrained(base_model, controlnet=controlnet, torch_dtype=torch.bfloat16, trust_remote_code=True)
150
  pipe.to("cuda")
151
 
152
- # control_image_colorgrid = load_image("https://huggingface.co/briaai/BRIA-3.0-ControlNet-Union/resolve/main/colorgrid.jpg")
153
- # control_image_pose = load_image("https://huggingface.co/briaai/BRIA-3.0-ControlNet-Union/resolve/main/pose.jpg")
154
-
155
- control_image_colorgrid = Image.open("/home/ubuntu/spring/Infra/sd3/eval_results/control_images/colorgrid/38.jpg").convert("RGB")
156
- control_image_pose = Image.open("/home/ubuntu/spring/Infra/sd3/eval_results/control_images/pose/38.jpg").convert("RGB")
157
 
158
  control_image = [control_image_colorgrid, control_image_pose]
159
  controlnet_conditioning_scale = [0.5, 0.5]
 
18
  Join our [Discord community](https://discord.gg/Nxe9YW9zHS) for more information, tutorials, tools, and to connect with other users!
19
 
20
  "Two kids in jackets play near a tent in a forest with trees."
21
+ ![colorgrid_pose_example.jpg](https://huggingface.co/briaai/BRIA-3.0-ControlNet-Union/blob/main/images/colorgrid_pose_example.jpg)
22
 
23
  ### Get Access
24
  Interested in BRIA-3.0 ControlNet-Union? Purchase is required to license and access BRIA-3.0 ControlNet-Union, ensuring royalty management with our data partners and full liability coverage for commercial use.
 
94
  pipe = BriaControlNetPipeline.from_pretrained(base_model, controlnet=controlnet, torch_dtype=torch.bfloat16, trust_remote_code=True)
95
  pipe.to("cuda")
96
 
97
+ control_image_canny = load_image("https://huggingface.co/briaai/BRIA-3.0-ControlNet-Union/resolve/main/images/canny.jpg")
98
  controlnet_conditioning_scale = 1.0
99
  control_mode = 1
100
 
 
149
  pipe = BriaControlNetPipeline.from_pretrained(base_model, controlnet=controlnet, torch_dtype=torch.bfloat16, trust_remote_code=True)
150
  pipe.to("cuda")
151
 
152
+ control_image_colorgrid = load_image("https://huggingface.co/briaai/BRIA-3.0-ControlNet-Union/resolve/main/images/colorgrid.jpg")
153
+ control_image_pose = load_image("https://huggingface.co/briaai/BRIA-3.0-ControlNet-Union/resolve/main/images/pose.jpg")
 
 
 
154
 
155
  control_image = [control_image_colorgrid, control_image_pose]
156
  controlnet_conditioning_scale = [0.5, 0.5]