Views
No views yet
Ministral-8B-Instruct model. It is designed to transform robotic, overly-formal, or synthetic AI-generated text into fluent, natural, and human-like language.mistralai/Ministral-8B-Instruct| Metric | Value |
|---|---|
| Final Training Loss | 0.171 |
| Final Validation Loss | 0.175 |
(synthetic_input, humanized_output)1from mlx_lm import load, generate
2
3model, tokenizer = load("vishal-adithya/ministral-8B-texthumanizer")
4prompt = "Instruction: Make this sound more natural.Input: The individual proceeded to consume nourishment.Response:"
5generate(model, tokenizer, prompt)