Daemontatox commited on
Commit
6aef697
·
verified ·
1 Parent(s): e1e01d4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -18,7 +18,7 @@ logging.basicConfig(level=logging.INFO)
18
  logger = logging.getLogger(__name__)
19
 
20
  # Load model and processor
21
- ckpt ="Qwen/Qwen2-VL-72B-Instruct-AWQ"
22
  model = Qwen2VLForConditionalGeneration.from_pretrained(ckpt, torch_dtype=torch.bfloat16,trust_remote_code=True).to("cuda")
23
  processor = AutoProcessor.from_pretrained(ckpt,trust_remote_code=True)
24
 
 
18
  logger = logging.getLogger(__name__)
19
 
20
  # Load model and processor
21
+ ckpt ="Qwen/Qwen2-VL-7B-Instruct-AWQ"
22
  model = Qwen2VLForConditionalGeneration.from_pretrained(ckpt, torch_dtype=torch.bfloat16,trust_remote_code=True).to("cuda")
23
  processor = AutoProcessor.from_pretrained(ckpt,trust_remote_code=True)
24