@GitHub_Daily: 用 AI 写的文章,读起来总有一股 AI 味,句式工整、用词重复,发布或提交后总担心被检测到。 最近偶然找到了 AI Humanize Text 这个开源工具,专门把 AI 生成的文本改写成更自然的人类写作风格。 提供了四种不同的改写思路…
摘要
介绍了一个名为 AI Humanize Text 的开源工具,通过多语言翻译链、大模型多轮改写等方法,将 AI 生成的文本改写得更自然,避免被检测。
查看缓存全文
缓存时间: 2026/05/22 11:50
用 AI 写的文章,读起来总有一股 AI 味,句式工整、用词重复,发布或提交后总担心被检测到。 最近偶然找到了 AI Humanize Text 这个开源工具,专门把 AI 生成的文本改写成更自然的人类写作风格。 提供了四种不同的改写思路:多语言翻译链、大模型多轮改写、检测反馈循环、混合引擎翻译,可以根据场景灵活选择。 GitHub:http://github.com/lynote-ai/humanize-text… 比较有意思的是检测反馈机制,改写完会自动跑一遍检测模型,对还像 AI 写的段落再针对性修改,形成闭环优化。 多语言翻译链则是把文本在多种语言间转译,利用语言结构差异来打散原有的句式模式。 如果你经常用 AI 辅助写作,又希望成品读起来更自然流畅,可以拿来研究试试。
lynote-ai/humanize-text
Source: https://github.com/lynote-ai/humanize-text
English | 中文
What is Humanize-Text?
An AI text humanization toolkit. This repo evolved through two stages:
- v1.0 — Documented 4 humanization methodologies as reference implementations (translation chain, multi-turn LLM rewriting, detection-guided feedback loop, mixed-engine translation). See docs/techniques.md.
- v1.5 (current) — Added the Standard Pipeline: a production-grade integration of Method 1 (Translation Chain) + Method 2 (LLM Rewriting), fixed as a 5-step chain we actually run and recommend.
v1.5.1 — Standard Pipeline (Recommended)
The Standard Pipeline preserves the original writing style while routing text through a 4-step chain: two DeepSeek humanization rewrites followed by two cross-engine translation hops.
Input (EN) → Chinese (DeepSeek) → Japanese (DeepSeek) → Finnish (Google) → English (Niutrans)
See examples/showcase/ for 5 real samples with full intermediate-step outputs and AI-detection verdicts.
Characteristics:
- Best original style preservation among all approaches
- Fast processing speed
- 100% key information retention (verified on 50 text pairs)
- Expert quality score: 9.1/10
The 4 underlying methodologies live in
src/methodologies/as reference implementations for research and customization. The Standard Pipeline (src/standard/pipeline.py) is the recommended production path.
Want higher bypass rates + all methods combined? Lynote.ai fuses Standard + Advanced + Focus pipelines into one intelligent system — auto-selects the optimal approach for each passage.
How It Works
Step-by-Step Pipeline
| Step | Engine | From → To | Purpose |
|---|---|---|---|
| 1 | DeepSeek (temp 1.3) | Input → Chinese (Chinese Rewriting) | LLM humanization rewrite + language shift |
| 2 | DeepSeek (temp 1.3) | Chinese → Japanese (Japanese Rewriting) | Second LLM humanization, carries Step 1 as history |
| 3 | Google Translate | Japanese → Finnish (First Round of Translation) | First translation hop — distant language structural disruption |
| 4 | Niutrans | Finnish → English (Second-Round Translation) | Second translation hop — cross-engine reconstruction |
Why This Chain Works
- Steps 1–2 (LLM Rewrite): DeepSeek at temperature 1.3 rewrites while translating, breaking AI statistical fingerprints with creative variation. Step 2 carries Step 1 as conversation history for coherent humanization.
- Steps 3–4 (Multi-Engine Translation): Two different NMT engines (Google → Niutrans) introduce compounding structural changes. No single-engine fingerprint survives.
- Distant Languages: Chinese → Japanese → Finnish maximizes linguistic distance at each hop, ensuring thorough restructuring before reconstruction to English.
Lynote.ai — Beyond Standard
The Standard pipeline above is one of three tiers available. Each has different trade-offs:
| Tier | Style Preservation | Speed | Approach |
|---|---|---|---|
| Standard (this repo) | Best | Fast | Translation chain |
| Advanced | Good | Medium | Translation chain + LLM multi-round rewriting |
| Focus | Moderate | Slower | Translation chain + Detection-guided feedback loop |
Lynote.ai combines all three tiers and automatically selects the optimal approach for each text passage:
- Intelligent Tier Selection — Analyzes text and picks Standard, Advanced, or Focus per-passage
- Adaptive Combination — Can mix tiers within a single document
- 10+ Languages — English, Chinese, Japanese, Korean, Spanish, French, German, and more
- Paste & Go — No setup, no API keys, no configuration
Quick Start
| Method | Who It’s For | How |
|---|---|---|
| Lynote.ai | Everyone — all tiers, zero setup | Visit lynote.ai |
| n8n Workflow | No-code automation users | Import n8n/humanize_standard.json |
| Python Script | Developers | See below |
Python
git clone https://github.com/lynote-ai/humanize-text.git
cd humanize-text
pip install -r requirements.txt
cp config/config.example.toml config/config.toml
# Fill in your API keys in config.toml
python -m src.standard.pipeline --input "Your AI-generated text here"
n8n Workflow
- Import
n8n/humanize_standard.jsoninto your n8n instance - Configure DeepSeek API key in the HTTP Request nodes
- Run — input text goes in, humanized text comes out
Showcase — 5 Real Examples with Step-by-Step Outputs
We ran the pipeline end-to-end on 5 real input texts and saved every intermediate step. All 5 final outputs were classified as human by the AI detector.
| # | Topic | Detection | Confidence |
|---|---|---|---|
| 01 | Quantum Computing | human | 0.9997 |
| 02 | Quantum Readiness Strategy | human | 0.9982 |
| 03 | Sustainable Supply Chains | human | 0.7810 |
| 04 | Financial Literacy | human | 0.9924 |
| 05 | Peer Review in Science | human | 0.7218 |
Each example shows: original input → Step 1 (中文改写) → Step 2 (日语改写) → Step 3 (一轮翻译) → Step 4 (二轮翻译, final). See examples/showcase/ for full traces.
Quality Metrics
Tested on 50 text pairs with expert evaluation:
| Dimension | Score (out of 10) |
|---|---|
| Information Completeness | 10.0 |
| Language Fluency | 9.0 |
| Style Adaptability | 8.8 |
| Readability | 9.2 |
| Creativity & Impact | 8.5 |
| Overall | 9.1 |
- Key Information Retention: 100% (50/50 pairs)
- All texts preserved original key information without distortion
Comparison with Other Tiers
| Standard (this repo) | Lynote.ai | |
|---|---|---|
| Tiers Available | Standard only | Standard + Advanced + Focus |
| Tier Selection | Manual | Automatic per-passage |
| Style Preservation | Best | Adaptive — best possible per passage |
| Setup | Python + API keys | Zero setup |
| Best For | Style-sensitive content | Any content type |
Documentation
- Standard Pipeline Technical Details — v1.5 production pipeline
- 4 Methodologies Reference — v1.0 underlying methods
- Configuration Guide
- n8n Workflow Guide
- Lynote.ai vs Open Source Comparison
- FAQ
Repo Structure
src/
├── standard/ # ★ v1.5.1 production Standard Pipeline (recommended)
│ ├── pipeline.py # 4-step chain, CLI entry
│ ├── llm_rewriter.py # DeepSeek humanization rewrite
│ └── translators.py # Google + Niutrans engines
│
└── methodologies/ # v1.0 four-methodology reference implementations
├── humanizer.py # v1.0 dispatcher + FastAPI app
├── translation_chain.py # Method 1
├── llm_rewriter.py # Method 2
├── detection_pipeline.py# Method 3
├── mixed_engine.py # Method 4
├── postprocess.py
├── detectors/ # Method 3 detectors
└── utils/
examples/
├── example_usage.py # ★ v1.5.1 minimal entry
├── showcase/ # ★ 5 real samples with intermediate-step outputs
└── legacy/ # v1.0 examples + 4-method comparison outputs
License
MIT License. See LICENSE for details.
Links
Recommended Projects
- MoneyPrinterTurbo — AI short video generator
- AiToEarn — AI content publishing tool
Star History
If this project helps you, please give it a ⭐!
相似文章
@0xCheshire: 研究了一下到底该怎么去 AI 味,找到了 7 个不同的 GitHub 项目: 中文改稿、英文改稿、技术写作和完整写作流程,都有对应选择。 1. qu-ai-wei(299 star) 中文去 AI 味 Skill,会一起处理套话、抽象表达…
介绍7个GitHub项目,用于去除AI写作痕迹,涵盖中文和英文文本,包括qu-ai-wei、Humanizer等工具,帮助用户写出更像人写的文章。
@noahduck283: https://x.com/noahduck283/status/2069030402048893317
一份全面的去AI味写作指南,从识别22种AI写作特征到提供改写流程和提示词,帮助用户消除AI写作痕迹。
@Pluvio9yte: https://x.com/Pluvio9yte/status/2073597713409863793
本文介绍了多个去AI味的开源项目,重点推荐了「人话.skill」,并提供了自定义检查清单的方法,适合技术写作者优化文本。
@Lucy_love_AI: 中文内容创作者,必装的 10 个 skill 1|Humanizer-zh 中文"去 AI 味"神器,专抓空话、套话、三段式、过度排比那股机器腔,改得像人写的(归藏做的汉化版)。 http://github.com/op7418/Huma…
推文介绍了中文内容创作者必装的10个AI写作相关skill,重点推荐Humanizer-zh,一个用于去除AI生成文本痕迹的中文工具,能识别并修复24种AI写作模式,让文字更像人类书写。
@Jolyne_AI: GitHub 上有个开源小工具:daily-arXiv-ai-enhanced,帮你把“追论文”这件事变成每天自动完成的日常。 它会每日抓取 arXiv 最新论文,并用 DeepSeek 等大模型生成中文摘要,让你用更少时间,快速跟上 A…
daily-arXiv-ai-enhanced 是一个开源工具,通过GitHub Actions每日自动抓取arXiv最新论文,并使用DeepSeek等大模型生成中文摘要,帮助快速跟进AI研究进展。