AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
metrics.py
根目录
/
benchmarks
/
verification-stress
/
tasks
/
vs-neg-slowcheck
/
workdir
/
metrics.py
1
def p95(sorted_values):
2
if not sorted_values:
3
return 0
4
return sorted_values[int(len(sorted_values) * 0.95)]
5
6
def rate(events, seconds):
7
return len(events) / seconds
8
8 lines
PYTHON