| license: mit | |
| tags: | |
| - computer-vision | |
| - deep-learning | |
| - cnn | |
| - gender-classification | |
| - image-classification | |
| framework: tensorflow | |
| library_name: keras | |
| model_type: cnn | |
| datasets: | |
| - custom | |
| \# CNN Gender \& Age Classifier | |
| This repository contains a trained \*\*CNN-based TensorFlow/Keras model\*\*. | |
| \## Tasks | |
| \- Gender classification (Male / Female) | |
| \- Age range prediction from facial images | |
| \## Model File | |
| \- `best\_multi\_output\_model.h5` | |
| \## How to Load the Model | |
| ```python | |
| import tensorflow as tf | |
| model = tf.keras.models.load\_model( | |
| "best\_multi\_output\_model.h5", | |
| compile=False | |
| ) | |