This is a fine-tuned version of Qwen-VL model for food waste detection and analysis. The model has been trained using LoRA fine-tuning on a custom food waste dataset.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2import torch
3
4model_id = "aihpi/food-waste-vlm"
5model = AutoModelForCausalLM.from_pretrained(model_id)
6tokenizer = AutoTokenizer.from_pretrained(model_id)
The model was fine-tuned using LoRA on a custom food waste dataset. The training was conducted using the LLaMA-Factory framework.
This model is licensed under the Apache 2.0 License.