Update README.md
Browse files
README.md
CHANGED
|
@@ -38,12 +38,12 @@ scheduler = LCMScheduler
|
|
| 38 |
Lower guidance gives cleaner results.
|
| 39 |
Higher guidance may introduce instability due to LCM behavior.
|
| 40 |
|
| 41 |
-
🧠 Why LiteVision?
|
| 42 |
Traditional SD 1.5 models require 20–30 steps for good quality. LiteVision ONLY requires about 6 steps.
|
| 43 |
|
| 44 |
|
| 45 |
|
| 46 |
-
🛠 Usage
|
| 47 |
python
|
| 48 |
```
|
| 49 |
Copy code
|
|
@@ -66,33 +66,21 @@ image = pipe(
|
|
| 66 |
image.save("litevision_output.png")
|
| 67 |
```
|
| 68 |
|
| 69 |
-
|
| 70 |
-
UNet: SD 1.5 compatible
|
| 71 |
-
|
| 72 |
-
VAE: AutoencoderKL
|
| 73 |
-
|
| 74 |
-
Text Encoder: CLIP
|
| 75 |
-
|
| 76 |
-
Scheduler: LCMScheduler (recommended)
|
| 77 |
-
|
| 78 |
-
Safety Checker: StableDiffusionSafetyChecker
|
| 79 |
-
|
| 80 |
-
🧪 Benchmark (LCM)
|
| 81 |
-
Model Steps Time Quality
|
| 82 |
-
SD 1.5 20 Slow High
|
| 83 |
-
LiteVision-v1 6 Fast High
|
| 84 |
-
|
| 85 |
-
(Tested on RTX-class GPU)
|
| 86 |
-
|
| 87 |
-
⚠ Notes
|
| 88 |
Designed specifically for LCM scheduler.
|
| 89 |
|
| 90 |
Not tuned for traditional DDIM/PNDM high-step sampling.
|
| 91 |
|
| 92 |
Use FP16 for optimal performance.
|
| 93 |
|
| 94 |
-
👤 Author
|
| 95 |
HyHorX
|
| 96 |
|
| 97 |
-
License
|
| 98 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 38 |
Lower guidance gives cleaner results.
|
| 39 |
Higher guidance may introduce instability due to LCM behavior.
|
| 40 |
|
| 41 |
+
# 🧠 Why LiteVision?
|
| 42 |
Traditional SD 1.5 models require 20–30 steps for good quality. LiteVision ONLY requires about 6 steps.
|
| 43 |
|
| 44 |
|
| 45 |
|
| 46 |
+
# 🛠 Usage
|
| 47 |
python
|
| 48 |
```
|
| 49 |
Copy code
|
|
|
|
| 66 |
image.save("litevision_output.png")
|
| 67 |
```
|
| 68 |
|
| 69 |
+
# ⚠ Notes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
Designed specifically for LCM scheduler.
|
| 71 |
|
| 72 |
Not tuned for traditional DDIM/PNDM high-step sampling.
|
| 73 |
|
| 74 |
Use FP16 for optimal performance.
|
| 75 |
|
| 76 |
+
# 👤 Author
|
| 77 |
HyHorX
|
| 78 |
|
| 79 |
+
# License
|
| 80 |
+
This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage. The CreativeML OpenRAIL License specifies:
|
| 81 |
+
|
| 82 |
+
- You can't use the model to deliberately produce nor share illegal or harmful outputs or content
|
| 83 |
+
|
| 84 |
+
- The authors claims no rights on the outputs you generate, you are free to use them and are accountable for their use which must not go against the provisions set in the license
|
| 85 |
+
|
| 86 |
+
- You may re-distribute the weights and use the model commercially and/or as a service. If you do, please be aware you have to include the same use restrictions as the ones in the license and share a copy of the CreativeML OpenRAIL-M to all your users (please read the license entirely and carefully) Please read the full license here
|