Creative Coding
Collection
Two heads(or more) are better than one • 31 items • Updated
8B or not 8B—that is the question
NotSure, the ultimate generalist, a mind-meld of great models in the field
In uncertain times, the best decisions are left up to chance.
-G
pip install mlx-lm
from mlx_lm import load, generate
model, tokenizer = load("Qwen3-8B-NotSure-qx86-hi-mlx")
prompt = "hello"
if tokenizer.chat_template is not None:
messages = [{"role": "user", "content": prompt}]
prompt = tokenizer.apply_chat_template(
messages, add_generation_prompt=True
)
response = generate(model, tokenizer, prompt=prompt, verbose=True)
8-bit