跳到主要内容

挖掘结果概览

GET/research/mining/{run_id}/overview在线调试
GET https://api.shengkezhi.com/open/v1/research/mining/{run_id}/overview
等效 curl
curl "https://api.shengkezhi.com/open/v1/research/mining/{run_id}/overview" \
  -H "Authorization: Bearer sk_xxx"

GET /research/mining/{run_id}/overview — 挖掘结果概览。

需在请求头携带 Authorization: Bearer sk_xxx

路径参数

参数必填说明
run_id挖掘记录 ID

响应

响应 dataMiningOverview

字段类型必填说明
elimination_breakdownEliminationItem[]淘汰分布明细,按终态原因归类,合计等于候选总数。
funnelFunnelStage[]挖掘漏斗各阶段的剩余与淘汰计数。
kpiMiningKpi概览 KPI 指标块(候选、保留、淘汰、评估次数等)。
problem_groupsProblemGroup[]研究问题按前缀分组的计数。
routeobject(自由形)本 run 的因子路线(结构同 factor-routes 项,failure_scenarios/tags 为落库 JSON 原样)。
run_dirstring该次挖掘产物在 workspace 内的相对路径。
run_idstring单次挖掘记录 ID。

P4 · 策略研究执行结果预览

调用示例

curl "https://api.shengkezhi.com/open/v1/research/mining/20260531_053509_90ec76ba/overview" -H "Authorization: Bearer sk_xxx"
{
"code": 0,
"data": {
"elimination_breakdown": [
{
"count": 0,
"kind": "eliminated",
"reason": "体检淘汰",
"stage": "detect"
},
{
"count": 0,
"kind": "eliminated",
"reason": "复审淘汰",
"stage": "filter"
},
{
"count": 0,
"kind": "eliminated",
"reason": "正向测试淘汰",
"stage": "positive"
},
{
"count": 0,
"kind": "eliminated",
"reason": "高相关冗余",
"stage": "duplicate"
},
{
"count": 1,
"kind": "retained",
"reason": "终选保留",
"stage": "filter"
}
],
"funnel": [
{
"eliminated": 0,
"remaining": 1,
"stage": "去重初筛",
"step": "duplicate"
},
{
"eliminated": 0,
"remaining": 1,
"stage": "因子体检",
"step": "detect"
},
{
"eliminated": 0,
"remaining": 1,
"stage": "正向测试",
"step": "positive"
},
{
"eliminated": 0,
"remaining": 1,
"stage": "生成",
"step": "build"
},
{
"eliminated": 0,
"remaining": 1,
"stage": "终选保留",
"step": "filter"
}
],
"kpi": {
"eliminated": 0,
"evaluate_method": "default",
"problem_count": 1,
"retain_rate": 1.0,
"retained": 1,
"total_candidates": 1,
"total_evaluations": 1
},
"problem_groups": [
{
"count": 1,
"label": "期货时序",
"prefix": "FTS"
}
],
"route": {
"code": "90ec76ba1f23",
"compute_engine": "TimeSeriesAstEngine",
"create_time": "2026-05-31 05:35:09",
"creator": "route_factor_miner",
"economic_logic": "",
"failure_scenarios": [],
"key_inspect": "",
"market_mechanism": "",
"name": "量价共振趋势因子",
"tags": [],
"why_effective": ""
},
"run_dir": "pipeline_results/route_factor_miner/20260531_053509_90ec76ba",
"run_id": "20260531_053509_90ec76ba"
},
"msg": "ok"
}