Downloads · 30 days
14
10% of all-time downloads
jc2375/transcript-to-note-mlx-6Bit
transcript-to-note-mlx-6Bit is a image-text-to-text model from jc2375. Use it for the image-text-to-text task on the model card, and read the license before you ship it in a product. It is set up for transformers.
The Model jc2375/transcript-to-note-mlx-6Bit was converted to MLX format from cmcmaster/transcript-to-note using mlx-lm version 0.31.2.
Downloads · 30 days
14
10% of all-time downloads
All-time downloads
138
Public
Parameters
3.9B
3.4 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors3.4 GB · 99%
How the weights are stored.
U323.9B · 100%
From the Hugging Face model README
The Model jc2375/transcript-to-note-mlx-6Bit was converted to MLX format from cmcmaster/transcript-to-note using mlx-lm version 0.31.2.
pip install mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("jc2375/transcript-to-note-mlx-6Bit")
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)