--- base_model: Marcjoni/QuasiStarSynth-12B tags: - merge - mergekit - lazymergekit - DreadPoor/Irix-12B-Model_Stock - ohyeah1/Violet-Lyra-Gutenberg-v2 - redrix/patricide-12B-Unslop-Mell-v2 - yamatazen/EtherealAurora-12B-v3 - yamatazen/EtherealAurora-12B-v2 - mlx pipeline_tag: text-generation library_name: mlx --- # MuXodious/QuasiStarSynth-12B-mlx-8Bit This model [MuXodious/QuasiStarSynth-12B-mlx-8Bit](https://huggingface.co/MuXodious/QuasiStarSynth-12B-mlx-8Bit) was converted to MLX format from [Marcjoni/QuasiStarSynth-12B](https://huggingface.co/Marcjoni/QuasiStarSynth-12B) using mlx-lm version **0.30.5**. ## Use with mlx ```bash pip install mlx-lm ``` ```python from mlx_lm import load, generate model, tokenizer = load("MuXodious/QuasiStarSynth-12B-mlx-8Bit") prompt = "hello" if tokenizer.chat_template is not None: messages = [{"role": "user", "content": prompt}] prompt = tokenizer.apply_chat_template( messages, add_generation_prompt=True, return_dict=False, ) response = generate(model, tokenizer, prompt=prompt, verbose=True) ```