File size: 638 Bytes
194bb2c 450ad25 194bb2c 450ad25 194bb2c 450ad25 194bb2c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
---
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
)
|