-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalysis.py
More file actions
367 lines (346 loc) · 8.44 KB
/
analysis.py
File metadata and controls
367 lines (346 loc) · 8.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
from collections import defaultdict
from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.metrics.pairwise import cosine_similarity
TOPIC_KEYWORDS = {
# =======================
# LLM Infra / 推理 & 服务
# =======================
"LLM_Infra": [
"llm",
"large language model",
"inference",
"serving",
"inference server",
"high throughput",
"low latency",
"distributed inference",
"batching",
"kv cache",
"context length",
"quantization",
"int8",
"int4",
"model serving",
"model runtime",
"transformer",
"decoder-only",
"rag",
"retrieval augmented generation",
"semantic retrieval",
"vector search",
"gateway",
"api gateway",
"llama",
"mistral",
"gemini",
"deepseek",
],
# =======================
# Multimodal / 音视频 & OCR
# =======================
"Multimodal_AI": [
"multimodal",
"tts",
"text to speech",
"speech to text",
"asr",
"transcription",
"voice cloning",
"speech synthesis",
"ocr",
"pdf",
"document understanding",
"pdf linearization",
"image generation",
"video generation",
"face swap",
"deepfake",
"avatar",
"digital human",
"song generation",
"music generation",
"audio",
"video",
"vision",
],
# =======================
# Agent / MCP / 自动化
# =======================
"Agent_MCP": [
"agent",
"ai agent",
"coding agent",
"autonomous",
"agentic",
"mcp",
"model context protocol",
"skills",
"tool calling",
"workflow",
"orchestration",
"prompt engineering",
"system prompt",
"planning",
"reasoning",
"claude",
"claude code",
"copilot",
"assistant runtime",
"multi-agent",
"agent swarm",
],
# =======================
# Database / Storage
# =======================
"Database_Storage": [
"database",
"distributed database",
"sql",
"nosql",
"postgres",
"postgresql",
"mysql",
"mariadb",
"sqlite",
"mongodb",
"redis",
"timeseries",
"time-series",
"olap",
"analytics database",
"data warehouse",
"object storage",
"s3",
"kv store",
"key value",
"lakehouse",
"parquet",
],
# =======================
# System / OS / Runtime
# =======================
"System_Kernel": [
"kernel",
"operating system",
"linux",
"wayland",
"runtime",
"interpreter",
"virtual machine",
"microvm",
"emulator",
"simulation",
"x86",
"arm",
"scheduler",
"memory allocator",
"profiling",
"tracing",
],
# =======================
# Embedded / Firmware
# =======================
"Embedded_Firmware": [
"embedded",
"firmware",
"microcontroller",
"mcu",
"freertos",
"zephyr",
"iot",
"esp32",
"esp8266",
"flight controller",
"navigation",
"keyboard firmware",
"qmk",
"zmk",
"bare metal",
],
# =======================
# Network / Security
# =======================
"Networking_Security": [
"network",
"networking",
"proxy",
"reverse proxy",
"gateway",
"load balancer",
"vpn",
"wireguard",
"encryption",
"tls",
"ssl",
"security",
"vulnerability",
"scanner",
"sbom",
"xdr",
"siem",
"auth",
"sso",
"oauth",
],
# =======================
# DevTools / 工具链
# =======================
"DevTool_Testing": [
"developer tool",
"devtool",
"sdk",
"framework",
"library",
"testing",
"unit test",
"mock",
"fuzzing",
"ci",
"cd",
"pipeline",
"build system",
"docker",
"container",
"deployment",
],
# =======================
# CLI / Editor / 本地工具
# =======================
"CLI_Editor": [
"cli",
"command line",
"terminal",
"shell",
"prompt",
"prompt renderer",
"text editor",
"code editor",
"reverse engineering",
"disassembler",
"decompiler",
"hex editor",
],
# =======================
# Web App / 监控 / 自托管
# =======================
"WebApp_Monitoring": [
"web",
"web ui",
"self hosted",
"self-hosted",
"dashboard",
"monitoring",
"metrics",
"alerting",
"uptime",
"rss",
"news aggregation",
"crawler",
"scraper",
"youtube downloader",
"web service",
],
# =======================
# 游戏 / 物理 / 图形
# =======================
"Game_Physics": [
"game engine",
"physics engine",
"collision detection",
"rigid body",
"rendering",
"graphics",
"2d engine",
"3d engine",
"godot",
"gpu",
"shader",
],
# =======================
# 集合 / 教育 / 资料
# =======================
"Collection_Edu": [
"awesome",
"curated list",
"collection",
"roadmap",
"tutorial",
"learning",
"educational",
"algorithms",
"data structures",
"book",
],
# =======================
# 金融 / 量化
# =======================
"FinTech": [
"fintech",
"trading",
"algorithmic trading",
"quant",
"quantitative",
"backtesting",
"market data",
"financial system",
],
}
_TOPIC_NAMES = list(TOPIC_KEYWORDS.keys())
_TOPIC_DOCS = [" ".join(TOPIC_KEYWORDS[t]) for t in _TOPIC_NAMES]
_VECTORIZER = TfidfVectorizer(stop_words="english", ngram_range=(1, 3))
_TOPIC_VECS = _VECTORIZER.fit_transform(_TOPIC_DOCS) # [n_topics, n_words]
def classify_repo(text: str):
"""
input: repo_name + repo_description
output: best_topic, (topic: score)
"""
repo_vec = _VECTORIZER.transform([text]) # [1, n_words]
sims = cosine_similarity(repo_vec, _TOPIC_VECS)[0] # [n_topics]
topic_scores = {topic: float(score) for topic, score in zip(_TOPIC_NAMES, sims)}
best_topic = max(topic_scores, key=topic_scores.get)
if topic_scores[best_topic] < 0.1:
best_topic = "Unknown"
return best_topic, topic_scores
def tag_repo(repo: dict):
# 基础文本 (名称 + 描述)
base_text = f"{repo.get('repo_name', '')} {repo.get('repo_describe', '')}"
# 仓库标签
repo_topics = repo.get("repo_topics", [])
if repo_topics:
text = base_text + " " + " ".join(repo_topics)
else:
text = base_text
# README.md
repo_readme = repo.get("repo_readme", "")
if repo_readme:
text += " " + repo_readme
topic, topic_scores = classify_repo(text)
repo["topic"] = topic
repo["topic_scores"] = topic_scores
return repo
# 按 topic 分数聚合 repo
def aggregate_by_topic_score(
repos, *, min_score: float = 0.12, relative_ratio: float = 0.55
):
buckets = defaultdict(list) # 当key不存在时会自动创建一个
for r in repos:
scores = r.get("topic_scores", {})
if not scores:
topic = r.get("topic")
if topic and topic != "Unknown":
buckets[topic].append(r)
continue
best_score = max(scores.values(), default=0.0)
if best_score < min_score:
continue
threshold = max(min_score, best_score * relative_ratio)
matched = False
for topic, score in scores.items():
if score >= threshold:
buckets[topic].append(r)
matched = True
if not matched:
topic = r.get("topic")
if topic and topic != "Unknown":
buckets[topic].append(r)
return dict(buckets)