Downloads · 30 days
10
6% of all-time downloads
SilverFan/X-Ray_Alpha-mlx-8Bit
X-Ray_Alpha-mlx-8Bit is a machine learning model from SilverFan. 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 gemma.
The Model SilverFan/X-RayAlpha-mlx-8Bit was converted to MLX format from SicariusSicariiStuff/X-RayAlpha using mlx-lm version 0.22.1.
Downloads · 30 days
10
6% of all-time downloads
All-time downloads
178
Public
Parameters
4.6B
4.9 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors4.8 GB · 99%
How the weights are stored.
U324.6B · 100%
From the Hugging Face model README
The Model SilverFan/X-Ray_Alpha-mlx-8Bit was converted to MLX format from SicariusSicariiStuff/X-Ray_Alpha using mlx-lm version 0.22.1.
pip install mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("SilverFan/X-Ray_Alpha-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)