Update README.md
Browse files
README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
---
|
2 |
license: other
|
3 |
license_name: bria-2.3-fast-lora
|
4 |
-
license_link: https://bria.ai/
|
5 |
library_name: diffusers
|
6 |
inference: false
|
7 |
|
@@ -67,7 +67,7 @@ Contact us today to unlock the potential of BRIA 2.3 FAST-LORA! By submitting th
|
|
67 |
|
68 |
- **Developed by:** BRIA AI
|
69 |
- **Model type:** Text-to-Image model
|
70 |
-
- **License:** [BRIA 2.3 FAST-LORA Licensing terms & conditions](https://bria.ai/
|
71 |
- Purchase is required to license and access the model.
|
72 |
- **Model Description:** BRIA 2.3 Fast is an efficient text-to-image model trained exclusively on a professional-grade, licensed dataset. It is designed for commercial use and includes full legal liability coverage.
|
73 |
- **Resources for more information:** [BRIA AI](https://bria.ai/)
|
@@ -121,6 +121,10 @@ pipe.scheduler = LCMScheduler.from_config(pipe.scheduler.config)
|
|
121 |
pipe.force_zeros_for_empty_prompt = False
|
122 |
pipe.to("cuda")
|
123 |
|
|
|
|
|
|
|
|
|
124 |
negative_prompt = "Logo,Watermark,Text,Ugly,Morbid,Extra fingers,Poorly drawn hands,Mutation,Blurry,Extra limbs,Gross proportions,Missing arms,Mutated hands,Long neck,Duplicate,Mutilated,Mutilated hands,Poorly drawn face,Deformed,Bad anatomy,Cloned face,Malformed limbs,Missing legs,Too many fingers"
|
125 |
generator = torch.Generator("cuda").manual_seed(seed)
|
126 |
|
|
|
1 |
---
|
2 |
license: other
|
3 |
license_name: bria-2.3-fast-lora
|
4 |
+
license_link: https://bria.ai/bria-huggingface-model-license-agreement/
|
5 |
library_name: diffusers
|
6 |
inference: false
|
7 |
|
|
|
67 |
|
68 |
- **Developed by:** BRIA AI
|
69 |
- **Model type:** Text-to-Image model
|
70 |
+
- **License:** [BRIA 2.3 FAST-LORA Licensing terms & conditions](https://bria.ai/bria-huggingface-model-license-agreement/).
|
71 |
- Purchase is required to license and access the model.
|
72 |
- **Model Description:** BRIA 2.3 Fast is an efficient text-to-image model trained exclusively on a professional-grade, licensed dataset. It is designed for commercial use and includes full legal liability coverage.
|
73 |
- **Resources for more information:** [BRIA AI](https://bria.ai/)
|
|
|
121 |
pipe.force_zeros_for_empty_prompt = False
|
122 |
pipe.to("cuda")
|
123 |
|
124 |
+
|
125 |
+
#To run much faster use (or disable it)
|
126 |
+
pipeline.unet = torch.compile(pipeline.unet, mode=‘reduce-overhead’, fullgraph=True)
|
127 |
+
|
128 |
negative_prompt = "Logo,Watermark,Text,Ugly,Morbid,Extra fingers,Poorly drawn hands,Mutation,Blurry,Extra limbs,Gross proportions,Missing arms,Mutated hands,Long neck,Duplicate,Mutilated,Mutilated hands,Poorly drawn face,Deformed,Bad anatomy,Cloned face,Malformed limbs,Missing legs,Too many fingers"
|
129 |
generator = torch.Generator("cuda").manual_seed(seed)
|
130 |
|