Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #704 coffee Bean Classification #708

Merged
merged 3 commits into from
Nov 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions Prediction Models/Coffee_bean_Classification/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Coffee Bean Classification with Deep Learning

This project leverages deep learning to classify coffee bean types based on visual features. By training a convolutional neural network (CNN) model on labeled coffee bean images, we aim to create a system capable of identifying different types of coffee beans automatically.

## Table of Contents

- [Introduction](#introduction)
- [Project Structure](#project-structure)
- [Dataset](#dataset)
- [Model](#model)
- [Results](#results)

## Introduction

This project focuses on image classification using deep learning techniques to differentiate between various coffee bean types. This is particularly useful in industries that require high-quality control and consistent coffee bean quality.

## Project Structure

```plaintext
├── data/ # Dataset folder containing images
├── notebooks/ # Jupyter notebooks for experimentation
├── src/ # Source files for model training and evaluation
├── models/ # Saved models and checkpoints
├── results/ # Evaluation results and metrics
└── README.md # Project documentation
```

## Dataset
The dataset contains images of coffee beans from different types. These images are preprocessed for uniformity, and are then split into training, validation, and testing sets.

## Model
We implemented a convolutional neural network (CNN) model for image classification. Key layers include:

- Convolutional layers for feature extraction
- Pooling layers to reduce dimensionality
- Dense layers to classify images based on extracted features

## Results
The model's performance is evaluated using metrics such as accuracy, precision, recall, and F1-score on the test dataset. The model achieves satisfactory results in distinguishing between coffee bean types.





Large diffs are not rendered by default.

Loading