Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
manvik28
/
SEC_Sentiment_Analysis
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
bcde037
SEC_Sentiment_Analysis
/
app.py
manvik28
Update app.py
bcde037
almost 3 years ago
raw
Copy download link
history
blame
Safe
212 Bytes
import
gradio
def
my_inference_function
(
name
):
return
"Hello "
+ name +
"!"
gradio_interface = gradio.Interface(
fn = my_inference_function,
inputs =
"text"
,
outputs =
"text"
)
gradio_interface.launch()