BestWishYsh commited on
Commit
e03d084
Β·
verified Β·
1 Parent(s): 8807f5a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +39 -9
README.md CHANGED
@@ -26,8 +26,8 @@ base_model_relation: finetune
26
 
27
  [![Ascend](https://img.shields.io/badge/Inference-Ascend--NPU-red)](https://www.hiascend.com/)
28
  [![Diffusers](https://img.shields.io/badge/Inference-Diffusers-blueviolet)](https://github.com/huggingface/diffusers)
29
- [![vLLM-Omni](https://img.shields.io/badge/Backend-vLLM--Omni-orange)](https://github.com/vllm-project/vllm-omni)
30
- [![SGLang Diffusion](https://img.shields.io/badge/Backend-SGLang--Diffusion-yellow)](https://github.com/sgl-project/sglang)
31
 
32
 
33
 
@@ -68,12 +68,11 @@ or you can click <a href="https://github.com/PKU-YuanGroup/Helios-Page/blob/main
68
  * ⏳⏳⏳ Release the [Technical Report](https://github.com/PKU-YuanGroup/Helios-Page/blob/main/helios_technical_report.pdf) on arXiv.
69
  * `[2025.03.04]` πŸš€ Day-0 support for [Ascend-NPU](https://www.hiascend.com),with sincere gratitude to the Ascend Team for their support.
70
  * `[2025.03.04]` πŸš€ Day-0 support for [Diffusers](https://github.com/huggingface/diffusers),with special thanks to the HuggingFace Team for their support.
71
- * `[2025.03.04]` πŸš€ Day-0 support for [vLLM-Omni](https://github.com/vllm-project/vllm-omni),with heartfelt gratitude to the vLLM Team for their support.
72
- * `[2025.03.04]` πŸš€ Day-0 support for [SGLang-Diffusion](https://github.com/sgl-project/sglang),with huge thanks to the SGLang Team for their support.
73
  * `[2025.03.04]` πŸ”₯ We've released the training/inference code and weights of **Helios-Base**, **Helios-Mid** and **Helios-Distilled**.
74
 
75
 
76
-
77
  ## πŸ”₯ Friendly Links
78
 
79
  If your work has improved **Helios** and you would like more people to see it, please inform us.
@@ -92,6 +91,9 @@ If your work has improved **Helios** and you would like more people to see it, p
92
  | Helios-Base | πŸ€— [Huggingface](https://huggingface.co/BestWishYsh/Helios-Base) πŸ€– [ModelScope](https://modelscope.cn/datasets/BestWishYSH/Helios-Base) | T2V βœ… I2V βœ… V2V βœ… Interactive βœ… | Best Quality, with v-prediction, standard CFG and custom HeliosScheduler. |
93
  | Helios-Mid | πŸ€— [Huggingface](https://huggingface.co/BestWishYsh/Helios-Mid) πŸ€– [ModelScope](https://modelscope.cn/datasets/BestWishYSH/Helios-Mid) | T2V βœ… I2V βœ… V2V βœ… Interactive βœ… | Intermediate Ckpt, with v-prediction, CFG-Zero* and custom HeliosScheduler. |
94
  | Helios-Distilled | πŸ€— [Huggingface](https://huggingface.co/BestWishYsh/Helios-Distilled) πŸ€– [ModelScope](https://modelscope.cn/datasets/BestWishYSH/Helios-Distilled) | T2V βœ… I2V βœ… V2V βœ… Interactive βœ… | Best Efficiency, with x0-prediction and custom HeliosDMDScheduler. |
 
 
 
95
  > πŸ’‘Note:
96
  > * All three models share the same architecture, but Helios-Mid and Helios-Distilled use a more aggressive multi-scale sampling pipeline to achieve better efficiency.
97
  > * Helios-Mid is an intermediate checkpoint generated in the process of distilling Helios-Base into Helios-Distilled, and may not meet expected quality.
@@ -114,6 +116,7 @@ modelscope download BestWishYSH/Helios-Mid --local-dir BestWishYSH/Helios-Mid
114
  modelscope download BestWishYSH/Helios-Distilled --local-dir BestWishYSH/HeliosDistillede
115
  ```
116
 
 
117
  ## πŸš€ Inference
118
 
119
 
@@ -297,13 +300,40 @@ Install sglang-diffusion from source:
297
  pip install git+https://github.com/sgl-project/sglang.git
298
  ```
299
 
300
- For example, let's take Helios-Distilled.
301
 
302
  <details>
303
  <summary>Click to expand the code</summary>
304
 
305
  ```bash
306
- cd sglang
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
307
  ```
308
  </details>
309
 
@@ -319,9 +349,9 @@ If you find our paper and code useful in your research, please consider giving a
319
 
320
  ```BibTeX
321
  @article{helios,
322
- title={Helios: Real-Time Long Video Generation without Anti-Drifting Strategies},
323
  author={Yuan, Shenghai and Yin, Yuanyang and Li, Zongjian and Huang, Xinwei and Yang, Xiao and Yuan, Li},
324
  journal={arXiv preprint arXiv:2603.xxxxx},
325
  year={2026}
326
  }
327
- ```
 
26
 
27
  [![Ascend](https://img.shields.io/badge/Inference-Ascend--NPU-red)](https://www.hiascend.com/)
28
  [![Diffusers](https://img.shields.io/badge/Inference-Diffusers-blueviolet)](https://github.com/huggingface/diffusers)
29
+ [![vLLM-Omni](https://img.shields.io/badge/Backend-vLLM--Omni-orange)](https://github.com/vllm-project/vllm-omni/pull/1604)
30
+ [![SGLang Diffusion](https://img.shields.io/badge/Backend-SGLang--Diffusion-yellow)](https://github.com/sgl-project/sglang/pull/19782)
31
 
32
 
33
 
 
68
  * ⏳⏳⏳ Release the [Technical Report](https://github.com/PKU-YuanGroup/Helios-Page/blob/main/helios_technical_report.pdf) on arXiv.
69
  * `[2025.03.04]` πŸš€ Day-0 support for [Ascend-NPU](https://www.hiascend.com),with sincere gratitude to the Ascend Team for their support.
70
  * `[2025.03.04]` πŸš€ Day-0 support for [Diffusers](https://github.com/huggingface/diffusers),with special thanks to the HuggingFace Team for their support.
71
+ * `[2025.03.04]` πŸš€ Day-0 support for [vLLM-Omni](https://github.com/vllm-project/vllm-omni/pull/1604),with heartfelt gratitude to the vLLM Team for their support.
72
+ * `[2025.03.04]` πŸš€ Day-0 support for [SGLang-Diffusion](https://github.com/sgl-project/sglang/pull/19782),with huge thanks to the SGLang Team for their support.
73
  * `[2025.03.04]` πŸ”₯ We've released the training/inference code and weights of **Helios-Base**, **Helios-Mid** and **Helios-Distilled**.
74
 
75
 
 
76
  ## πŸ”₯ Friendly Links
77
 
78
  If your work has improved **Helios** and you would like more people to see it, please inform us.
 
91
  | Helios-Base | πŸ€— [Huggingface](https://huggingface.co/BestWishYsh/Helios-Base) πŸ€– [ModelScope](https://modelscope.cn/datasets/BestWishYSH/Helios-Base) | T2V βœ… I2V βœ… V2V βœ… Interactive βœ… | Best Quality, with v-prediction, standard CFG and custom HeliosScheduler. |
92
  | Helios-Mid | πŸ€— [Huggingface](https://huggingface.co/BestWishYsh/Helios-Mid) πŸ€– [ModelScope](https://modelscope.cn/datasets/BestWishYSH/Helios-Mid) | T2V βœ… I2V βœ… V2V βœ… Interactive βœ… | Intermediate Ckpt, with v-prediction, CFG-Zero* and custom HeliosScheduler. |
93
  | Helios-Distilled | πŸ€— [Huggingface](https://huggingface.co/BestWishYsh/Helios-Distilled) πŸ€– [ModelScope](https://modelscope.cn/datasets/BestWishYSH/Helios-Distilled) | T2V βœ… I2V βœ… V2V βœ… Interactive βœ… | Best Efficiency, with x0-prediction and custom HeliosDMDScheduler. |
94
+
95
+
96
+
97
  > πŸ’‘Note:
98
  > * All three models share the same architecture, but Helios-Mid and Helios-Distilled use a more aggressive multi-scale sampling pipeline to achieve better efficiency.
99
  > * Helios-Mid is an intermediate checkpoint generated in the process of distilling Helios-Base into Helios-Distilled, and may not meet expected quality.
 
116
  modelscope download BestWishYSH/Helios-Distilled --local-dir BestWishYSH/HeliosDistillede
117
  ```
118
 
119
+
120
  ## πŸš€ Inference
121
 
122
 
 
300
  pip install git+https://github.com/sgl-project/sglang.git
301
  ```
302
 
303
+ For example, let's take Helios-Base. **(Native Support)**
304
 
305
  <details>
306
  <summary>Click to expand the code</summary>
307
 
308
  ```bash
309
+ sglang generate \
310
+ --model-path BestWishYsh/Helios-Base \
311
+ --prompt "A cat walking on the beach at sunset, cinematic lighting, high quality" \
312
+ --negative-prompt "Bright tones, overexposed, static, blurred details, subtitles, style, works, paintings, images, static, overall gray, worst quality, low quality, JPEG compression residue, ugly, incomplete, extra fingers, poorly drawn hands, poorly drawn faces, deformed, disfigured, misshapen limbs, fused fingers, still picture, messy background, three legs, many people in the background, walking backwards" \
313
+ --height 384 \
314
+ --width 640 \
315
+ --num-frames 33 \
316
+ --num-inference-steps 50 \
317
+ --guidance-scale 5.0
318
+ ```
319
+ </details>
320
+
321
+ For example, let's take Helios-Base. **(Diffusers Backend)**
322
+
323
+ <details>
324
+ <summary>Click to expand the code</summary>
325
+
326
+ ```bash
327
+ sglang generate \
328
+ --model-path BestWishYsh/Helios-Base \
329
+ --prompt "A cat walking on the beach at sunset, cinematic lighting, high quality" \
330
+ --negative-prompt "Bright tones, overexposed, static, blurred details, subtitles, style, works, paintings, images, static, overall gray, worst quality, low quality, JPEG compression residue, ugly, incomplete, extra fingers, poorly drawn hands, poorly drawn faces, deformed, disfigured, misshapen limbs, fused fingers, still picture, messy background, three legs, many people in the background, walking backwards" \
331
+ --height 384 \
332
+ --width 640 \
333
+ --num-frames 33 \
334
+ --num-inference-steps 50 \
335
+ --guidance-scale 5.0 \
336
+ --backend diffusers
337
  ```
338
  </details>
339
 
 
349
 
350
  ```BibTeX
351
  @article{helios,
352
+ title={Helios: Real Real-Time Long Video Generation Model},
353
  author={Yuan, Shenghai and Yin, Yuanyang and Li, Zongjian and Huang, Xinwei and Yang, Xiao and Yuan, Li},
354
  journal={arXiv preprint arXiv:2603.xxxxx},
355
  year={2026}
356
  }
357
+ ```