Datasets:
Formats:
csv
Size:
< 1K
Tags:
proxy-analysis
proxy-validation
ai-proxy-detection
anonymity-classification
latency-monitoring
reputation-scoring
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,81 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- proxy-analysis
|
| 5 |
+
- proxy-validation
|
| 6 |
+
- ai-proxy-detection
|
| 7 |
+
- anonymity-classification
|
| 8 |
+
- latency-monitoring
|
| 9 |
+
- reputation-scoring
|
| 10 |
+
- duplicate-proxy-detection
|
| 11 |
+
- bhproxy
|
| 12 |
+
- proxy-checker
|
| 13 |
+
pretty_name: BHProxy Engine AI Benchmarks
|
| 14 |
+
size_categories:
|
| 15 |
+
- n<1K
|
| 16 |
---
|
| 17 |
+
|
| 18 |
+
# BHProxy Engine AI Benchmarks
|
| 19 |
+
|
| 20 |
+
[](https://doi.org/10.5281/zenodo.20922133)
|
| 21 |
+
|
| 22 |
+
Benchmark dataset of 20 proxy evaluation cases with individual scores for availability, latency, anonymity, protocol support, reputation, and duplicate risk.
|
| 23 |
+
|
| 24 |
+
Built by [BHProxy.com](https://bhproxy.com).
|
| 25 |
+
|
| 26 |
+
## Dataset Description
|
| 27 |
+
|
| 28 |
+
This dataset contains benchmark data for an intelligent proxy analysis system that combines automated network validation with AI-assisted detection to identify unhealthy, duplicate, low-quality, and potentially abusive proxy endpoints.
|
| 29 |
+
|
| 30 |
+
## Columns
|
| 31 |
+
|
| 32 |
+
| Column | Type | Description |
|
| 33 |
+
|--------|------|-------------|
|
| 34 |
+
| id | integer | Case ID |
|
| 35 |
+
| proxy_address | string | Proxy IP:port address |
|
| 36 |
+
| availability_score | integer | Availability score (0-100) |
|
| 37 |
+
| latency_score | integer | Latency score (0-100) |
|
| 38 |
+
| anonymity_score | integer | Anonymity score (0-100) |
|
| 39 |
+
| protocol_support_score | integer | Protocol support score (0-100) |
|
| 40 |
+
| reputation_score | integer | Reputation score (0-100) |
|
| 41 |
+
| duplicate_risk_score | integer | Duplicate risk score (0-100) |
|
| 42 |
+
| overall_proxy_health | integer | Overall proxy health score (0-100) |
|
| 43 |
+
| priority_signal | string | Lowest scoring signal to act on first |
|
| 44 |
+
| anonymity_level | string | Transparent, Anonymous, or Elite |
|
| 45 |
+
| protocol | string | Supported protocol(s) |
|
| 46 |
+
| country | string | Proxy geographic location |
|
| 47 |
+
| notes | string | Case notes |
|
| 48 |
+
|
| 49 |
+
## Score Interpretation
|
| 50 |
+
|
| 51 |
+
| Score | Status | Action |
|
| 52 |
+
|-------|--------|--------|
|
| 53 |
+
| 0-30 | Critical | Remove from pool immediately |
|
| 54 |
+
| 31-60 | At Risk | Flag for re-validation |
|
| 55 |
+
| 61-80 | Healthy | Safe to use |
|
| 56 |
+
| 81-100 | Excellent | Premium quality endpoint |
|
| 57 |
+
|
| 58 |
+
## Usage
|
| 59 |
+
|
| 60 |
+
```python
|
| 61 |
+
import pandas as pd
|
| 62 |
+
df = pd.read_csv("proxy_benchmarks.csv")
|
| 63 |
+
print(df.head())
|
| 64 |
+
```
|
| 65 |
+
|
| 66 |
+
## Citation
|
| 67 |
+
|
| 68 |
+
BHProxy.com. (2026). BHProxy Engine AI. Zenodo. https://doi.org/10.5281/zenodo.20922133
|
| 69 |
+
|
| 70 |
+
## Links
|
| 71 |
+
|
| 72 |
+
| Platform | URL |
|
| 73 |
+
|----------|-----|
|
| 74 |
+
| Website | https://bhproxy.com |
|
| 75 |
+
| GitHub | https://github.com/BHProxy/BHProxy-Engine-AI |
|
| 76 |
+
| NPM | https://npmjs.com/package/@bhproxy/engine-ai |
|
| 77 |
+
| Zenodo | https://doi.org/10.5281/zenodo.20922133 |
|
| 78 |
+
|
| 79 |
+
## License
|
| 80 |
+
|
| 81 |
+
MIT — [BHProxy.com](https://bhproxy.com)
|