oval-group / mlogger

a lightweight and simple logger for Machine Learning
MIT License
127 stars 12 forks source link

Replacing deprecated viz.updateTrace() #14

Closed bewagner closed 6 years ago

bewagner commented 6 years ago

Visdoms updateTrace() is deprecated. See https://github.com/facebookresearch/visdom/commit/5e1a28f740741ad265beb9fff00127631fbe6e11

To make the logger work with newer visdom versions, I replaced the call to viz.updateTrace() with a call to

viz.line(..., update='append')

lberrada commented 6 years ago

Nice, thanks.