Instructions to use saifyxpro/revpass-single with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ultralytics
How to use saifyxpro/revpass-single with ultralytics:
# Couldn't find a valid YOLO version tag. # Replace XX with the correct version. from ultralytics import YOLOvXX model = YOLOvXX.from_pretrained("saifyxpro/revpass-single") source = 'http://images.cocodataset.org/val2017/000000039769.jpg' model.predict(source=source, save=True) - Notebooks
- Google Colab
- Kaggle
File size: 1,304 Bytes
d2b4295 6f5244b d2b4295 6f5244b d2b4295 e557891 6f5244b c369b6f 6f5244b 3240857 6f5244b e557891 6f5244b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | ---
library_name: ultralytics
tags:
- image-classification
- yolo11
- recaptcha
- security
- revpass
license: mit
metrics:
- accuracy
---
# ๐ก๏ธ Revpass-Single (YOLOv26s-cls)


-brightgreen)

**Revpass-Single** is a highly optimized single-tile classifier designed to identify reCAPTCHA v2 tile contents. It is a core component of the **Revpass** AI solver system.
## ๐ Performance
- **Model Architecture**: YOLOv26s-cls (Medium)
- **Top-2 Accuracy**: **90.0%** (Verified on Stratified Validation Set)
- **Use Case**: Filtering "Best Match" tiles for 4x4 grids.
## ๐ Usage
```python
from ultralytics import YOLO
# Load the model
model = YOLO("[https://huggingface.co/saifyxpro/revpass-single/resolve/main/revpass-single.pt](https://huggingface.co/saifyxpro/revpass-single/resolve/main/revpass-single.pt)")
# Inference
results = model("path/to/tile.jpg")
print(results[0].probs.top1conf)
๐ Files
revpass-single.pt: PyTorch weights (Best).
revpass-single.onnx: ONNX export for high-performance inference.
Generated by Revpass Auto-Trainer |