Update README.md
Browse files
README.md
CHANGED
@@ -21,7 +21,7 @@ This model repo is for [AnyStory](https://github.com/junjiehe96/AnyStory).
|
|
21 |
|
22 |
</div>
|
23 |
|
24 |
-
|
25 |
|
26 |
AnyStory is a unified approach for personalized subject generation. It not only achieves high-fidelity personalization for single subjects, but also for multiple subjects, without sacrificing subject fidelity.
|
27 |
|
@@ -90,6 +90,7 @@ from storyboard import StoryboardPipeline
|
|
90 |
|
91 |
storyboard_pipe = StoryboardPipeline()
|
92 |
|
|
|
93 |
script_dict = json.load(open("assets/scripts/013420.json"))
|
94 |
print(script_dict)
|
95 |
results = storyboard_pipe(script_dict, style_name="Comic book")
|
@@ -97,6 +98,7 @@ for key, result in results.items():
|
|
97 |
result.save(f"output_1_{key}.png")
|
98 |
|
99 |
# 狮子王辛巴成长
|
|
|
100 |
script_dict = json.load(open("assets/scripts/014933.json"))
|
101 |
print(script_dict)
|
102 |
results = storyboard_pipe(script_dict, style_name="Japanese Anime")
|
@@ -106,17 +108,19 @@ for key, result in results.items():
|
|
106 |
|
107 |
Example output:
|
108 |
|
109 |
-
|
110 |
-
|
111 |
|
112 |
## Applications
|
113 |
|
114 |
Intelligent creation of AI story pictures with [Qwen](https://github.com/QwenLM/Qwen3) Agent (please refer to `storyboard.py`)
|
115 |
|
116 |
-
|
117 |
|
118 |
AI Animation Video Production with [Wan](https://github.com/Wan-Video/Wan2.1) Image-to-Video
|
119 |
|
|
|
|
|
120 |
## **Acknowledgements**
|
121 |
|
122 |
This code is built on [diffusers](https://github.com/huggingface/diffusers)
|
|
|
21 |
|
22 |
</div>
|
23 |
|
24 |
+
<img src='assets/examples-sdxl.jpg'>
|
25 |
|
26 |
AnyStory is a unified approach for personalized subject generation. It not only achieves high-fidelity personalization for single subjects, but also for multiple subjects, without sacrificing subject fidelity.
|
27 |
|
|
|
90 |
|
91 |
storyboard_pipe = StoryboardPipeline()
|
92 |
|
93 |
+
storyboard_pipe.new_story()
|
94 |
script_dict = json.load(open("assets/scripts/013420.json"))
|
95 |
print(script_dict)
|
96 |
results = storyboard_pipe(script_dict, style_name="Comic book")
|
|
|
98 |
result.save(f"output_1_{key}.png")
|
99 |
|
100 |
# 狮子王辛巴成长
|
101 |
+
storyboard_pipe.new_story()
|
102 |
script_dict = json.load(open("assets/scripts/014933.json"))
|
103 |
print(script_dict)
|
104 |
results = storyboard_pipe(script_dict, style_name="Japanese Anime")
|
|
|
108 |
|
109 |
Example output:
|
110 |
|
111 |
+
<img src='assets/scripts/013420_result.jpg'>
|
112 |
+
<img src='assets/scripts/014933_result.jpg'>
|
113 |
|
114 |
## Applications
|
115 |
|
116 |
Intelligent creation of AI story pictures with [Qwen](https://github.com/QwenLM/Qwen3) Agent (please refer to `storyboard.py`)
|
117 |
|
118 |
+
<img src='assets/storyboard_en.png'>
|
119 |
|
120 |
AI Animation Video Production with [Wan](https://github.com/Wan-Video/Wan2.1) Image-to-Video
|
121 |
|
122 |
+
(please refer to [`assets/example_videos`](assets/example_videos))
|
123 |
+
|
124 |
## **Acknowledgements**
|
125 |
|
126 |
This code is built on [diffusers](https://github.com/huggingface/diffusers)
|