improve:点名算法

优化概率模型
This commit is contained in:
2025-11-29 16:58:40 +08:00
parent 094f1223d1
commit b8581b6368
3 changed files with 59 additions and 18 deletions
+2 -2
View File
@@ -663,9 +663,9 @@ namespace Ink_Canvas
[JsonProperty("enableMLAvoidance")]
public bool EnableMLAvoidance { get; set; } = true;
[JsonProperty("mlAvoidanceHistoryCount")]
public int MLAvoidanceHistoryCount { get; set; } = 20;
public int MLAvoidanceHistoryCount { get; set; } = 50;
[JsonProperty("mlAvoidanceWeight")]
public double MLAvoidanceWeight { get; set; } = 0.8;
public double MLAvoidanceWeight { get; set; } = 1.0;
[JsonProperty("enableQuickDraw")]
public bool EnableQuickDraw { get; set; } = true;
}