mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-09 11:28:14 +08:00
Fix bug
This commit is contained in:
@@ -202,9 +202,10 @@ const getIsDominated2D = (normalizedValues: number[][]) => {
|
||||
sorted.forEach((values) => {
|
||||
if (
|
||||
values[1] > minValue1 ||
|
||||
(values[1] >= minValue1 && values[0] > maxValue0)
|
||||
(values[1] === minValue1 && values[0] > maxValue0)
|
||||
) {
|
||||
isDominated[values[2]] = true
|
||||
} else {
|
||||
minValue1 = values[1]
|
||||
}
|
||||
maxValue0 = values[0]
|
||||
|
||||
Reference in New Issue
Block a user