Views
No views yet
lang-uk/dragoman adapter fused into the mistralai/Mistral-7b-v0.1
base model and quantized into 4 bits 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("lang-uk/dragoman-4bit")
4response = generate(model, tokenizer, prompt="[INST] who holds this neighborhood? [/INST]", verbose=True)python -m mlx_lm.generate --model lang-uk/dragoman-4bit --prompt '[INST] who holds this neighborhood? [/INST]' --temp 0 --max-tokens 100