Video-to-Video
Diffusers
lora
template:diffusion-lora
ltx-2.3
colorize
black&white
color
video2video
vid2vid
IC-LoRA
Instructions to use DoctorDiffusion/LTX-2.3-IC-LoRA-Colorizer with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use DoctorDiffusion/LTX-2.3-IC-LoRA-Colorizer with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Lightricks/LTX-2.3", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("DoctorDiffusion/LTX-2.3-IC-LoRA-Colorizer") prompt = "-" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
Update README.md
Browse files
README.md
CHANGED
|
@@ -29,10 +29,10 @@ pipeline_tag: video-to-video
|
|
| 29 |
Still a work in progress.
|
| 30 |
|
| 31 |
Use with LTX-2.3 IC workflows to add color to black and white footage.
|
| 32 |
-
It is not perfect by any means but for the best results I recommend:
|
| 33 |
-
- Use the IC-LoRA workflow from Lightricks and bypass the controlnet
|
| 34 |
-
-
|
| 35 |
-
- Use a colorized inference frame for better color control
|
| 36 |
- Overlay the final result over your input using a "color" blend mode to preserve the fine details of the original footage.
|
| 37 |
- Generate color maps at half your target resolution for speed.
|
| 38 |
|
|
|
|
| 29 |
Still a work in progress.
|
| 30 |
|
| 31 |
Use with LTX-2.3 IC workflows to add color to black and white footage.
|
| 32 |
+
It is not perfect by any means but for the best results I recommend to:
|
| 33 |
+
- Use the IC-LoRA workflow from Lightricks and bypass the controlnet part (I can provide a workflow if wanted)
|
| 34 |
+
- Prompt for what colors you want things to be
|
| 35 |
+
- Use a colorized inference frame for better color control
|
| 36 |
- Overlay the final result over your input using a "color" blend mode to preserve the fine details of the original footage.
|
| 37 |
- Generate color maps at half your target resolution for speed.
|
| 38 |
|