Update README.md
Browse files
README.md
CHANGED
|
@@ -12,9 +12,38 @@ short_description: Check Git Repos without cloning if its real LLM or fake
|
|
| 12 |
license: mit
|
| 13 |
---
|
| 14 |
|
| 15 |
-
|
|
|
|
| 16 |
|
| 17 |
-
|
| 18 |
|
| 19 |
-
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
license: mit
|
| 13 |
---
|
| 14 |
|
| 15 |
+
```markdown
|
| 16 |
+
# Check Git - ML Repo Analyzer
|
| 17 |
|
| 18 |
+
Quick tool to detect fake ML training repositories that are just API wrappers. For the community ["Wall of Shames"](https://github.com/wall-of-shames)
|
| 19 |
|
| 20 |
+
## What it does
|
| 21 |
+
|
| 22 |
+
Analyzes GitHub repositories to determine if they contain real machine learning training code or just wrapper scripts calling external APIs (OpenAI, Anthropic, etc).
|
| 23 |
+
|
| 24 |
+
## Features
|
| 25 |
+
|
| 26 |
+
- Pattern matching analysis (no token required)
|
| 27 |
+
- Optional LLM-powered deep analysis using HuggingFace Inference API
|
| 28 |
+
- Checks for real training indicators: torch.optim, loss.backward(), custom models
|
| 29 |
+
- Detects API wrapper patterns: openai.api, requests.post to APIs
|
| 30 |
+
- No data storage, runs entirely client-side
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
## Usage
|
| 34 |
+
|
| 35 |
+
Enter a GitHub repository URL and click Analyze.
|
| 36 |
+
|
| 37 |
+
For LLM analysis, provide your HuggingFace token (free at https://huggingface.co/settings/tokens).
|
| 38 |
+
|
| 39 |
+
## How it works
|
| 40 |
+
|
| 41 |
+
Without token: Uses regex pattern matching to detect training loops and API calls.
|
| 42 |
+
|
| 43 |
+
With token: Uses Qwen2.5-Coder-32B on HuggingFace's free inference API for deeper code understanding.
|
| 44 |
+
|
| 45 |
+
## License
|
| 46 |
+
|
| 47 |
+
MIT + ESOL v 1.0
|
| 48 |
+
|
| 49 |
+
By VolkanSah aka AliBrown@HF
|