yanghaojin's picture
Upload folder using huggingface_hub
410eb80 verified
|
raw
history blame contribute delete
No virus
531 Bytes
metadata
license: apache-2.0
tags:
  - mlx

GreenBitAI/yi-6b-chat-w4a16g128-mlx

This quantized low-bit model was converted to MLX format from GreenBitAI/yi-6b-chat-w4a16g128. Refer to the original model card for more details on the model.

Use with mlx

pip install gbx-lm
from gbx_lm import load, generate

model, tokenizer = load("GreenBitAI/yi-6b-chat-w4a16g128-mlx")
response = generate(model, tokenizer, prompt="hello", verbose=True)