https://github.com/asrot0/pineaipple
https://github.com/asrot0/pineaipple
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/asrot0/pineaipple
- Owner: asRot0
- Created: 2025-01-10T14:49:50.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-03-10T14:55:47.000Z (about 2 months ago)
- Last Synced: 2025-03-10T15:43:50.624Z (about 2 months ago)
- Language: Python
- Size: 1.71 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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```