Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
aisah1
/
TestSpaceGPT
like
0
Runtime error
App
Files
Files
Community
aisah1
commited on
Oct 8
Commit
dfc3b85
•
1 Parent(s):
d942439
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
2
3
def work(inp_text):
4
out = "hello"
5
1
import gradio
2
3
+
from transformers import AutoTokenizer
4
+
from transformers import OpenAIGPTLMHeadModel
5
+
6
def work(inp_text):
7
out = "hello"
8