Downloads · 30 days
52
22% of all-time downloads
mlx-community/VulnLLM-R-7B-6bit
VulnLLM-R-7B-6bit 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/VulnLLM-R-7B-6bit was converted to MLX format from UCSB-SURFI/VulnLLM-R-7B using mlx-lm version 0.30.0.
Downloads · 30 days
52
22% of all-time downloads
All-time downloads
241
Public
Parameters
7.6B
6.2 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors6.2 GB · 100%
How the weights are stored.
U327.6B · 100%
From the Hugging Face model README
This model mlx-community/VulnLLM-R-7B-6bit was converted to MLX format from UCSB-SURFI/VulnLLM-R-7B using mlx-lm version 0.30.0.
pip install mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("mlx-community/VulnLLM-R-7B-6bit")
prompt = "hello"
if tokenizer.chat_template is not None:
messages = [{"role": "user", "content": prompt}]
prompt = tokenizer.apply_chat_template(
messages, add_generation_prompt=True, return_dict=False,
)
response = generate(model, tokenizer, prompt=prompt, verbose=True)