gloryadeleru's picture
Fix README model card metadata
450ad25
metadata
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


import tensorflow as tf



model = tf.keras.models.load\_model(

    "best\_multi\_output\_model.h5",

    compile=False

)