Update README.md
Browse files
README.md
CHANGED
|
@@ -15,7 +15,9 @@ license: mit
|
|
| 15 |
|
| 16 |
# Check Git - ML Repo Analyzer
|
| 17 |
|
| 18 |
-
Quick tool to detect fake ML training repositories that are just API wrappers.
|
|
|
|
|
|
|
| 19 |
|
| 20 |
## What it does
|
| 21 |
|
|
@@ -29,21 +31,27 @@ Analyzes GitHub repositories to determine if they contain real machine learning
|
|
| 29 |
- Detects API wrapper patterns: openai.api, requests.post to APIs
|
| 30 |
- No data storage, runs entirely client-side
|
| 31 |
|
| 32 |
-
|
| 33 |
## Usage
|
| 34 |
-
[Demo](https://huggingface.co/spaces/Alibrown/Check-Git/)
|
| 35 |
-
> Enter a GitHub repository URL and click Analyze.
|
| 36 |
|
| 37 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
|
| 49 |
-
By VolkanSah aka AliBrown@HF
|
|
|
|
| 15 |
|
| 16 |
# Check Git - ML Repo Analyzer
|
| 17 |
|
| 18 |
+
Quick tool to detect fake ML training repositories that are just API wrappers.
|
| 19 |
+
|
| 20 |
+
Built for the ["Wall of Shames"](https://github.com/wall-of-shames?view_as=public) community - help save the world from wannabe AI scammers.
|
| 21 |
|
| 22 |
## What it does
|
| 23 |
|
|
|
|
| 31 |
- Detects API wrapper patterns: openai.api, requests.post to APIs
|
| 32 |
- No data storage, runs entirely client-side
|
| 33 |
|
|
|
|
| 34 |
## Usage
|
|
|
|
|
|
|
| 35 |
|
| 36 |
+
**Live Demo:** https://huggingface.co/spaces/Alibrown/Check-Git
|
| 37 |
+
|
| 38 |
+
Enter a GitHub repository URL and click Analyze.
|
| 39 |
+
|
| 40 |
+
For LLM-powered analysis, provide your HuggingFace token (free at https://huggingface.co/settings/tokens).
|
| 41 |
|
| 42 |
## How it works
|
| 43 |
|
| 44 |
+
**Without token:** Uses regex pattern matching to detect training loops and API calls.
|
| 45 |
|
| 46 |
+
**With token:** Uses Qwen2.5-Coder-32B on HuggingFace's free inference API for deeper code understanding.
|
| 47 |
|
| 48 |
## License
|
| 49 |
|
| 50 |
+
Dual-licensed under [MIT](LICENSE) + [ESOL v1.1](ESOL)
|
| 51 |
+
|
| 52 |
+
---
|
| 53 |
+
|
| 54 |
+
**Built with ❤️ by VolkanSah (AliBrown@HF) for JADE, NCF, RustySafe and the Wall of Shames community**
|
| 55 |
+
|
| 56 |
+
*With assistance from Claude (Anthropic)*
|
| 57 |
|
|
|