Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -6,5 +6,5 @@ classifier = pipeline("sentiment-analysis")
|
|
6 |
def get_class(input):
|
7 |
return classifier("I've been waiting for a HuggingFace course my whole life.")
|
8 |
|
9 |
-
iface =gr.Interface(fn=get_class, inputs="text", outputs=['text'], title='hello', descriptioin='play around')
|
10 |
iface.launch()
|
|
|
6 |
def get_class(input):
|
7 |
return classifier("I've been waiting for a HuggingFace course my whole life.")
|
8 |
|
9 |
+
iface = gr.Interface(fn=get_class, inputs="text", outputs=['text'], title='hello', descriptioin='play around')
|
10 |
iface.launch()
|