Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sparrow8i8
/
psych
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
sparrow8i8
commited on
Dec 22, 2023
Commit
03cafd8
·
1 Parent(s):
1bbab08
Create predict
Browse files
Files changed (1)
hide
show
predict
+5
-0
predict
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
labels = learn.dls.vocab
2
+
def predict(img):
3
+
img = PILImage.create(img)
4
+
pred,pred_idx,probs = learn.predict(img)
5
+
return {labels[i]: float(probs[i]) for i in range(len(labels))}