Instructions to use DeFactOfficial/humanizer-qwen3.6-27b-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use DeFactOfficial/humanizer-qwen3.6-27b-lora with PEFT:
Task type is invalid.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Unsloth Studio
How to use DeFactOfficial/humanizer-qwen3.6-27b-lora with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for DeFactOfficial/humanizer-qwen3.6-27b-lora to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for DeFactOfficial/humanizer-qwen3.6-27b-lora to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for DeFactOfficial/humanizer-qwen3.6-27b-lora to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="DeFactOfficial/humanizer-qwen3.6-27b-lora", max_seq_length=2048, )
humanizer-qwen3.6-27b-lora
LoRA adapter of unsloth/Qwen3.6-27B fine-tuned to rewrite
AI-generated text so it reads like natural human writing — same meaning, human voice.
QLoRA (4-bit, r=16, alpha=32) trained with
Unsloth + TRL's SFTTrainer on ~5k paired
(ChatGPT answer -> human answer) examples from
Hello-SimpleAI/HC3, with a
synthesized <think> trace so the model learns to spot machine-like patterns and plan
the rewrite before answering.
Single-purpose model: it only humanizes existing text. Not a chat assistant.
Usage
from unsloth import FastLanguageModel
model, tokenizer = FastLanguageModel.from_pretrained(
"DeFactOfficial/humanizer-qwen3.6-27b-lora", # pulled from the Hub (adapter + 4-bit base) automatically
max_seq_length=4096,
load_in_4bit=True,
)
FastLanguageModel.for_inference(model)
Prompt with a system message asking for a humanizing rewrite and the passage in the user
turn; the model thinks (<think>...</think>), then emits only the rewritten passage.
See humanize.py in the training repo for the exact prompt and a chunked
end-to-end script.
Training
- learning rate 0.0002 (cosine), effective batch 16, 1.0 epoch(s), max seq length 2048, adamw_8bit
- loss masked to the assistant turn only (
train_on_responses_only)
- Downloads last month
- -