File size: 1,103 Bytes
b9b278d 7d294d4 b9b278d 7d294d4 4744a8c 125af26 |
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 |
---
license: mit
base_model: google/mobilenet_v2_1.0_224
tags:
- medical
- glaucoma
- eye-disease
- image-classification
library_name: transformers.js
pipeline_tag: image-classification
---
# Glaucoma Detection Model
This model detects glaucoma from fundus (retinal) images using deep learning.
## Model Details
- **Model Type**: Image Classification (Binary)
- **Base Architecture**: MobileNetV2
- **Input**: Fundus images (224x224 pixels)
- **Output**: Binary classification (Glaucoma/No Glaucoma)
- **Framework**: TensorFlow → ONNX
## Usage with Transformers.js
```javascript
import { pipeline } from '@huggingface/transformers';
// Create image classification pipeline
const classifier = await pipeline(
'image-classification',
'tonyanyanwu5448/nzube-glaucoma-detection-model'
);
// Classify fundus image
const result = await classifier('path/to/fundus-image.jpg');
console.log(result);
Classes
Class 0: No Glaucoma
Class 1: Glaucoma
Medical Disclaimer:
This model is for research purposes only and should not be used for medical diagnosis without professional medical consultation.
|