Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
peterkros/videomatting
sanghan
/
videomatting
like
8
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
sanghan
commited on
Oct 31, 2023
Commit
8f9ea32
·
1 Parent(s):
1f2925c
force gradio to update
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
CHANGED
Viewed
@@ -1,3 +1,10 @@
1
import torch
2
import gradio as gr
3
1
+
import os
2
+
3
+
os.system("pip install gradio --upgrade")
4
+
os.system("pip install torch")
5
+
os.system("pip freeze")
6
+
7
+
8
import torch
9
import gradio as gr
10