-
Notifications
You must be signed in to change notification settings - Fork 29.5k
deci gguf support #38669
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
base: main
Are you sure you want to change the base?
deci gguf support #38669
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM thanks for adding this 🔥 ! can you please add some tests in tests/quantization/ggml/ ?
try: | ||
original_model = AutoModelForCausalLM.from_pretrained( | ||
original_model_id, | ||
torch_dtype=torch.float16, | ||
trust_remote_code=True, | ||
device_map="auto", | ||
) | ||
except Exception as e: | ||
self.skipTest(f"Original Deci model not available for comparison: {e}") | ||
return |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need this try: ... excetpt: ....
statement in test? Should't the test failed if it encounter an Exception?
What does this PR do?
GGUF support for deci
Fixes #37736
Before submitting
Who can review?
@MekkCyber