Altworld/Hemmingway-1
Summary
Hemmingway-1 is a 27B-parameter open-source AI model specialized for everyday writing tasks, outperforming leading models on benchmarks for human-like communication.
View Cached Full Text
Cached at: 09/21/26, 08:55 AM
Altworld/Hemmingway-1 · Hugging Face
Source: https://huggingface.co/Altworld/Hemmingway-1 **The AI that writes like a person.**27B parameters, open weights, Apache-2.0.
Weights →·Try it →·Mac and Android apps →·Code →
Ask most models for a text to your landlord and you get three options, a preamble, and a paragraph explaining the options. Hemmingway-1 just gives you the text.
We built it for the writing people actually do every day: messages, emails, the awkward note to a colleague, the thing you have been putting off. Then we tested it against the biggest models in the world at exactly that, and it came first.
https://huggingface.co/Altworld/Hemmingway-1#it-writes-the-best-everyday-messages-of-any-model-we-testedIt writes the best everyday messages of any model we tested
We tested on eighty real requests. Every answer went head to head against another model’s answer to the same request, shuffled so the judge never knew which was which.
It beats Fable 5.1, and it beats GPT-6 Astra by fifty points. Kimi K3, GLM-5.3, Grok 4.6 and DeepSeek V4 Pro all come in behind it. That is a 27B model.
https://huggingface.co/Altworld/Hemmingway-1#and-it-is-the-one-that-sounds-like-a-personAnd it is the one that sounds like a person
We ran the same matchups again with one question: which of these two did a person write?
It finished twenty-six points clear of the next model.
https://huggingface.co/Altworld/Hemmingway-1#where-it-winsWhere it wins
We broke it down by what you asked for. Higher means the judge more often took its version for the one a person wrote.
It wins on money and admin, work, the hard asks you keep rewriting, and talking someone round. Most of those by a wide margin. On hard asks, GPT-6 Astra gets 9%. Hemmingway-1 gets 72%.
It loses on hostile storytelling and long story turns. The story models are better at those, and that is fair.
https://huggingface.co/Altworld/Hemmingway-1#you-get-the-message-not-a-memoYou get the message, not a memo
One more thing we measured: how often a model buries the actual text in commentary, options and notes you have to read past.
Fable 5, GLM-5.3 and Kimi K3 bury it in more than nine replies out of ten.
https://huggingface.co/Altworld/Hemmingway-1#it-reads-the-roomIt reads the room
EQ-Bench 4 is not ours. It is the public emotional-intelligence benchmark, run by its own harness.
It placed third, past GPT-5.5, Opus 4.7 and Opus 4.8, and inside twelve points of the best model on the board.
https://huggingface.co/Altworld/Hemmingway-1#it-tells-a-decent-story-tooIt tells a decent story too
It sits level with Kimi K3, comfortably past Qwen3.8-Max and DeepSeek V4 Pro, and 504 points above the model we started from.
https://huggingface.co/Altworld/Hemmingway-1#run-itRun it
vllm serve Altworld/Hemmingway-1 --max-model-len 262144
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "Altworld/Hemmingway-1"
tok = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto", dtype="auto")
messages = [{"role": "user", "content": "Write the text I send my landlord about the broken boiler."}]
ids = tok.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt").to(model.device)
out = model.generate(ids, max_new_tokens=512)
print(tok.decode(out[0][ids.shape[-1]:], skip_special_tokens=True))
Parameters27BBuilt onQwen3.8-27BContext262,144 tokensLicenceApache-2.0, yours to use, including commercially
https://huggingface.co/Altworld/Hemmingway-1#the-fine-printThe fine print
Full disclosure: CommunicationBench, Human-Likeness and StoryBench are our own benchmarks. We built them, we ran them, and we are saying that up front. Every matchup was blind and run in both orders so position could not sway the result, and the judge was a different model from the ones being judged. EQ-Bench 4 is not ours.
It is English-first. It can be wrong and still sound certain about it. So do not use it to decide anything medical, legal or financial.
Similar Articles
Hemmingway-1, a 27B open weights model for creative writing (EQ-Bench 4: 1330, Apache-2.0)
Hemmingway-1 is a 27B open-weights model specialized for creative writing, achieving a score of 1330 on EQ-Bench 4 and claiming human-like performance in blind tests against frontier models.
Hemmingway-1: An AI that writes like a person (Qwen3.8-27B finetune)
Hemmingway-1 is a finetuned version of the Qwen3.8-27B AI model, designed to generate text in a more human-like writing style.
Hemmingway-1, an Apache-2.0 27B creative-writing fine-tune (Qwen3.8-27B base, EQ-Bench 4 1330)[R]
A small lab from Switzerland and South Africa has open-sourced Hemmingway-1, a 27B Apache-2.0 licensed fine-tune of Qwen3.8-27B specialized for creative writing, achieving high scores on EQ-Bench and internal benchmarks.
A 1B humanizer that matches human writing on an AI detector
A 1B model with stacked SFT and DPO LoRA adapters achieves human-level scores on the RADAR AI detector, reducing slop phrases to zero, and runs on a 24GB Mac.
Fine-tuned Gemma-4-31B specifically for Copywriting & Creative Writing Tasks (Scored +290 Elo over base using EqBench3)
Akwin123 fine-tuned Gemma-4-31B-it specifically for copywriting and creative writing tasks, achieving a +290 Elo improvement over the base model on a custom benchmark using QLoRA. The model is open-source and available on Hugging Face.





