Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -69,7 +69,7 @@ LFM2.5-2.6B-Base is the pre-trained text-only checkpoint, used to create all the
69
  | **[LFM2.5-2.6B](https://huggingface.co/LiquidAI/LFM2.5-2.6B)** | Original model checkpoint in native format. Best for fine-tuning or inference with Transformers, vLLM, and SGLang. |
70
  | **[LFM2.5-2.6B-GGUF](https://huggingface.co/LiquidAI/LFM2.5-2.6B-GGUF)** | Quantized format for llama.cpp and compatible tools. Optimized for CPU inference and local deployment with reduced memory usage. |
71
  | **[LFM2.5-2.6B-ONNX](https://huggingface.co/LiquidAI/LFM2.5-2.6B-ONNX)** | ONNX Runtime format for cross-platform deployment. Enables hardware-accelerated inference across diverse environments (cloud, edge, mobile). |
72
- | **[LFM2.5-2.6B-MLX](https://huggingface.co/LiquidAI/LFM2.5-2.6B-MLX)** | MLX format for Apple Silicon. Optimized for fast inference on Mac devices using the MLX framework. |
73
 
74
  This pre-trained checkpoint is only recommended for tasks that require heavy fine-tuning, like language-specific (e.g., Japanese) or domain-specific (e.g., medical) assistants, training on proprietary data, or experimenting with novel post-training approaches.
75
 
@@ -93,7 +93,7 @@ Quick start with Transformers (compatible with `transformers>=5.0.0`):
93
  ```python
94
  from transformers import AutoModelForCausalLM, AutoTokenizer, TextStreamer
95
 
96
- model_id = "LiquidAI/LFM2.5-2.6B-Base"
97
  model = AutoModelForCausalLM.from_pretrained(
98
  model_id,
99
  device_map="auto",
 
69
  | **[LFM2.5-2.6B](https://huggingface.co/LiquidAI/LFM2.5-2.6B)** | Original model checkpoint in native format. Best for fine-tuning or inference with Transformers, vLLM, and SGLang. |
70
  | **[LFM2.5-2.6B-GGUF](https://huggingface.co/LiquidAI/LFM2.5-2.6B-GGUF)** | Quantized format for llama.cpp and compatible tools. Optimized for CPU inference and local deployment with reduced memory usage. |
71
  | **[LFM2.5-2.6B-ONNX](https://huggingface.co/LiquidAI/LFM2.5-2.6B-ONNX)** | ONNX Runtime format for cross-platform deployment. Enables hardware-accelerated inference across diverse environments (cloud, edge, mobile). |
72
+ | **[LFM2.5-2.6B-MLX](https://huggingface.co/LiquidAI/LFM2.5-2.6B-MLX-8bit)** | MLX format for Apple Silicon. Optimized for fast inference on Mac devices using the MLX framework. |
73
 
74
  This pre-trained checkpoint is only recommended for tasks that require heavy fine-tuning, like language-specific (e.g., Japanese) or domain-specific (e.g., medical) assistants, training on proprietary data, or experimenting with novel post-training approaches.
75
 
 
93
  ```python
94
  from transformers import AutoModelForCausalLM, AutoTokenizer, TextStreamer
95
 
96
+ model_id = "lq-preview/LFM2.5-2.6B-Base"
97
  model = AutoModelForCausalLM.from_pretrained(
98
  model_id,
99
  device_map="auto",