bobtk's picture
Upload folder using huggingface_hub (#1)
b6617da verified
|
raw
history blame
No virus
780 Bytes
metadata
language:
  - ja
  - en
license: llama3.1
tags:
  - japanese
  - llama
  - llama-3
  - mlx
pipeline_tag: text-generation
inference: false

mlx-community/Llama-3.1-70B-Japanese-Instruct-2407-8bit

The Model mlx-community/Llama-3.1-70B-Japanese-Instruct-2407-8bit was converted to MLX format from cyberagent/Llama-3.1-70B-Japanese-Instruct-2407 using mlx-lm version 0.16.1.

Use with mlx

pip install mlx-lm
from mlx_lm import load, generate

model, tokenizer = load("mlx-community/Llama-3.1-70B-Japanese-Instruct-2407-8bit")
response = generate(model, tokenizer, prompt="hello", verbose=True)