Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -270,22 +270,14 @@ iface = gr.Interface(
|
|
270 |
css="allow",
|
271 |
allow_flagging="never",
|
272 |
#######
|
273 |
-
description="""
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
Generate artistic videos using VQGAN-CLIP.
|
282 |
-
Enter your prompts separated by commas and adjust the number of iterations.
|
283 |
-
The model will generate a morphing video based on your inputs.
|
284 |
-
<br><br>
|
285 |
-
<b>Note:</b> This application requires GPU access. Please either:
|
286 |
-
<br>1. Use the Colab notebook (click the Colab badge above) with GPU runtime
|
287 |
-
<br>2. Clone this space (click Clone Space badge) and enable GPU in your personal copy"""
|
288 |
-
)
|
289 |
|
290 |
if __name__ == "__main__":
|
291 |
print("Checking GPU availability:", "GPU AVAILABLE" if torch.cuda.is_available() else "NO GPU FOUND")
|
|
|
270 |
css="allow",
|
271 |
allow_flagging="never",
|
272 |
#######
|
273 |
+
description = """
|
274 |
+
Generate artistic videos using VQGAN-CLIP. Enter your prompts separated by commas and adjust the number of iterations. The model will generate a morphing video based on your inputs.
|
275 |
+
|
276 |
+
Note: This application requires GPU access. Please either:
|
277 |
+
1. Use the Colab notebook available at https://github.com/SanshruthR/VQGAN-CLIP
|
278 |
+
2. Clone this space and enable GPU in your personal copy.
|
279 |
+
"""
|
280 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
|
282 |
if __name__ == "__main__":
|
283 |
print("Checking GPU availability:", "GPU AVAILABLE" if torch.cuda.is_available() else "NO GPU FOUND")
|