Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
xinjiboy1004
/
tablegpt_test
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
xinjiboy1004
commited on
22 days ago
Commit
174e5d7
·
verified
·
1 Parent(s):
02308ef
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+3
-0
app.py
CHANGED
Viewed
@@ -1,5 +1,8 @@
1
import gradio as gr
2
3
def greet(name):
4
f = hello()
5
return f
1
import gradio as gr
2
3
+
import os
4
+
os.system("pip install transformers>=4.37.0")
5
+
6
def greet(name):
7
f = hello()
8
return f