Instructions to use robbyant/lingbot-world-base-cam with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use robbyant/lingbot-world-base-cam 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("robbyant/lingbot-world-base-cam", 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
|
@@ -21,8 +21,7 @@ Robbyant Team
|
|
| 21 |
<div align="center">
|
| 22 |
|
| 23 |
[](https://technology.robbyant.com/lingbot-world)
|
| 24 |
-
[](https://github.com/robbyant/lingbot-world)
|
| 26 |
[](https://huggingface.co/robbyant/lingbot-world-base-cam)
|
| 27 |
[](https://www.modelscope.cn/models/Robbyant/lingbot-world-base-cam)
|
| 28 |
[](LICENSE.txt)
|
|
@@ -136,7 +135,7 @@ If you find this work useful for your research, please cite our paper:
|
|
| 136 |
@article{lingbot-world,
|
| 137 |
title={Advancing Open-source World Models},
|
| 138 |
author={Robbyant Team},
|
| 139 |
-
journal={arXiv preprint arXiv:
|
| 140 |
year={2026}
|
| 141 |
}
|
| 142 |
```
|
|
|
|
| 21 |
<div align="center">
|
| 22 |
|
| 23 |
[](https://technology.robbyant.com/lingbot-world)
|
| 24 |
+
[](https://arxiv.org/abs/2601.20540)
|
|
|
|
| 25 |
[](https://huggingface.co/robbyant/lingbot-world-base-cam)
|
| 26 |
[](https://www.modelscope.cn/models/Robbyant/lingbot-world-base-cam)
|
| 27 |
[](LICENSE.txt)
|
|
|
|
| 135 |
@article{lingbot-world,
|
| 136 |
title={Advancing Open-source World Models},
|
| 137 |
author={Robbyant Team},
|
| 138 |
+
journal={arXiv preprint arXiv:2601.20540},
|
| 139 |
year={2026}
|
| 140 |
}
|
| 141 |
```
|