You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I updated TensorboardLogger to the latest 0.1.21 version, and the following minimum example doesn't work anymore:
using Logging
using TensorBoardLogger
using ValueHistories
logger =TBLogger("logs"; min_level=Logging.Info)
with_logger(logger) do@info"train" loss =1.0@info"train" loss =0.0end
r =TBReader("logs1")
hist =MVHistory()
TensorBoardLogger.map_summaries(r) do tag, iter, val
push!(hist, Symbol(tag), iter, val)
end
I have tracked down the commit which introduced this error (see 45f831e). It is caused by upgrading to the a newer protobuf version. I would guess that the masked_crc32c (this file) is perhaps faulty? I keep getting checksum errors for my own issues.
EDIT: MWE without other deps:
using Logging
using TensorBoardLogger
logger =TBLogger("logs", tb_increment)
with_logger(logger) do@info"train" loss =1.0@info"train" loss =0.0end
r =TBReader("logs")
println("tag\titer\tval")
TensorBoardLogger.map_summaries(r) do tag, iter, val
println("$tag\t$iter\t$val")
end
Hello, I updated
TensorboardLogger
to the latest0.1.21
version, and the following minimum example doesn't work anymore:Here is the error:
Reading files written with an older version still works.
Am I missing something ?
ps: by the way, it seems that version
0.1.20
cannot be installed from the general registry for some reason (only from the github repository url)The text was updated successfully, but these errors were encountered: