mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-22 13:20:38 +08:00
Change let to const for normalizedValues
This commit is contained in:
@@ -44,7 +44,7 @@ const plotParetoFront = (study: StudyDetail) => {
|
||||
return
|
||||
}
|
||||
|
||||
let normalizedValues: number[][] = []
|
||||
const normalizedValues: number[][] = []
|
||||
completedTrials.forEach((t) => {
|
||||
if (t.values && t.values.length == dim) {
|
||||
const trialValues = t.values.map(
|
||||
|
||||
Reference in New Issue
Block a user