Closed nabenabe0928 closed 3 months ago
@keisuke-umezawa Could you take a look at this issue?
I also notice an another issue that TableArtifactViewer
is not enabled when using trial artifacts.
https://github.com/optuna/optuna-dashboard/pull/877
@c-bata ok! I will handle it.
@keisuke-umezawa @c-bata
Replacing an empty string with a random string resolved the issue:
return keys.map((key) => ({
header: key || " ",
accessorFn: (info: Data) =>
typeof info[key] === "object" ? JSON.stringify(info[key]) : info[key],
enableSorting: true,
enableColumnFilter: false,
}))
I also checked if duplications in header_key
cause any problems, but I did not observe any issues.
Fixed in #913.
Description
When I upload this CSV file as an artifact to a study and click the square (see Figure 1) at the artifact, it whites out.
Figure 1. The icon of the artifact
Figure 2. The dashboard page
The page in Figure 2. whites out when clicking the square button. The URL does not change, the
Go Back
button does not resolve the problem. Refreshing the page fixes the problem.How to Reproduce
Python version
3.9
Optuna version
4.0.0b0
optuna-dashboard version or git revision
The HEAD of the main branch
Web browser
Google Chrome