VOOZH about

URL: https://huggingface.co/LiquidAI/LFM2.5-1.2B-Instruct-MLX-8bit

⇱ LiquidAI/LFM2.5-1.2B-Instruct-MLX-8bit · Hugging Face



LFM2.5-1.2B-Instruct-8bit

MLX export of LFM2.5-1.2B-Instruct for Apple Silicon inference.

Model Details

Property Value
Parameters 1.2B
Precision 8-bit
Group Size 64
Context Length 128K

Recommended Sampling Parameters

Parameter Value
temperature 0.1
top_k 50
top_p 0.1
repetition_penalty 1.05
max_tokens 512

Use with mlx

pip install mlx-lm
from mlx_lm import load, generate
from mlx_lm.sample_utils import make_sampler, make_logits_processors

model, tokenizer = load("LiquidAI/LFM2.5-1.2B-Instruct-8bit")

prompt = "What is the capital of France?"

if tokenizer.chat_template is not None:
 messages = [{"role": "user", "content": prompt}]
 prompt = tokenizer.apply_chat_template(
 messages, tokenize=False, add_generation_prompt=True
 )

sampler = make_sampler(temp=0.1, top_k=50, top_p=0.1)
logits_processors = make_logits_processors(repetition_penalty=1.05)

response = generate(
 model,
 tokenizer,
 prompt=prompt,
 max_tokens=512,
 sampler=sampler,
 logits_processors=logits_processors,
 verbose=True,
)

License

This model is released under the LFM 1.0 License.

Downloads last month
829
Safetensors
Model size
0.3B params
Tensor type
BF16
·
U32
·
MLX
Hardware compatibility
Log In to add your hardware

8-bit

Model tree for LiquidAI/LFM2.5-1.2B-Instruct-MLX-8bit

Quantized
(59)
this model