Views
No views yet
1from transformers import AutoProcessor, Qwen3VLForConditionalGeneration
2
3repo = "ANke121/NAS-PO-DAPO-Qwen3-VL-8B"
4model = Qwen3VLForConditionalGeneration.from_pretrained(repo, torch_dtype="auto", device_map="auto")
5processor = AutoProcessor.from_pretrained(repo)