Downloads · 30 days
17
8% of all-time downloads
mlx-community/Olmo-3-7B-RLZero-Code-bfloat16
Olmo-3-7B-RLZero-Code-bfloat16 is a text generation model from mlx-community. Use it when you need the model to write or continue text. It is set up for mlx. The card lists the license as apache-2.0.
This model mlx-community/Olmo-3-7B-RLZero-Code-bfloat16 was converted to MLX format from allenai/Olmo-3-7B-RLZero-Code using mlx-lm version 0.28.3.
Downloads · 30 days
17
8% of all-time downloads
All-time downloads
217
Public
Parameters
7.3B
14.6 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors14.6 GB · 100%
From the Hugging Face model README
This model mlx-community/Olmo-3-7B-RLZero-Code-bfloat16 was converted to MLX format from allenai/Olmo-3-7B-RLZero-Code using mlx-lm version 0.28.3.
pip install mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("mlx-community/Olmo-3-7B-RLZero-Code-bfloat16")
prompt = "hello"
if tokenizer.chat_template is not None:
messages = [{"role": "user", "content": prompt}]
prompt = tokenizer.apply_chat_template(
messages, add_generation_prompt=True
)
response = generate(model, tokenizer, prompt=prompt, verbose=True)