|
@@ -31,7 +31,7 @@ interface Props {
|
|
|
const FORMULA_TEXT = `综合得分 = c × (α × sim_norm + (1-α) × rov_norm)
|
|
const FORMULA_TEXT = `综合得分 = c × (α × sim_norm + (1-α) × rov_norm)
|
|
|
sim_norm = clip((sim - simThreshold) / (1 - simThreshold), 0, 1)
|
|
sim_norm = clip((sim - simThreshold) / (1 - simThreshold), 0, 1)
|
|
|
rov_norm = clip((rov - rovP5) / (rovP95 - rovP5), 0, 1)
|
|
rov_norm = clip((rov - rovP5) / (rovP95 - rovP5), 0, 1)
|
|
|
- c = deconstructBoost (VIDEO_*) / 1.0 (其他维度)
|
|
|
|
|
|
|
+ c = deconstructBoost (选题/灵感点/关键点/目的点) / 1.0 (其他维度)
|
|
|
先按 simThreshold 硬筛 (sim < 阈值剔除), 再按综合分排序.`
|
|
先按 simThreshold 硬筛 (sim < 阈值剔除), 再按综合分排序.`
|
|
|
|
|
|
|
|
export default function RankingSettingsButton({
|
|
export default function RankingSettingsButton({
|
|
@@ -116,7 +116,10 @@ export default function RankingSettingsButton({
|
|
|
/>
|
|
/>
|
|
|
</Row>
|
|
</Row>
|
|
|
|
|
|
|
|
- <Row label="解构加权 c" tip="VIDEO_* 维度的额外加权系数, 其他维度恒为 1">
|
|
|
|
|
|
|
+ <Row
|
|
|
|
|
+ label="解构加权 c"
|
|
|
|
|
+ tip="选题 / 灵感点 / 关键点 / 目的点 维度的额外加权系数, 其他维度恒为 1"
|
|
|
|
|
+ >
|
|
|
<InputNumber
|
|
<InputNumber
|
|
|
min={0.5}
|
|
min={0.5}
|
|
|
max={3}
|
|
max={3}
|