Srihari1611 commited on
Commit
9b1acb1
·
1 Parent(s): ae2c547

It's a Gender classification Machine Learning problem

Browse files
Files changed (5) hide show
  1. app.py +13 -0
  2. female.jpg +0 -0
  3. gender_classification_model.h5 +3 -0
  4. male.jpg +0 -0
  5. 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