Instructions to use sumitt8085/oct_classifier with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Keras
How to use sumitt8085/oct_classifier with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://sumitt8085/oct_classifier") - Notebooks
- Google Colab
- Kaggle
OCT Image Classifier
A deep learning model for classifying OCT (Optical Coherence Tomography) images into four categories:
- CNV (Choroidal Neovascularization)
- DRUSEN
- NORMAL
- DME (Diabetic Macular Edema)
Model Details
- Framework: Keras/TensorFlow
- Input: 224x224 RGB images (adjust if different)
- Output: 4-class probabilities
- Classes: ['CNV', 'DRUSEN', 'NORMAL', 'DME']
Usage
from transformers import pipeline
classifier = pipeline("image-classification", "sumitt8085/oct_classifier")
result = classifier("oct_image.jpg")
- Downloads last month
- -