Lior Blech

Results 10 comments of Lior Blech

This issue seems to persist. I'm running solus mate, mate version 1.24. I got here while searching for possible causes for system freezes. This issue occured right before a freeze....

I succeeded in altering the flux example such that the bug does not occur: https://github.com/nomadbl/TensorBoardLogger.jl/commit/e0f2245c8b2bcf319cc987653d39f6e6444a2a39 The trick was to change lines like `@info "train" loss=loss_fn(pred, y) acc=accuracy(pred, y)` into `@info...

Since this seems to work with the workaround above I'm leaving this for now. I suspect that this has to be fixed by setting `node_name` or `tag` correctly in `Summary_Value`s...

@ToucheSir Great idea! I've implemented it in the above PR. Would be great if you can review it. (Shameless plug - please review my other PR's :pray: )

Thanks for the quick response. I did actually try it and it didn't work (line 14 in the link), so it's probably something with `render`?

Thanks for that additional catch. I've tried the semicolon in all these places just now, still no dice... Is there some way you would approach how to track down the...

I can reproduce the print on the REPL with: ``` using Gadfly, Cairo, Fontconfig pb = PipeBuffer(); p = plot(x=rand(100), Geom.point); show(pb, MIME("image/png"), render(p)); ```

I did a bit more investigating. I think the output we are seeing is coming from [this line in the Compose code](https://github.com/GiovineItalia/Compose.jl/blob/8e7e1a20e97f8a61654e9f0f47a25a8b41328d7f/src/cairo_backends.jl#L117) or somewhere around that.. Still trying to figure...

I'm working on putting together that MWE, just stopping to mention [this line](https://github.com/GiovineItalia/Compose.jl/blob/8e7e1a20e97f8a61654e9f0f47a25a8b41328d7f/src/cairo_backends.jl#L252) `img.emit_on_finish && typeof(img.out) == IOBuffer && display(img)` In some cases, which is our case I suspect, `img.emit_on_finish`...

I believe this is a duplicate of #126 where a workaround is given. I don't know how to solve it, any help there would be welcome!