diff --git a/optuna_dashboard/ts/components/GraphEdf.tsx b/optuna_dashboard/ts/components/GraphEdf.tsx index b2f3d9f2..ae1cffec 100644 --- a/optuna_dashboard/ts/components/GraphEdf.tsx +++ b/optuna_dashboard/ts/components/GraphEdf.tsx @@ -32,39 +32,31 @@ export const Edf: FC<{ }, [study, objectiveId, theme.palette.mode]) return ( - - - - EDF - - {study !== null && study.directions.length !== 1 ? ( - - Objective ID: - - - ) : null} - + + + EDF + + {study !== null && study.directions.length !== 1 ? ( + + Objective ID: + + + ) : null} - - + ) diff --git a/optuna_dashboard/ts/components/GraphHistory.tsx b/optuna_dashboard/ts/components/GraphHistory.tsx index 757a800a..9d341c6a 100644 --- a/optuna_dashboard/ts/components/GraphHistory.tsx +++ b/optuna_dashboard/ts/components/GraphHistory.tsx @@ -76,90 +76,94 @@ export const GraphHistory: FC<{ return ( - - - - History - - {study !== null && study.directions.length !== 1 ? ( - - Objective ID: - - - ) : null} + + + History + + {study !== null && study.directions.length !== 1 ? ( - Log y scale: - + Objective ID: + - + Log y scale: + + + + Filter state: + + } + label="Complete" + /> + + } + label="Pruned" + /> + + + X-axis: + - Filter state: - } - label="Complete" + value="number" + control={} + label="Number" /> - } - label="Pruned" + value="datetime_start" + control={} + label="Datetime start" /> - - - X-axis: - - } - label="Number" - /> - } - label="Datetime start" - /> - } - label="Datetime complete" - /> - - - + } + label="Datetime complete" + /> + +
diff --git a/optuna_dashboard/ts/components/GraphHyperparameterImportances.tsx b/optuna_dashboard/ts/components/GraphHyperparameterImportances.tsx index cd033dda..84ec0b72 100644 --- a/optuna_dashboard/ts/components/GraphHyperparameterImportances.tsx +++ b/optuna_dashboard/ts/components/GraphHyperparameterImportances.tsx @@ -82,39 +82,31 @@ export const GraphHyperparameterImportances: FC<{ return ( - - - - Hyperparameter importance - - {study !== null && study.directions.length !== 1 ? ( - - Objective ID: - - - ) : null} - + + + Hyperparameter importance + + {study !== null && study.directions.length !== 1 ? ( + + Objective ID: + + + ) : null} - - + ) diff --git a/optuna_dashboard/ts/components/GraphIntermediateValues.tsx b/optuna_dashboard/ts/components/GraphIntermediateValues.tsx index 6f60bae9..f5251ef6 100644 --- a/optuna_dashboard/ts/components/GraphIntermediateValues.tsx +++ b/optuna_dashboard/ts/components/GraphIntermediateValues.tsx @@ -14,21 +14,19 @@ export const GraphIntermediateValues: FC<{ }, [trials, theme.palette.mode]) return ( - - - - Intermediate values - - + + + Intermediate values + - - + ) diff --git a/optuna_dashboard/ts/components/GraphParallelCoordinate.tsx b/optuna_dashboard/ts/components/GraphParallelCoordinate.tsx index 9bbf997d..93d78e7a 100644 --- a/optuna_dashboard/ts/components/GraphParallelCoordinate.tsx +++ b/optuna_dashboard/ts/components/GraphParallelCoordinate.tsx @@ -33,39 +33,31 @@ export const GraphParallelCoordinate: FC<{ return ( - - - - Parallel Coordinate - - {study !== null && study.directions.length !== 1 ? ( - - Objective ID: - - - ) : null} - + + + Parallel Coordinate + + {study !== null && study.directions.length !== 1 ? ( + + Objective ID: + + + ) : null} - - + ) diff --git a/optuna_dashboard/ts/components/GraphParetoFront.tsx b/optuna_dashboard/ts/components/GraphParetoFront.tsx index f5aeb8a4..5d4fe1b2 100644 --- a/optuna_dashboard/ts/components/GraphParetoFront.tsx +++ b/optuna_dashboard/ts/components/GraphParetoFront.tsx @@ -38,19 +38,19 @@ export const GraphParetoFront: FC<{ return ( - + Pareto Front {study !== null && study.directions.length !== 1 ? ( <> - + Objective X ID: - + Objective Y ID: - {study.directions.map((d, i) => ( - - {i} - - ))} - - - ) : null} - - Parameter - + {study.directions.map((d, i) => ( + + {i} ))} - - Log y scale: - - - + ) : null} + + Parameter + + + + Log y scale: + + - + )