Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(autogptq): do not use_triton with qwen-vl #1985

Merged
merged 9 commits into from
Apr 10, 2024
1 change: 0 additions & 1 deletion backend/python/autogptq/autogptq.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ def LoadModel(self, request, context):
self.model_name = "Qwen-VL-Chat"
model = AutoModelForCausalLM.from_pretrained(model_path,
trust_remote_code=request.TrustRemoteCode,
use_triton=request.UseTriton,
device_map="auto").eval()
else:
model = AutoGPTQForCausalLM.from_quantized(model_path,
Expand Down
Loading