Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Sevenlee
/
basic-gpt
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c8080dc
basic-gpt
/
app.py
li
Update app.py
c8080dc
over 2 years ago
raw
Copy download link
history
blame
Safe
195 Bytes
import
gradio
as
gr
description =
"GPT ็้ผ"
examples = [[
"I am king."
]]
demo = gr.Interface.load(
"models/bert-base-uncased"
, description=description, examples=examples)
demo.launch(share=
True
)