saifyxpro commited on
Commit
6f5244b
·
verified ·
1 Parent(s): 1a5e9b3

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +28 -4
README.md CHANGED
@@ -1,10 +1,34 @@
1
-
2
  ---
3
  library_name: ultralytics
4
  tags:
5
  - image-classification
6
- - yolov26s-cls
 
 
7
  - revpass
 
 
 
8
  ---
9
- # YOLOv26s-cls (Revpass Single)
10
- Custom reCAPTCHA v2 classification model.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ ![Badge](https://img.shields.io/badge/Task-Image_Classification-blue)
15
+ ![Badge](https://img.shields.io/badge/Model-YOLO11m--cls-green)
16
+ ![Badge](https://img.shields.io/badge/Accuracy-90.0%25_(Top--2)-brightgreen)
17
+ ![Badge](https://img.shields.io/badge/License-MIT-orange)
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