Instructions to use realrebelai/LingBot_ComfyUI with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use realrebelai/LingBot_ComfyUI with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline from diffusers.utils import load_image, export_to_video # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("realrebelai/LingBot_ComfyUI", torch_dtype=torch.bfloat16, device_map="cuda") pipe.to("cuda") prompt = "A man with short gray hair plays a red electric guitar." image = load_image( "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/guitar-man.png" ) output = pipe(image=image, prompt=prompt).frames[0] export_to_video(output, "output.mp4") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -17,6 +17,18 @@ tags:
|
|
| 17 |
|
| 18 |
# LingBot-Video-Dense-1.3B — ComfyUI repack (single-file, 8GB-VRAM ready)
|
| 19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
Repackaged weights of [robbyant/lingbot-video-dense-1.3b](https://huggingface.co/robbyant/lingbot-video-dense-1.3b)
|
| 21 |
for use with the **[ComfyUI_Rebels_LingBot](https://github.com/RealRebelAI/ComfyUI_Rebels_LingBot)**
|
| 22 |
node pack. No weight modification — the original diffusers shards are merged/renamed into
|
|
|
|
| 17 |
|
| 18 |
# LingBot-Video-Dense-1.3B — ComfyUI repack (single-file, 8GB-VRAM ready)
|
| 19 |
|
| 20 |
+
<div align="center">
|
| 21 |
+
<video
|
| 22 |
+
src="https://cdn-uploads.huggingface.co/production/uploads/68761990332d15464ccc8dee/4c5xvrkNvb1Nde1xUK1Eu.mp4"
|
| 23 |
+
width="400"
|
| 24 |
+
height="400"
|
| 25 |
+
autoplay
|
| 26 |
+
loop
|
| 27 |
+
muted
|
| 28 |
+
playsinline
|
| 29 |
+
></video>
|
| 30 |
+
</div>
|
| 31 |
+
|
| 32 |
Repackaged weights of [robbyant/lingbot-video-dense-1.3b](https://huggingface.co/robbyant/lingbot-video-dense-1.3b)
|
| 33 |
for use with the **[ComfyUI_Rebels_LingBot](https://github.com/RealRebelAI/ComfyUI_Rebels_LingBot)**
|
| 34 |
node pack. No weight modification — the original diffusers shards are merged/renamed into
|