Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hi9
/
QA_testing
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
walter1
commited on
Nov 16, 2021
Commit
3962a20
·
1 Parent(s):
8a0aae1
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import gradio as gr
2
+
from transformers import pipeline
3
+
from datetime import datetime
4
+
5
+
6
+
7
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
8
+
iface.launch()