Downloads · 30 days
11
5% of all-time downloads
mlx-community/AMD-Llama-135m-code-float32
AMD-Llama-135m-code-float32 is a machine learning model from mlx-community. Use it for the machine learning task on the model card, and read the license before you ship it in a product. It is set up for mlx. The card lists the license as apache-2.0.
The Model mlx-community/AMD-Llama-135m-code-float32 was converted to MLX format from amd/AMD-Llama-135m-code using mlx-lm version 0.18.2.
Downloads · 30 days
11
5% of all-time downloads
All-time downloads
218
Public
Parameters
134M
537 MB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors536 MB · 99%
From the Hugging Face model README
The Model mlx-community/AMD-Llama-135m-code-float32 was converted to MLX format from amd/AMD-Llama-135m-code using mlx-lm version 0.18.2.
pip install mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("mlx-community/AMD-Llama-135m-code-float32")
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)