Alibrown commited on
Commit
8e706c2
·
verified ·
1 Parent(s): 094916c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +33 -4
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
- # Welcome to Streamlit!
 
16
 
17
- Edit `/src/streamlit_app.py` to customize this app to your heart's desire. :heart:
18
 
19
- If you have any questions, checkout our [documentation](https://docs.streamlit.io) and [community
20
- forums](https://discuss.streamlit.io).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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