We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calling the function log_custom_scalar results in an error.
using Pkg Pkg.activate(mktempdir()) Pkg.add(name="TensorBoardLogger", version="0.1.19") using TensorBoardLogger logger = TBLogger("tensorboardlogger-issue-120", tb_overwrite) log_value(logger, "a", 1) log_value(logger, "b", 2) log_custom_scalar(logger, Dict("ab" => Dict("ab" => (tb_multiline, ["a", "b"])))) # ERROR: UndefVarError: `MultilineChartContent` not defined
This issue is fixed by #119:
# (Restart Julia) using Pkg Pkg.activate(mktempdir()) Pkg.add(url="https://github.com/de-souza/TensorBoardLogger.jl", rev="fix-MultilineChartContent-not-defined") using TensorBoardLogger logger = TBLogger("tensorboardlogger-issue-120", tb_overwrite) log_value(logger, "a", 1) log_value(logger, "b", 2) log_custom_scalar(logger, Dict("ab" => Dict("ab" => (tb_multiline, ["a", "b"])))) # OK
The text was updated successfully, but these errors were encountered:
log_custom_scalar(lg, layout)
No branches or pull requests
Calling the function log_custom_scalar results in an error.
Minimal Working Example
This issue is fixed by #119:
The text was updated successfully, but these errors were encountered: