Views
No views yet

louisbrulenaudet/Maxine-34B-stock using mlx-vlm version 0.15.2.
Refer to the original model card for more details on the model.1pip install -U mlx-vlm
2python -m mlx_vlm.generate --model mlx-community/Maxine-34B-stock --max-tokens 100 --temp 0.01from mlx_lm import load, generate
2
3model, tokenizer = load("mlx-community/Maxine-34B-stock")
4response = generate(model, tokenizer, prompt="hello", verbose=True)1@misc{louisbrulenaudet2024,
2 author = {Louis Brulé Naudet},
3 title = {Maxine-34B-stock, an xtraordinary 34B model},
4 year = {2024}
5 howpublished = {\url{https://huggingface.co/mlx-community/Maxine-34B-stock}},
6}