A Python package for detecting garbled text using multiple detection strategies with a scikit-learn-like interface
Project description
pygarble
Detect gibberish, garbled text, and corrupted content with high accuracy using advanced machine learning techniques.
pygarble is a powerful Python library designed to identify nonsensical, garbled, or corrupted text content that often appears in data processing pipelines, user inputs, or automated systems. Whether you're dealing with random character sequences, encoding errors, keyboard mashing, or corrupted data streams, pygarble provides multiple detection strategies to filter out unwanted content and maintain data quality. The library uses statistical analysis, entropy calculations, pattern matching, and n-gram analysis to distinguish between meaningful text and gibberish with configurable sensitivity levels.
Features
- 14 Detection Strategies: Choose from multiple garble detection algorithms including Markov chains and n-gram analysis
- Zero Dependencies: Core library works without any external dependencies
- Ensemble Detector: Combine multiple strategies for higher accuracy with voting mechanisms
- Scikit-learn Interface: Familiar
predict()andpredict_proba()methods - Configurable Thresholds: Adjust sensitivity for each strategy
- Probability Scores: Get confidence scores for garble detection
- Input Validation: Built-in validation for thresholds and parameters
- Type Hints: Full type annotation support throughout the codebase
- Modular Design: Easy to extend with new detection strategies
- Smart Edge Cases: Automatically detects extremely long strings without whitespace (like base64 data)
Installation
You can install pygarble using pip:
# Core library (zero dependencies)
pip install pygarble
# With pyspellchecker for legacy word validation (optional)
pip install pygarble[spellchecker]
Quick Start
from pygarble import GarbleDetector, Strategy, EnsembleDetector
# RECOMMENDED: Ensemble with "any" voting (best F1 score: 77.42%)
ensemble = EnsembleDetector(voting="any")
print(ensemble.predict("hello world")) # False
print(ensemble.predict("asdfghjkl")) # True
print(ensemble.predict("!!!@@@###")) # True (symbols detected)
print(ensemble.predict("5d41402abc4b2a76")) # True (hex string detected)
# Individual strategies for specific use cases
detector = GarbleDetector(Strategy.MARKOV_CHAIN) # High precision (92%)
print(detector.predict("the quick brown fox")) # False
detector = GarbleDetector(Strategy.WORD_LOOKUP) # Zero dependencies
print(detector.predict("xyzzy plugh")) # True
# Batch processing
texts = ["Hello world", "asdfghjkl", "qwertyuiop"]
results = ensemble.predict(texts)
print(results) # [False, True, True]
# Get probability scores
probabilities = ensemble.predict_proba(texts)
print(probabilities) # [0.0, 1.0, 0.7]
Benchmark Results
Based on 200 real-world test cases across 34 categories:
Ensemble Performance (Recommended)
| Configuration | Accuracy | Precision | Recall | F1 Score |
|---|---|---|---|---|
| Ensemble (any voting) ⭐ | 82.50% | 72.29% | 83.33% | 77.42% |
| High Recall (9 strategies) | 75.50% | 60.95% | 88.89% | 72.32% |
| Ensemble (majority voting) | 76.00% | 92.86% | 36.11% | 52.00% |
Individual Strategy Performance
| Strategy | Accuracy | Precision | Recall | F1 Score |
|---|---|---|---|---|
| markov_chain | 80.00% | 92.11% | 48.61% | 63.64% |
| keyboard_pattern | 78.00% | 70.00% | 68.06% | 69.01% |
| ngram_frequency | 78.00% | 83.33% | 48.61% | 61.40% |
| word_lookup | 79.00% | 91.67% | 45.83% | 61.11% |
| vowel_ratio | 78.00% | 85.00% | 47.22% | 60.71% |
| symbol_ratio | 65.50% | 56.52% | 18.06% | 27.37% |
| hex_string | 67.00% | 71.43% | 13.89% | 23.26% |
| repetition | 66.00% | 70.00% | 9.72% | 17.07% |
Key insights:
- Ensemble with "any" voting achieves the best F1 (77.42%) with 83% recall
- For high recall (catching more garbled text), use
voting="any" - For high precision (avoiding false positives), use individual strategies like
markov_chain(92% precision) - New strategies (
symbol_ratio,hex_string,repetition) are specialized detectors that complement the core strategies
Run the benchmark yourself:
python regression/benchmark.py
Detection Strategies
Each strategy implements a different approach to detect garbled text. All strategies return probability scores between 0.0 and 1.0, where higher scores indicate more likely garbled text.
1. Keyboard Pattern (KEYBOARD_PATTERN) ⭐ Best F1 Score
Implementation Logic: Detects keyboard row sequences (qwerty, asdf, zxcv) and analyzes trigram patterns. English text has predictable trigram distributions; garbled text doesn't.
Algorithm:
- Extract trigrams from the text
- Check for keyboard row sequences (forward and reverse)
- Compare against common English trigrams
- Detect repeated bigram patterns (ababab)
Parameters:
keyboard_threshold(float, default: 0.3): Threshold for keyboard pattern ratiocommon_trigram_threshold(float, default: 0.1): Minimum common trigram ratio
detector = GarbleDetector(Strategy.KEYBOARD_PATTERN, threshold=0.5)
# Examples
detector.predict("asdfghjkl") # True - keyboard row pattern
detector.predict("qwertyuiop") # True - keyboard row pattern
detector.predict("Hello world") # False - normal English text
detector.predict("ababababab") # True - repeated bigram pattern
2. Vowel Ratio (VOWEL_RATIO) ⭐ Best Precision
Implementation Logic: Analyzes the ratio of vowels to consonants. Natural English has 35-45% vowels. Also detects consonant clusters that are impossible in English.
Algorithm:
- Calculate vowel ratio in alphabetic characters
- Detect long consonant clusters (4+ consecutive consonants)
- Flag text outside normal vowel ratio range (15-65%)
Parameters:
min_vowel_ratio(float, default: 0.15): Minimum allowed vowel ratiomax_vowel_ratio(float, default: 0.65): Maximum allowed vowel ratioconsonant_cluster_len(int, default: 4): Max consonant cluster length
detector = GarbleDetector(Strategy.VOWEL_RATIO, threshold=0.5)
# Examples
detector.predict("bcdfghjklmnp") # True - no vowels
detector.predict("aeiouaeiou") # True - all vowels
detector.predict("Hello world") # False - normal vowel ratio (~36%)
detector.predict("rhythm") # False - valid English word
3. Entropy Based (ENTROPY_BASED)
Implementation Logic: Uses Shannon entropy combined with bigram frequency analysis. English text has predictable character and bigram distributions.
Algorithm:
- Calculate Shannon entropy of alphabetic characters
- Analyze common English bigram frequency (th, he, in, er, etc.)
- Combine entropy and bigram scores
Parameters:
entropy_threshold(float, default: 2.5): Minimum required entropybigram_threshold(float, default: 0.15): Minimum common bigram ratio
detector = GarbleDetector(Strategy.ENTROPY_BASED, threshold=0.5)
# Examples
detector.predict("aaaaaaa") # True - low entropy (repetitive)
detector.predict("xkjqzpv") # True - no common bigrams
detector.predict("the weather") # False - high common bigram ratio
4. Pattern Matching (PATTERN_MATCHING)
Implementation Logic: Uses regex patterns to detect suspicious sequences including keyboard rows, repeated characters, and consonant clusters.
Default Patterns:
special_chars: 3+ special charactersrepeated_chars: 4+ repeated charactersuppercase_sequence: 5+ uppercase letterslong_numbers: 8+ consecutive digitskeyboard_row_qwerty: Keyboard row sequences (qwert, asdf, zxcv)keyboard_row_reverse: Reverse keyboard sequencesconsonant_cluster: 5+ consecutive consonantsalternating_pattern: Alternating character patterns (ababab)
detector = GarbleDetector(Strategy.PATTERN_MATCHING, threshold=0.2)
# Examples
detector.predict("asdfghjkl") # True - keyboard row
detector.predict("AAAAA") # True - repeated chars
detector.predict("normal text") # False - no patterns match
5. Markov Chain (MARKOV_CHAIN) ⭐ NEW - Recommended
Implementation Logic: Uses a character-level Markov chain trained on English text. Computes the probability of text based on character transition frequencies. Garbled text has unusual character transitions.
Algorithm:
- Train bigram transition probabilities on 300K+ English words
- Compute average log-probability of character transitions
- Map to garble score using sigmoid function
Parameters:
threshold_per_char(float, default: -3.5): Average log probability threshold
detector = GarbleDetector(Strategy.MARKOV_CHAIN, threshold=0.5)
# Examples
detector.predict("hello world") # False - common bigrams (he, el, ll, lo, ow, wo, or, rl, ld)
detector.predict("asdfghjkl") # True - unusual bigrams (sd, df, fg, gh, hj, jk, kl)
detector.predict("xzqkjhf") # True - rare character transitions
6. N-gram Frequency (NGRAM_FREQUENCY) ⭐ NEW
Implementation Logic: Analyzes what proportion of character trigrams appear in common English text. Uses a set of 2000 most common English trigrams.
Algorithm:
- Extract trigrams from words
- Count how many appear in common trigram set
- Low ratio = likely garbled
Parameters:
common_ratio_threshold(float, default: 0.3): Minimum ratio of common trigrams
detector = GarbleDetector(Strategy.NGRAM_FREQUENCY, threshold=0.5)
# Examples
detector.predict("the quick brown") # False - trigrams: the, qui, uic, ick, bro, row, own
detector.predict("xzqkjhf") # True - no common trigrams
7. Word Lookup (WORD_LOOKUP) ⭐ NEW - Zero Dependencies
Implementation Logic: Validates words against an embedded dictionary of 50,000 common English words. No external dependencies required.
Algorithm:
- Tokenize text into words
- Check each word against embedded word set
- Return ratio of unknown words
Parameters:
unknown_threshold(float, default: 0.5): Ratio above which text is garbled
detector = GarbleDetector(Strategy.WORD_LOOKUP, threshold=0.5)
# Examples
detector.predict("hello world") # False - both words in dictionary
detector.predict("xyzzy plugh") # True - neither word in dictionary
detector.predict("hello xyzzy") # True (0.5) - half unknown
8. Symbol Ratio (SYMBOL_RATIO) - NEW
Implementation Logic: Detects text with high proportion of special characters, numbers, or non-alphabetic content. Particularly effective for symbol spam, number sequences, and mixed alphanumeric noise.
Algorithm:
- Count non-alphabetic characters (excluding spaces)
- Calculate ratio to total characters
- High ratio = likely garbled
Parameters:
symbol_threshold(float, default: 0.5): Ratio above which text is garbledmin_length(int, default: 3): Minimum text length to analyzeallow_spaces(bool, default: True): Whether to exclude spaces from ratio
detector = GarbleDetector(Strategy.SYMBOL_RATIO, threshold=0.5)
# Examples
detector.predict("!!!@@@###$$$") # True - all symbols
detector.predict("abc123def456") # True - high number ratio
detector.predict("hello world") # False - mostly alphabetic
9. Repetition (REPETITION) - NEW
Implementation Logic: Detects text with excessive character or pattern repetition. Identifies repeated single characters, bigrams, trigrams, and low character diversity.
Algorithm:
- Check for repeated single characters (aaaa)
- Check for repeated bigrams (ababab)
- Check for repeated trigrams (abcabcabc)
- Analyze character diversity
Parameters:
max_char_repeat(int, default: 3): Maximum allowed consecutive repeated charactersmax_pattern_repeat(int, default: 3): Maximum allowed pattern repetitionsdiversity_threshold(float, default: 0.3): Minimum unique character ratio
detector = GarbleDetector(Strategy.REPETITION, threshold=0.5)
# Examples
detector.predict("aaaaaaaaaa") # True - repeated character
detector.predict("abababababab") # True - repeated bigram
detector.predict("hello world") # False - diverse characters
10. Hex String (HEX_STRING) - NEW
Implementation Logic: Detects hash strings, UUIDs, base64-like content, and other hexadecimal patterns commonly found in garbled data.
Algorithm:
- Check for pure hash patterns (MD5, SHA256)
- Detect UUID format (8-4-4-4-12)
- Identify long hex sequences
- Check for base64-like patterns
Parameters:
min_hex_length(int, default: 16): Minimum hex sequence length to detecthex_ratio_threshold(float, default: 0.7): Ratio of hex chars above which text is suspicious
detector = GarbleDetector(Strategy.HEX_STRING, threshold=0.5)
# Examples
detector.predict("5d41402abc4b2a76b9719d911017c592") # True - MD5 hash
detector.predict("550e8400-e29b-41d4-a716-446655440000") # True - UUID
detector.predict("hello world") # False - no hex patterns
11. English Word Validation (ENGLISH_WORD_VALIDATION)
Implementation Logic: Validates words against an English dictionary using pyspellchecker.
Note: Requires optional dependency. Install with
pip install pygarble[spellchecker]Consider usingWORD_LOOKUPinstead for zero-dependency operation.
detector = GarbleDetector(Strategy.ENGLISH_WORD_VALIDATION, threshold=0.5)
# Examples
detector.predict("hello world") # False - valid words
detector.predict("asdfghjkl qwertyuiop") # True - invalid words
12. Character Frequency (CHARACTER_FREQUENCY)
Implementation Logic: Analyzes character frequency distribution. Garbled text often has skewed distributions.
detector = GarbleDetector(Strategy.CHARACTER_FREQUENCY, threshold=0.5)
# Examples
detector.predict("aaaaaaa") # True - high 'a' frequency
detector.predict("normal text") # False - balanced distribution
13. Statistical Analysis (STATISTICAL_ANALYSIS)
Implementation Logic: Analyzes the ratio of alphabetic to non-alphabetic characters.
detector = GarbleDetector(Strategy.STATISTICAL_ANALYSIS, threshold=0.5)
# Examples
detector.predict("123456789") # True - no alphabetic chars
detector.predict("normal text") # False - mostly alphabetic
14. Word Length (WORD_LENGTH)
Implementation Logic: Checks average word length against normal English patterns.
detector = GarbleDetector(Strategy.WORD_LENGTH, threshold=0.5)
# Examples
detector.predict("supercalifragilistic") # True - very long word
detector.predict("short words here") # False - normal lengths
Ensemble Detector
Combine multiple strategies for better accuracy using voting:
from pygarble import EnsembleDetector, Strategy
# Default ensemble (uses best-performing strategies)
ensemble = EnsembleDetector()
print(ensemble.predict("asdfghjkl")) # True
# Custom strategies
ensemble = EnsembleDetector(
strategies=[
Strategy.KEYBOARD_PATTERN,
Strategy.VOWEL_RATIO,
Strategy.ENTROPY_BASED,
],
voting="majority" # or "average" or "weighted"
)
# Weighted voting
ensemble = EnsembleDetector(
strategies=[Strategy.KEYBOARD_PATTERN, Strategy.VOWEL_RATIO],
voting="weighted",
weights=[0.7, 0.3]
)
# Batch processing
texts = ["Hello world", "asdfghjkl", "qwertyuiop"]
results = ensemble.predict(texts)
probas = ensemble.predict_proba(texts)
Voting Modes:
majority: Text is garbled if >50% of strategies agreeaverage: Average probability across all strategiesweighted: Weighted average using custom weightsany: High recall - text is garbled if ANY strategy flags it (best F1 score)all: High precision - text is garbled only if ALL strategies agree
Advanced Usage
Input Validation
The library validates inputs automatically:
# Threshold must be between 0 and 1
detector = GarbleDetector(Strategy.KEYBOARD_PATTERN, threshold=1.5)
# Raises: ValueError: threshold must be between 0.0 and 1.0
# Threads must be positive
detector = GarbleDetector(Strategy.KEYBOARD_PATTERN, threads=0)
# Raises: ValueError: threads must be a positive integer
Batch Processing with Threading
detector = GarbleDetector(Strategy.KEYBOARD_PATTERN, threads=4)
# Process 1000 texts in parallel
texts = ["text"] * 1000
results = detector.predict(texts)
Custom Pattern Matching
custom_patterns = {
'email': r'[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}',
'phone': r'\d{3}-\d{3}-\d{4}',
}
detector = GarbleDetector(
Strategy.PATTERN_MATCHING,
patterns=custom_patterns,
override_defaults=True # Use only custom patterns
)
API Reference
GarbleDetector
GarbleDetector(
strategy: Strategy,
threshold: float = 0.5,
threads: Optional[int] = None,
**kwargs
)
Parameters:
strategy: Detection strategy to usethreshold: Probability threshold (0.0-1.0) for binary predictionsthreads: Number of threads for batch processing**kwargs: Strategy-specific parameters
Methods:
predict(X): ReturnsboolorList[bool]predict_proba(X): ReturnsfloatorList[float]
EnsembleDetector
EnsembleDetector(
strategies: Optional[List[Strategy]] = None,
threshold: float = 0.5,
voting: str = "majority", # "majority", "average", "weighted", "any", "all"
weights: Optional[List[float]] = None,
threads: Optional[int] = None,
**kwargs
)
Strategy Enum
class Strategy(Enum):
# Core strategies (zero dependencies)
MARKOV_CHAIN = "markov_chain" # Recommended - High precision
NGRAM_FREQUENCY = "ngram_frequency" # Trigram analysis
WORD_LOOKUP = "word_lookup" # Zero dependencies dictionary
SYMBOL_RATIO = "symbol_ratio" # Symbol/number detection
REPETITION = "repetition" # Pattern repetition
HEX_STRING = "hex_string" # Hash/UUID detection
CHARACTER_FREQUENCY = "character_frequency"
WORD_LENGTH = "word_length"
PATTERN_MATCHING = "pattern_matching"
STATISTICAL_ANALYSIS = "statistical_analysis"
ENTROPY_BASED = "entropy_based"
VOWEL_RATIO = "vowel_ratio"
KEYBOARD_PATTERN = "keyboard_pattern"
# Strategy with optional dependency
ENGLISH_WORD_VALIDATION = "english_word_validation" # Requires: pygarble[spellchecker]
Architecture
pygarble/
├── __init__.py
├── core.py # GarbleDetector & EnsembleDetector
├── data/ # Embedded training data
│ ├── words.py # 50K English words
│ ├── bigrams.py # Character transition probabilities
│ └── trigrams.py # Common English trigrams
└── strategies/
├── base.py # BaseStrategy with shared utilities
├── markov_chain.py # Markov chain detection
├── ngram_frequency.py # Trigram frequency analysis
├── word_lookup.py # Dictionary lookup (zero deps)
├── symbol_ratio.py # Symbol/number detection
├── repetition.py # Pattern repetition
├── hex_string.py # Hash/UUID detection
├── character_frequency.py
├── word_length.py
├── pattern_matching.py # Regex patterns + keyboard detection
├── statistical_analysis.py
├── entropy_based.py # Shannon entropy + bigram analysis
├── english_word_validation.py # pyspellchecker (optional)
├── vowel_ratio.py # Vowel analysis + consonant clusters
└── keyboard_pattern.py # N-gram + keyboard row detection
Dependencies
Core library: Zero dependencies - works with Python 3.8+ only
Optional dependency:
pygarble[spellchecker]: pyspellchecker for English word validation- pyspellchecker>=0.7.0
Development
# Clone and setup
git clone https://github.com/brightertiger/pygarble.git
cd pygarble
pip install -r requirements.txt -r requirements-dev.txt
# Run tests
pytest tests/ -v
# Run benchmark
python regression/benchmark.py
# Linting
flake8 pygarble/
black pygarble/
mypy pygarble/
Contributing
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
Adding New Strategies
- Create a new file in
pygarble/strategies/ - Inherit from
BaseStrategy - Implement
_predict_impl()and_predict_proba_impl() - Add to
strategies/__init__.pyandcore.py - Add tests in
tests/
License
MIT License - see LICENSE for details.
Changelog
0.3.1 (Current)
- New Strategies: Added
SYMBOL_RATIO,REPETITION, andHEX_STRINGstrategies for specialized detection - New Voting Modes: Added
any(high recall) andall(high precision) voting modes for EnsembleDetector - Removed:
LANGUAGE_DETECTIONstrategy (FastText dependency had NumPy 2.0 compatibility issues) - Production-Grade Robustness:
- Thread safety with timeout and exception handling in batch processing
- Division by zero protection across all strategy calculations
- Parameter validation for all strategy-specific parameters
- Pre-compiled regex patterns for improved performance
- Comprehensive Edge Case Tests: 77 new tests covering parameter validation, type errors, Unicode handling, and boundary conditions
0.3.0
- Zero Dependencies: Core library now works without any external dependencies
- New Markov Chain Strategy: Character-level Markov chain trained on 300K+ English words
- New N-gram Frequency Strategy: Trigram analysis using 2000 most common English trigrams
- New Word Lookup Strategy: 50K embedded English word dictionary (replaces pyspellchecker dependency)
- Embedded Training Data: Pre-computed bigrams, trigrams, and word sets included in package
- Optional Dependencies: FastText and pyspellchecker moved to optional extras
- Lightweight Package: ~190KB wheel size (well under 5MB limit)
- Data Source: Training data from Peter Norvig's word frequency list (MIT licensed)
0.2.0
- New Keyboard Pattern Strategy: Best-performing strategy with 69.9% F1 score
- New Vowel Ratio Strategy: Highest precision (95.45%) with consonant cluster detection
- EnsembleDetector: Built-in ensemble with majority/average/weighted voting
- Enhanced Entropy Strategy: Added bigram frequency analysis using common English bigrams
- Enhanced Pattern Matching: Added keyboard row patterns, consonant clusters, alternating patterns
- Input Validation: Validates threshold (0-1) and threads parameters
- Type Hints: Full type annotation throughout the codebase
- Regression Tests: 117 test cases across 20 categories with benchmarking
- Performance: Regex patterns compiled once at initialization
0.1.0
- Initial release with 7 detection strategies
- Scikit-learn-like interface
- Probability scoring
- Modular architecture
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pygarble-0.3.2.tar.gz.
File metadata
- Download URL: pygarble-0.3.2.tar.gz
- Upload date:
- Size: 203.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
629919d2ca171cd8d8882936b115779f95fc32fe27b0d8d640073fb9d221becd
|
|
| MD5 |
a0675d0b6693e1a847555e86729d2ee7
|
|
| BLAKE2b-256 |
222b68949b3b71651eeb1a84b4f3b8ac6259b38e4604ae3c8102f7c66434fd9a
|
File details
Details for the file pygarble-0.3.2-py3-none-any.whl.
File metadata
- Download URL: pygarble-0.3.2-py3-none-any.whl
- Upload date:
- Size: 204.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9cebb050572ce48b5c45b2dec1267c9a2e63930a6c7347eceaddf6fd106dfbf3
|
|
| MD5 |
b651ace1129b82d5d609255605de51a2
|
|
| BLAKE2b-256 |
0823c231cb5cab4cffe807347fa7635fdda2b1305ecc4613de4d42d8ca75baed
|