Views
No views yet
dataset/: Directory containing the data set used in model training.model/: Directory containing the trained model.01_Preprocessing-Data.ipynb: Notebook for data preprocessing, including dataset download, extraction, and data augmentation.02_Train-Model.ipynb: Notebook for training the MobileNetV2 model with the preprocessed data.03_Quantization_model.ipynb: Notebook for model quantization to optimize performance.requirements.txt: List of Python dependencies required to run this project.requirements.txt:pip install -r requirements.txt01_Preprocessing-Data.ipynb notebook to download and prepare the dataset. This notebook performs data augmentation to enhance model performance.02_Train-Model.ipynb to train the MobileNetV2 model with the processed data. This notebook includes steps for training and evaluating the model.03_Quantization_model.ipynb. This step is optional but recommended for improving model efficiency.1git clone https://huggingface.co/ahmzakif/TrashNet-Classification
2cd TrashNet-Classification1python -m venv venv
2source venv/bin/activate # On Windows: venv\Scripts\activatepip install -r requirements.txt