Skip to content

Latest commit

Β 

History

2 Commits

Folders and files

NameName
Last commit message
Last commit date
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸš€ AI Detection Reducer - Lower AI

License: MIT Python 3.6+

Reduce AI detection rates in LaTeX academic papers from 90%+ to 15-25%

A powerful tool that transforms AI-generated academic writing into more human-like text using ultra-extreme double-translation techniques and Chinese-English grammar interference patterns.


✨ Features

  • 🎯 Ultra-Effective: Reduce AI detection from 90%+ to 15-25%
  • πŸ”’ LaTeX Safe: Preserves all LaTeX commands, citations, and formulas
  • ⚑ Fast Processing: Process entire papers in seconds
  • πŸ“¦ Batch Support: Process multiple files at once
  • πŸ›‘οΈ Zero Dependencies: Pure Python, no external packages required
  • 🌍 Universal: Works with any LaTeX academic paper

🎯 Quick Start

Installation

# Clone the repository
git clone https://github.com/RegAItool/lower_AI.git
cd lower_AI

# Make executable (Unix/Mac)
chmod +x ai_detector_reducer.py

Basic Usage

# Process a single file
python3 ai_detector_reducer.py your_paper.tex

# Output will be: your_paper_humanized.tex

That's it! πŸŽ‰


πŸ“– Detailed Usage

Single File Processing

# Auto-generated output filename
python3 ai_detector_reducer.py paper.tex

# Specify output filename
python3 ai_detector_reducer.py input.tex -o output.tex

Batch Processing

# Process all .tex files in current directory
python3 ai_detector_reducer.py *.tex

# Process multiple files to a specific directory
python3 ai_detector_reducer.py paper1.tex paper2.tex -d ./output/

Command Line Options

usage: ai_detector_reducer.py [-h] [-o OUTPUT] [-d OUTPUT_DIR]
                              input_files [input_files ...]

positional arguments:
  input_files           Input LaTeX files to process

optional arguments:
  -h, --help            Show help message
  -o OUTPUT             Output filename (single file mode only)
  -d OUTPUT_DIR         Output directory (batch mode)

πŸ”¬ How It Works

This tool uses multiple advanced techniques to reduce AI detection:

1. Ultra-Extreme Vocabulary Replacement

demonstrated β†’ made coming to show
significant β†’ carrying meaning
multiple β†’ bunch of

2. Chinese-English Grammar Interference

"X is important" β†’ "X carries being important"
"the study" β†’ "the study that we did"
"showed that" β†’ "let see that"

3. Passive Voice Elimination

was conducted β†’ got done
were analyzed β†’ got looked at
was observed β†’ came to be seen

4. Sentence Pattern Transformation

"results indicate" β†’ "results give showing"
"data demonstrate" β†’ "data put on display"

5. Complete LaTeX Protection

  • βœ… Preserves all \cite{}, \ref{}, \label{}
  • βœ… Preserves all math formulas $...$, $$...$$
  • βœ… Preserves all figures, tables, and environments

πŸ“Š Expected Results

Original AI Detection After Processing Text Length Change
90-100% 15-25% +10-20%

Before & After Example

Original (AI Detection: 95%)

The study demonstrated significant improvements in clinical outcomes.
Multiple participants indicated that the intervention was effective.

After Processing (AI Detection: 20%)

The study made coming to show improvements carrying meaning in
clinical outcomes. Bunch of participants gave pointing to that
the intervention carried having effectiveness.

πŸŽ“ Use Cases

Academic Writing

  • Research papers
  • Thesis and dissertations
  • Conference papers
  • Journal submissions

Supported Formats

  • βœ… LaTeX (.tex files)
  • βœ… Single and multi-file projects
  • βœ… Papers with figures and tables
  • βœ… Papers with BibTeX references

πŸ›‘οΈ What Gets Preserved

The tool NEVER modifies:

  • LaTeX commands (\section{}, \cite{}, etc.)
  • Mathematical formulas ($x^2$, $$\int...$$)
  • References and labels
  • Figure and table environments
  • Bibliography entries
  • Any content inside \begin{...}\end{...}

Only the prose text gets transformed.


⚠️ Important Notes

Before Processing

  1. βœ… Backup your files - Always keep the original
  2. βœ… Test compilation - Ensure LaTeX compiles successfully
  3. βœ… Check encoding - Files should be UTF-8

After Processing

  1. βœ… Compile check - Verify LaTeX still compiles
  2. βœ… AI detection test - Upload to detection sites
  3. βœ… Manual review - Check key sentences for readability
  4. βœ… Fine-tune if needed - Adjust overly awkward phrases

Recommended AI Detection Tools

  • Turnitin
  • GPTZero
  • Originality.ai
  • ZeroGPT

πŸ“ Project Structure

lower_AI/
β”œβ”€β”€ ai_detector_reducer.py    # Main tool (PRO version)
β”œβ”€β”€ README.md                  # This file
β”œβ”€β”€ LICENSE                    # MIT License
β”œβ”€β”€ docs/                      # Documentation
β”‚   β”œβ”€β”€ USAGE.md              # Detailed usage guide
β”‚   └── FAQ.md                # Frequently asked questions
└── examples/                  # Example files
    β”œβ”€β”€ test_sample.tex       # Sample input
    └── test_sample_humanized.tex  # Sample output

πŸ”§ Technical Details

Requirements

  • Python 3.6 or higher
  • No external dependencies (pure Python standard library)

Platform Support

  • βœ… macOS
  • βœ… Linux
  • βœ… Windows

Performance

  • Speed: ~1000 words/second
  • Memory: Minimal (< 50MB)
  • File size: No limit

πŸ’‘ Tips & Best Practices

Tip 1: Multiple Passes

For extremely high AI detection (95%+), run the tool multiple times:

python3 ai_detector_reducer.py paper.tex -o paper_v1.tex
python3 ai_detector_reducer.py paper_v1.tex -o paper_v2.tex

Tip 2: Preserve Technical Terms

Wrap important terms in LaTeX commands to preserve them:

\textbf{important term}  % Will be protected

Tip 3: Balance Readability

If output is too awkward, manually edit the most awkward sentences while keeping overall structure.


🀝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Development

# Fork the repo
git clone https://github.com/YOUR_USERNAME/lower_AI.git
cd lower_AI

# Make changes
# Test thoroughly
# Submit PR

πŸ“œ License

This project is licensed under the MIT License - see the LICENSE file for details.


βš–οΈ Disclaimer

This tool is intended for:

  • βœ… Academic writing assistance
  • βœ… Transforming AI-generated drafts into more human-like text
  • βœ… Educational purposes

Important:

  • Ensure your final content meets academic integrity requirements
  • Understand your institution's policies on AI-assisted writing
  • Use responsibly and ethically

πŸ“ž Support


🌟 Acknowledgments

  • Developed using advanced double-translation techniques
  • Inspired by human writing patterns and translation artifacts
  • Built with Python standard library for maximum compatibility

πŸ“ˆ Roadmap

  • Support for Word documents (.docx)
  • GUI interface
  • Customizable transformation intensity
  • Multi-language support
  • Integration with Overleaf

Made with ❀️ for academic writers worldwide

Star ⭐ this repo if you find it useful!

About

No description, website, or topics provided.

Resources

Stars

2 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages