🍌 Fruit Ripeness Detection (Image + Tabular Early Fusion)

This model uses both images of bananas and simulated sensor readings (weight, moisture, days_since_harvest) to detect ripeness.

🧠 Architecture

  • CNN (2 Conv layers + Flatten) β†’ for image
  • ANN (Dense) β†’ for tabular
  • Fusion β†’ Concatenated features β†’ Dense β†’ Sigmoid (binary)

πŸ“¦ Inputs

  • πŸ–ΌοΈ 128Γ—128 RGB image
  • πŸ“‹ Tabular: weight (g), moisture (%), days since harvest

🎯 Output

  • 0 = Fresh
  • 1 = Rotten

πŸ”§ Training

  • Epochs: 15
  • Loss: binary crossentropy
  • Optimizer: Adam

πŸ” Example Usage

from tensorflow.keras.models import load_model

model = load_model("fruit_ripeness_fusion_model.h5")
Downloads last month
-
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support