Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
5hadytru
/
AIP_dogs
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
5hadytru
commited on
Nov 30, 2022
Commit
31688d6
·
1 Parent(s):
9705bf0
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+1
-1
app.py
CHANGED
Viewed
@@ -8,4 +8,4 @@ img = st.file_uploader("image")
8
if img:
9
img = Image.open(img)
10
label = pipe(img)
11
-
st.success(
f"Is it: {
label
}?"
)
8
if img:
9
img = Image.open(img)
10
label = pipe(img)
11
+
st.success(
str(
label)
)