Downloads · 30 days
6
6% of all-time downloads
cnfusion/Fathom-R1-14B-mlx-8Bit
Fathom-R1-14B-mlx-8Bit is a text generation model from cnfusion. Use it when you need the model to write or continue text. It is set up for transformers. The card lists the license as mit.
The Model cnfusion/Fathom-R1-14B-mlx-8Bit was converted to MLX format from FractalAIResearch/Fathom-R1-14B using mlx-lm version 0.22.3.
Downloads · 30 days
6
6% of all-time downloads
All-time downloads
108
Public
Parameters
14.8B
15.7 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors15.7 GB · 100%
How the weights are stored.
U3214.8B · 100%
From the Hugging Face model README
The Model cnfusion/Fathom-R1-14B-mlx-8Bit was converted to MLX format from FractalAIResearch/Fathom-R1-14B using mlx-lm version 0.22.3.
pip install mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("cnfusion/Fathom-R1-14B-mlx-8Bit")
prompt="hello"
if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
messages = [{"role": "user", "content": prompt}]
prompt = tokenizer.apply_chat_template(
messages, tokenize=False, add_generation_prompt=True
)
response = generate(model, tokenizer, prompt=prompt, verbose=True)