HELP! Why I Can't use this model in oMLX v0.6.4

#1
by palmnovel - opened
Model 'Spark-X2.5-4B-MLX-8bit' failed to load: Model type spark2_5 not supported.. Reload models after fixing the files to retry.
Model 'Spark-X2.5-4B-MLX-8bit' failed to load: Model type spark2_5 not supported.. Reload models after fixing the files to retry.

oMLX doesn't support the spark2_5 architecture yet.

You can run the model with Spark-MLX-LLM instead:

git clone https://github.com/XHToken/Spark-MLX-LLM.git
cd Spark-MLX-LLM
python3 -m venv .venv
source .venv/bin/activate
pip install -e .

spark-mlx-chat --model abenzerps/Spark-X2.5-4B-MLX-8bit

This should load the MLX model correctly.

Sign up or log in to comment