Downloads · 30 days
0
dk00069/WasteClassifier01
WasteClassifier01 is a image classification model from dk00069. Use it when you need a label for an image. The card lists the license as mit.
A CNN model that classifies waste images into categories like plastic, paper, metal, glass, organic, etc.
Downloads · 30 days
0
Access
Public
Updated Mar 11, 2026
Repo size
17.3 MB
Likes
0
Public
Click a slice to open those files.
.h517.3 MB · 100%
From the Hugging Face model README
A CNN model that classifies waste images into categories like plastic, paper, metal, glass, organic, etc.
.h5```python from tensorflow import keras import numpy as np from PIL import Image
model = keras.models.load_model("waste_classifier_final.h5")
img = Image.open("your_image.jpg").resize((224, 224)) img_array = np.expand_dims(np.array(img) / 255.0, axis=0)
prediction = model.predict(img_array) print("Predicted class:", np.argmax(prediction)) ```
dk00069