You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Web Application for Age and Sex Prediction using Flask
2
+
3
+
### Goal 🎯
4
+
The main goal is to develop a user-friendly web application that predicts age and gender from human images using deep learning models. This application will allow users to upload images and receive predictions.
5
+
6
+
### Model used for the Web App 🧮
7
+
The backend of this web application utilizes Convolutional Neural Networks (CNNs) for age and gender prediction. It has been trained on [UTKFace Dataset](https://www.kaggle.com/datasets/jangedoo/utkface-new) dataset that contains over 20000 facial images for 30 epochs.
8
+
9
+
Key Details:
10
+
***Model Architecture:** It utilizes Convolutional Neural Network.
11
+
***Data Processing**: Input images are converted to Grayscale images, resized to 128x128 pixels, and normalized.
12
+
***Frameworks and Libraries**: The model is implemented using TensorFlow and Keras for deep learning tasks, and OpenCV for image processing.
13
+
***Model Training**: The model uses categorical cross-entropy loss and Mean Average Error for gender and age respectively and the Adam optimizer. And sigmoid and ReLU activation functions are used for gender and age respectively. It has been trained for 30 epochs.
14
+
***Deployment**: The model is deployed using Flask, providing a web application to interact with the deep learning model efficiently.
15
+
This setup enhances user interface allowing real-time predictions.
0 commit comments