Views
No views yet
openai/gpt-oss-120b derived from the LM Studio GGUF files.lmstudio-community/gpt-oss-120b-GGUFmlx-lm66ton99/gpt-oss-120bgroup_size: 32, bits: 8, mode: affine for Q8 tensorsgroup_size: 32, bits: 4, mode: mxfp4 for MoE expert tensorsconfig.json - MLX-compatible model config with mixed quantization metadatamodel-00001-of-00013.safetensors ... model-00013-of-00013.safetensors - model weightsmodel.safetensors.index.json - shard maptokenizer.json, tokenizer_config.json, special_tokens_map.json, chat_template.jinja - tokenizer assetspip install mlx-lm1from mlx_lm import load, generate
2
3model, tokenizer = load("66ton99/gpt-oss-120b")
4prompt = "Explain why the sky is blue."
5response = generate(model, tokenizer, prompt=prompt, verbose=True)
6print(response)