Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,10 +1,34 @@
|
|
| 1 |
-
|
| 2 |
---
|
| 3 |
library_name: ultralytics
|
| 4 |
tags:
|
| 5 |
- image-classification
|
| 6 |
-
-
|
|
|
|
|
|
|
| 7 |
- revpass
|
|
|
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
-
#
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
library_name: ultralytics
|
| 3 |
tags:
|
| 4 |
- image-classification
|
| 5 |
+
- yolo11
|
| 6 |
+
- recaptcha
|
| 7 |
+
- security
|
| 8 |
- revpass
|
| 9 |
+
license: mit
|
| 10 |
+
metrics:
|
| 11 |
+
- accuracy
|
| 12 |
---
|
| 13 |
+
# 🛡️ Revpass-Single (YOLO11m-cls)
|
| 14 |
+

|
| 15 |
+

|
| 16 |
+
-brightgreen)
|
| 17 |
+

|
| 18 |
+
**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.
|
| 19 |
+
## 📊 Performance
|
| 20 |
+
- **Model Architecture**: YOLO11m-cls (Medium)
|
| 21 |
+
- **Top-2 Accuracy**: **90.0%** (Verified on Stratified Validation Set)
|
| 22 |
+
- **Use Case**: Filtering "Best Match" tiles for 4x4 grids.
|
| 23 |
+
## 🚀 Usage
|
| 24 |
+
```python
|
| 25 |
+
from ultralytics import YOLO
|
| 26 |
+
# Load the model
|
| 27 |
+
model = YOLO("[https://huggingface.co/saifyxpro/revpass-single/resolve/main/revpass-single.pt](https://huggingface.co/saifyxpro/revpass-single/resolve/main/revpass-single.pt)")
|
| 28 |
+
# Inference
|
| 29 |
+
results = model("path/to/tile.jpg")
|
| 30 |
+
print(results[0].probs.top1conf)
|
| 31 |
+
📂 Files
|
| 32 |
+
revpass-single.pt: PyTorch weights (Best).
|
| 33 |
+
revpass-single.onnx: ONNX export for high-performance inference.
|
| 34 |
+
Generated by Revpass Auto-Trainer
|