Spaces:
Sleeping
Sleeping
File size: 334 Bytes
3b0e443 | 1 2 3 4 5 6 7 8 9 10 11 | """Learning system for captcha-solver-api.
Every solve attempt is stored in SQLite. The system:
- Tracks which solver works best per captcha type
- Adjusts solver order based on historical accuracy
- Runs optimization cycles via trainer.py
"""
from .db import LearningDB
from .collector import Collector
from .trainer import Trainer
|