재활용품 이미지를 분류하는 시각질의응답(VQA) 모델입니다. 재활용 가능 여부 판별, 개수 카운팅, 세부 종류 분류 과제를 수행하도록 파인튜닝되었습니다.
A Vision-Language model fine-tuned for recycling-waste classification. Given an image, the model answers questions about (1) whether the item is recyclable, (2) how many items are present, and (3) the specific recycling category.
QLoRA 양자화로 대형 모델을 제한된 환경에서 구동하고, 모델 스케일업·하이퍼파라미터 튜닝·이미지 전처리 개선·GRPO를 단계적으로 적용하여 정확도를 85%에서 93.3%까지 향상시켰습니다.
1# TODO: 실제 로딩/추론 코드 추가
2from transformers import AutoModel, AutoProcessor
3
4# model = AutoModel.from_pretrained("...")
5# processor = AutoProcessor.from_pretrained("...")