EnYa32's picture
Update README.md
7a35761 verified

A newer version of the Streamlit SDK is available: 1.56.0

Upgrade
metadata
title: MushroomClassificationCNN
emoji: πŸ„
colorFrom: red
colorTo: red
sdk: streamlit
app_file: src/streamlit_app.py
pinned: false
short_description: Mushroom image classification with ResNet50
license: mit

πŸ„ Mushroom Classifier (ResNet50)

This app classifies mushroom images into 10 classes using Transfer Learning with ResNet50.

βœ… Model

  • Backbone: ResNet50 (ImageNet pretrained)
  • Input: 224 Γ— 224 RGB
  • Preprocessing: tf.keras.applications.resnet50.preprocess_input
  • Metrics used during training: accuracy and top-3 accuracy

πŸ“Œ Results (Validation)

  • Accuracy: 0.8520
  • Top-3 Accuracy: 0.9704
  • Loss: 0.6097

πŸš€ How to run locally

pip install -r requirements.txt
streamlit run app.py