Spaces:
Running
on
Zero
Running
on
Zero
Alexander Hux
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -3,11 +3,11 @@ import os
|
|
3 |
import spaces
|
4 |
import sys
|
5 |
from copy import deepcopy
|
|
|
6 |
sys.path.append('./VADER-VideoCrafter/scripts/main')
|
7 |
sys.path.append('./VADER-VideoCrafter/scripts')
|
8 |
sys.path.append('./VADER-VideoCrafter')
|
9 |
|
10 |
-
|
11 |
from train_t2v_lora import main_fn, setup_model
|
12 |
|
13 |
examples = [
|
@@ -112,7 +112,7 @@ with gr.Blocks(css=custom_css) as demo:
|
|
112 |
gr.HTML(
|
113 |
"""
|
114 |
<h1 style='text-align: center; font-size: 3.2em; margin-bottom: 0.5em; font-family: Arial, sans-serif; margin: 20px;'>
|
115 |
-
|
116 |
</h1>
|
117 |
"""
|
118 |
)
|
@@ -131,16 +131,10 @@ with gr.Blocks(css=custom_css) as demo:
|
|
131 |
</style>
|
132 |
<body>
|
133 |
<div style="font-size: 1.4em; margin-bottom: 0.5em; ">
|
134 |
-
<a href="https://
|
135 |
-
<a href="https://russellmendonca.github.io/">Russell Mendonca</a><sup>*</sup>
|
136 |
-
<a href="mailto: [email protected]">Zheyang Qin</a><sup>*</sup>
|
137 |
-
<a href="https://www.cs.cmu.edu/~katef/">Katerina Fragkiadaki</a><sup></sup>
|
138 |
-
<a href="https://www.cs.cmu.edu/~dpathak/">Deepak Pathak</a><sup></sup>
|
139 |
-
|
140 |
-
|
141 |
</div>
|
142 |
<div style="font-size: 1.3em; font-style: italic;">
|
143 |
-
|
144 |
</div>
|
145 |
</body>
|
146 |
"""
|
@@ -250,4 +244,4 @@ with gr.Blocks(css=custom_css) as demo:
|
|
250 |
cache_examples="lazy",
|
251 |
)
|
252 |
|
253 |
-
demo.launch(share=True)
|
|
|
3 |
import spaces
|
4 |
import sys
|
5 |
from copy import deepcopy
|
6 |
+
|
7 |
sys.path.append('./VADER-VideoCrafter/scripts/main')
|
8 |
sys.path.append('./VADER-VideoCrafter/scripts')
|
9 |
sys.path.append('./VADER-VideoCrafter')
|
10 |
|
|
|
11 |
from train_t2v_lora import main_fn, setup_model
|
12 |
|
13 |
examples = [
|
|
|
112 |
gr.HTML(
|
113 |
"""
|
114 |
<h1 style='text-align: center; font-size: 3.2em; margin-bottom: 0.5em; font-family: Arial, sans-serif; margin: 20px;'>
|
115 |
+
ZEN-Diffusion
|
116 |
</h1>
|
117 |
"""
|
118 |
)
|
|
|
131 |
</style>
|
132 |
<body>
|
133 |
<div style="font-size: 1.4em; margin-bottom: 0.5em; ">
|
134 |
+
<a href="https://zen.com">ZEN</a><sup>*</sup>
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
</div>
|
136 |
<div style="font-size: 1.3em; font-style: italic;">
|
137 |
+
Creating short 2-3 second videos from text, completely open source from ZEN.
|
138 |
</div>
|
139 |
</body>
|
140 |
"""
|
|
|
244 |
cache_examples="lazy",
|
245 |
)
|
246 |
|
247 |
+
demo.launch(share=True)
|