mirror of
https://github.com/wassname/optuna-dashboard.git
synced 2026-09-23 13:30:25 +08:00
108 lines
2.7 KiB
TypeScript
108 lines
2.7 KiB
TypeScript
import * as plotly from "plotly.js-dist-min"
|
|
import React, { FC, useEffect, useMemo } from "react"
|
|
import { Typography, useTheme, Box } from "@mui/material"
|
|
import { plotlyDarkTemplate } from "./PlotlyDarkMode"
|
|
import { Target, useFilteredTrialsFromStudies } from "../trialFilter"
|
|
|
|
const getPlotDomId = (objectiveId: number) => `graph-edf-${objectiveId}`
|
|
|
|
interface EdfPlotInfo {
|
|
study_name: string
|
|
trials: Trial[]
|
|
}
|
|
|
|
export const GraphEdf: FC<{
|
|
studies: StudyDetail[]
|
|
objectiveId: number
|
|
}> = ({ studies, objectiveId }) => {
|
|
const theme = useTheme()
|
|
const domId = getPlotDomId(objectiveId)
|
|
const target = useMemo<Target>(
|
|
() => new Target("objective", objectiveId),
|
|
[objectiveId]
|
|
)
|
|
const trials = useFilteredTrialsFromStudies(studies, [target], false)
|
|
const edfPlotInfos = studies.map((study, index) => {
|
|
const e: EdfPlotInfo = {
|
|
study_name: study?.name,
|
|
trials: trials[index],
|
|
}
|
|
return e
|
|
})
|
|
|
|
useEffect(() => {
|
|
plotEdf(edfPlotInfos, target, domId, theme.palette.mode)
|
|
}, [studies, target, theme.palette.mode])
|
|
|
|
return (
|
|
<Box>
|
|
<Typography
|
|
variant="h6"
|
|
sx={{ margin: "1em 0", fontWeight: theme.typography.fontWeightBold }}
|
|
>
|
|
{`EDF for ${target.toLabel(studies[0].objective_names)}`}
|
|
</Typography>
|
|
<Box id={domId} sx={{ height: "450px" }} />
|
|
</Box>
|
|
)
|
|
}
|
|
|
|
const plotEdf = (
|
|
edfPlotInfos: EdfPlotInfo[],
|
|
target: Target,
|
|
domId: string,
|
|
mode: string
|
|
) => {
|
|
if (document.getElementById(domId) === null) {
|
|
return
|
|
}
|
|
if (edfPlotInfos.length === 0) {
|
|
plotly.react(domId, [], {
|
|
template: mode === "dark" ? plotlyDarkTemplate : {},
|
|
})
|
|
return
|
|
}
|
|
|
|
const target_name = "Objective Value"
|
|
const layout: Partial<plotly.Layout> = {
|
|
xaxis: {
|
|
title: target_name,
|
|
},
|
|
yaxis: {
|
|
title: "Cumulative Probability",
|
|
},
|
|
margin: {
|
|
l: 50,
|
|
t: 0,
|
|
r: 50,
|
|
b: 50,
|
|
},
|
|
template: mode === "dark" ? plotlyDarkTemplate : {},
|
|
}
|
|
|
|
const plotData: Partial<plotly.PlotData>[] = edfPlotInfos.map((h) => {
|
|
const values = h.trials.map((t) => target.getTargetValue(t) as number)
|
|
const numValues = values.length
|
|
const minX = Math.min(...values)
|
|
const maxX = Math.max(...values)
|
|
const numStep = 100
|
|
const _step = (maxX - minX) / (numStep - 1)
|
|
|
|
const xValues = []
|
|
const yValues = []
|
|
for (let i = 0; i < numStep; i++) {
|
|
const boundary_right = minX + _step * i
|
|
xValues.push(boundary_right)
|
|
yValues.push(values.filter((v) => v <= boundary_right).length / numValues)
|
|
}
|
|
|
|
return {
|
|
type: "scatter",
|
|
name: `${h.study_name}`,
|
|
x: xValues,
|
|
y: yValues,
|
|
}
|
|
})
|
|
plotly.react(domId, plotData, layout)
|
|
}
|