If you are interested in using it, go for it
https://huggingface.co/DamarJati/plastic-recycling-codes
You can try it, it can work with CPU
pip install -q transformers
# Use a pipeline as a high-level helper
from transformers import pipeline
input_image = "https://huggingface.co/DamarJati/plastic-recycling-codes/resolve/main/example/image3.jpg"
pipe = pipeline("image-classification", model="DamarJati/plastic-recycling-codes")
pipe(input_image)