Views
No views yet
stabilityai/stable-code-instruct-3b using mlx-lm version 0.4.0.
Refer to the original model card for more details on the model.pip install mlx-lm1from mlx_lm import load, generate
2
3model, tokenizer = load("mlx-community/stable-code-instruct-3b-4bit")
4response = generate(model, tokenizer, prompt="hello", verbose=True)