Spaces:
Sleeping
Sleeping
| """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 | |