Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Anthos23
/
hummus
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Anthos23
commited on
Feb 23, 2022
Commit
5d26f3a
·
1 Parent(s):
870e8c5
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+2
-1
app.py
CHANGED
Viewed
@@ -10,4 +10,5 @@ text = st.text_area(f'Ciao! This app uses {model_name}.\nEnter your text to tes
10
11
if text:
12
out = pipe(text)
13
-
st.json(out)
10
11
if text:
12
out = pipe(text)
13
+
14
+
st.json(out[0])