DannyLuna/recaptcha-57k-images-dataset
Preview • Updated • 116 • 2
YOLO based image classification model for reCAPTCHA images. This
model is used by vision-ai-recaptcha-solver to solve reCAPTCHA challenges.
recaptcha_classification_57k.onnx) and PyTorch (recaptcha_classification_57k.pt)other)Target classes in this model:
The other class represents non-target/background tiles and is intentionally
not treated as a match by the solver.
vision-ai-recaptcha-solver package.Trained on the dataset:
DannyLuna/recaptcha-57k-images-dataset.
Trained with Ultralytics YOLO classification and exported to ONNX with dynamic input shapes.
from ultralytics import YOLO
model = YOLO("recaptcha_classification_57k.onnx", task="classify")
results = model("tile.jpg")
probs = results[0].probs
top1_idx = int(probs.top1)
print(model.names[top1_idx], float(probs.top1conf))
from vision_ai_recaptcha_solver import RecaptchaSolver, SolverConfig
with RecaptchaSolver(SolverConfig()) as solver:
result = solver.solve(
website_key="your_site_key",
website_url="https://example.com/your-page-with-recaptcha",
)
print(result.token)
recaptcha_classification_57k.onnxrecaptcha_classification_57k.ptUse this model only for lawful, authorized purposes such as research, benchmarking, or testing in controlled environments.
MIT License. See the repository LICENSE file for details.