Spaces:
Runtime error
Runtime error
Commit
·
9b1acb1
1
Parent(s):
ae2c547
It's a Gender classification Machine Learning problem
Browse files- app.py +13 -0
- female.jpg +0 -0
- gender_classification_model.h5 +3 -0
- male.jpg +0 -0
- requirement.txt +4 -0
app.py
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import fastai
|
3 |
+
from fastai.vision.all import *
|
4 |
+
learn=load_learner("gender_classification_model.h5")
|
5 |
+
categories=('male','female')
|
6 |
+
def classify_image(img):
|
7 |
+
pred,idx,probs=learn.predict(img)
|
8 |
+
return dict(zip(categories,map(float,probs)))
|
9 |
+
image=gr.inputs.Image(shape=(192,192))
|
10 |
+
label=gr.outputs.Label()
|
11 |
+
examples=['male.jpg','female.jpg']
|
12 |
+
intf=gr.Interface(fn=classify_image,inputs=image,outputs=label,examples=examples)
|
13 |
+
intf.launch(inline=False)
|
female.jpg
ADDED
![]() |
gender_classification_model.h5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9738f7dd09ae8e2847967dd2c879840f96babdb7daa63441b87393fc86af75b6
|
3 |
+
size 19547936
|
male.jpg
ADDED
![]() |
requirement.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
gradio
|
2 |
+
fastai
|
3 |
+
paths
|
4 |
+
tensorflow
|