Instructions to use TencentARC/SEED-Story with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- SEED-Story
How to use TencentARC/SEED-Story with SEED-Story:
# seed_story_cfg_path refers to 'https://github.com/TencentARC/SEED-Story/blob/master/configs/clm_models/agent_7b_sft.yaml' # llm_cfg_path refers to 'https://github.com/TencentARC/SEED-Story/blob/master/configs/clm_models/llama2chat7b_lora.yaml' from omegaconf import OmegaConf import hydra # load Llama2 llm_cfg = OmegaConf.load(llm_cfg_path) llm = hydra.utils.instantiate(llm_cfg, torch_dtype="fp16") # initialize seed_story seed_story_cfg = OmegaConf.load(seed_story_cfg_path) seed_story = hydra.utils.instantiate(seed_story_cfg, llm=llm)
- Notebooks
- Google Colab
- Kaggle
Merge branch 'main' of hf.co:TencentARC/SEED-Story
Browse files
README.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# SEED-Story
|
| 2 |
[](https://arxiv.org/abs/2407.08683)
|
| 3 |
[](https://huggingface.co/datasets/TencentARC/StoryStream)
|
|
@@ -21,13 +32,11 @@ python3 src/tools/reload_qwen_vit.py
|
|
| 21 |
## Citation
|
| 22 |
If you find the work helpful, please consider citing:
|
| 23 |
```bash
|
| 24 |
-
@
|
| 25 |
title={SEED-Story: Multimodal Long Story Generation with Large Language Model},
|
| 26 |
author={Shuai Yang and Yuying Ge and Yang Li and Yukang Chen and Yixiao Ge and Ying Shan and Yingcong Chen},
|
| 27 |
year={2024},
|
| 28 |
-
|
| 29 |
-
archivePrefix={arXiv},
|
| 30 |
-
primaryClass={cs.CV},
|
| 31 |
url={https://arxiv.org/abs/2407.08683},
|
| 32 |
}
|
| 33 |
```
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
license_name: seed-story-license
|
| 4 |
+
license_link: https://huggingface.co/TencentARC/SEED-Story/blob/main/License_Seed-Story.txt
|
| 5 |
+
datasets:
|
| 6 |
+
- TencentARC/StoryStream
|
| 7 |
+
language:
|
| 8 |
+
- en
|
| 9 |
+
library_name: seed-story
|
| 10 |
+
pipeline_tag: text-to-image
|
| 11 |
+
---
|
| 12 |
# SEED-Story
|
| 13 |
[](https://arxiv.org/abs/2407.08683)
|
| 14 |
[](https://huggingface.co/datasets/TencentARC/StoryStream)
|
|
|
|
| 32 |
## Citation
|
| 33 |
If you find the work helpful, please consider citing:
|
| 34 |
```bash
|
| 35 |
+
@article{yang2024seedstory,
|
| 36 |
title={SEED-Story: Multimodal Long Story Generation with Large Language Model},
|
| 37 |
author={Shuai Yang and Yuying Ge and Yang Li and Yukang Chen and Yixiao Ge and Ying Shan and Yingcong Chen},
|
| 38 |
year={2024},
|
| 39 |
+
journal={arXiv preprint arXiv:2407.08683},
|
|
|
|
|
|
|
| 40 |
url={https://arxiv.org/abs/2407.08683},
|
| 41 |
}
|
| 42 |
```
|