Sanshruth commited on
Commit
46d44b1
1 Parent(s): 3d30297

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -16
app.py CHANGED
@@ -270,22 +270,14 @@ iface = gr.Interface(
270
  css="allow",
271
  allow_flagging="never",
272
  #######
273
- description="""
274
- <a href="https://colab.research.google.com/drive/1ivRYvTaX90PRghQIqAdOyEawkY0YLefa?authuser=0#scrollTo=WE7aPQ0t1hd2">
275
- <img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/>
276
- </a>
277
- <a href="https://huggingface.co/spaces/your-username/your-space-name?duplicate=true">
278
- <img src="https://huggingface.co/datasets/huggingface/badges/raw/main/clone-space-lg.svg" alt="Clone Space"/>
279
- </a>
280
- <br><br>
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")