Views
No views yet
vision-ai-recaptcha-solver to solve reCAPTCHA challenges.recaptcha_classification_57k.onnx) and PyTorch (recaptcha_classification_57k.pt)other)other class represents non-target/background tiles and is intentionally
not treated as a match by the solver.vision-ai-recaptcha-solver package.DannyLuna/recaptcha-57k-images-dataset.1from ultralytics import YOLO
2
3model = YOLO("recaptcha_classification_57k.onnx", task="classify")
4results = model("tile.jpg")
5
6probs = results[0].probs
7top1_idx = int(probs.top1)
8print(model.names[top1_idx], float(probs.top1conf))1from vision_ai_recaptcha_solver import RecaptchaSolver, SolverConfig
2
3with RecaptchaSolver(SolverConfig()) as solver:
4 result = solver.solve(
5 website_key="your_site_key",
6 website_url="https://example.com/your-page-with-recaptcha",
7 )
8 print(result.token)recaptcha_classification_57k.onnxrecaptcha_classification_57k.ptLICENSE file for details.