luisotorres commited on
Commit
c1eaa34
·
1 Parent(s): 91472ad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -44,9 +44,10 @@ iface = gr.Interface(
44
  inputs=gr.inputs.Image(shape=(218, 178)),
45
  outputs="text",
46
  title = 'Image Recognition - Gender Detection with InceptionV3',
47
- description="""This model was trained to predict the gender of a person from a photo. It's based on a model trained in this
 
48
  <a href='https://www.kaggle.com/code/lusfernandotorres/gender-recognition-inceptionv3'>Kaggle notebook</a>. <br>
49
- Upload a photo to see the model's prediction!"""
50
  )
51
 
52
  iface.launch()
 
44
  inputs=gr.inputs.Image(shape=(218, 178)),
45
  outputs="text",
46
  title = 'Image Recognition - Gender Detection with InceptionV3',
47
+ description="""<br> This model was trained to predict the gender of a person based on a photo. <br>
48
+ The training of this model can be seen on this
49
  <a href='https://www.kaggle.com/code/lusfernandotorres/gender-recognition-inceptionv3'>Kaggle notebook</a>. <br>
50
+ <br>Upload a photo to see the how the model predicts the gender of the person on it!"""
51
  )
52
 
53
  iface.launch()