Spaces:
Sleeping
Sleeping
File size: 754 Bytes
b8aa51a |
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 |
# Image Classifier
## Overview
This module classifies whether an input image is AI-generated or a real-life photograph.
## Model
- Architecture: InceptionV3
- Type: Binary Classifier (AI vs Real)
- Format: H5 model (`latest-my_cnn_model.h5`)
## Dataset
- Total images: ~79,950
- Balanced between real and generated images
- Preprocessing: Resizing, normalization
## Code Location
- Controller: `features/image_classifier/controller.py`
- Model Loader: `features/image_classifier/model_loader.py`
- Preprocessor: `features/image_classifier/preprocess.py`
## API
- Endpoint: [ENDPOINTS](../api_endpoints.md)
- Input: Image file (PNG/JPG)
- Output: JSON response with classification result and confidence
[🔙 Back to Main README](../README.md)
|