Skip to content

Releases: ml-explore/mlx-lm

v0.30.7

12 Feb 18:40
1974376

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.30.6...v0.30.7

v0.30.6

04 Feb 21:27
f18526f

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.30.5...v0.30.6

v0.30.5

25 Jan 15:29
beceb5c

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.30.4...v0.30.5

v0.30.4

19 Jan 16:13
0222860

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.30.2...v0.30.4

v0.30.2

06 Jan 02:32
94497d5

Choose a tag to compare

What's Changed

Full Changelog: v0.30.1...v0.30.2

v0.30.1

06 Jan 00:55
4c80c68

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.30.0...v0.30.1

v0.30.0

18 Dec 21:46
1b2d11b

Choose a tag to compare

What's Changed

Full Changelog: v0.29.0...v0.30.0

v0.29.0

16 Dec 16:58
f3ed856

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.28.4...v0.29.0

test_data

08 Dec 22:50
7d042c6

Choose a tag to compare

Commands (assuming the blow script is in dl_test_data.py):

HF_HOME="." python dl_test_data.py
zip -r test_data.zip datasets hub
gh release upload test_data test_data.zip
import datasets
from huggingface_hub import snapshot_download

repos = [
    "mlx-community/Qwen1.5-0.5B-Chat-4bit",
    "mlx-community/Mistral-7B-v0.2-4bit",
    "mlx-community/DeepSeek-Coder-V2-Lite-Instruct-4bit-mlx",
    "mlx-community/Mistral-7B-Instruct-v0.3",
    "mlx-community/Phi-3.5-mini-instruct-4bit",
    "mlx-community/Llama-3.2-1B-Instruct-4bit",
    "mlx-community/Falcon3-7B-Instruct-4bit",
    "mlx-community/Qwen3-4B-4bit",
]

allow_patterns = [
            "*.md",
            "*.json",
            "*.py",
            "tokenizer.model",
            "*.tiktoken",
            "tiktoken.model",
            "*.txt",
            "*.jsonl",
            "*.jinja",
]

for repo in repos:
    snapshot_download(
        repo,
        allow_patterns=allow_patterns,
    )

snapshot_download(
    "mlx-community/Qwen1.5-0.5B-Chat-4bit",
    allow_patterns=["model*.safetensors"],
)

datasets.load_dataset("billsum")

v0.28.4

03 Dec 22:36
454bf9a

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.28.3...v0.28.4