An open API service indexing awesome lists of open source software.

https://github.com/asrot0/pineaipple


https://github.com/asrot0/pineaipple

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# PineAIpple

### Project Structure
```
fruit-classification/

├── data/
│ ├── train/ # Training images
│ ├── val/ # Validation images
│ ├── test/ # Test images

├── notebooks/
│ └── fruit.ipynb

├── src/
│ ├── data_preprocessing.py # Data augmentation and preprocessing
│ ├── model.py # Define the CNN model
│ ├── train.py # Train the model
│ ├── evaluate.py # Evaluate the model

├── models/
│ └── fruit_cnn_model.h5

├── reports/
│ └── performance_metrics.txt

├── app.py
├── requirements.txt
└── README.md

```