essAi 9B (MLX 4-bit)

A 4-bit quantized MLX build of alphanozcan/essAi-9b — a Qwen3.5-9B fine-tune that writes authentic college application essays (Common App personal statement style) in a natural human voice.

Training

Two-stage fine-tune of Qwen/Qwen3.5-9B:

  • SFT — 270 real admissions essays from publicly published example collections (JHU "Essays That Worked", College Essay Guy, AP Study Notes) + ~19.4k human essays from the open persuade corpus. LoRA r=16 on all linear layers, lr 2e-4, 1 epoch, bf16.
  • DPO — for each gold prompt, the real human essay is chosen and the SFT model's own generation is rejected (HumanLLMs method, arXiv 2501.05032), plus GradGPT quality pairs. beta=0.1, lr 5e-5.

Usage (Apple Silicon)

pip install mlx-lm
mlx_lm generate --model alphanozcan/essAi-9b-mlx --max-tokens 900 --prompt "Write a ~650-word Common App style personal statement essay about learning from failure."

Python:

from mlx_lm import generate, load
from mlx_lm.sample_utils import make_sampler

model, tok = load("alphanozcan/essAi-9b-mlx")
system = "You write authentic college application essays in a natural human voice, with specific personal detail, varied sentence rhythm, and honest reflection."
user = "Write a ~650-word Common App style personal statement essay about learning from failure."

prompt = tok.apply_chat_template(
    [{"role": "system", "content": system}, {"role": "user", "content": user}],
    tokenize=False, add_generation_prompt=True, enable_thinking=False,
)
text = generate(model, tok, prompt=prompt, max_tokens=900,
                sampler=make_sampler(temp=0.8, top_p=0.95))
print(text)

Runs at ~19 tok/s with ~5 GB memory on Apple Silicon (M-series).

Notes

  • 9B parameters, 1 training epoch per stage.
  • AI-detector behavior is not guaranteed; the model is trained on human essays for a more natural writing style, but detectors are trained classifiers and results vary.
Downloads last month
-
Safetensors
Model size
1B params
Tensor type
BF16
·
U32
·
F32
·
MLX
Hardware compatibility
Log In to add your hardware

4-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for alphanozcan/essAi-9b-mlx

Finetuned
Qwen/Qwen3.5-9B
Quantized
(484)
this model