Lior Blech

Results 8 issues of Lior Blech

In https://github.com/JuliaLogging/TensorBoardLogger.jl/pull/127 I'm constantly getting ``` Compose.Image{Compose.PNGBackend}(IOBuffer(data=UInt8[...], readable=true, writable=true, seekable=false, append=true, size=30688, maxsize=Inf, ptr=1, mark=-1), Cairo.CairoSurfaceBase{UInt32}(Ptr{Nothing} @0x0000000000000000, 535.0, 378.0), CairoContext(Ptr{Nothing} @0x0000000000000000, Cairo.CairoSurfaceBase{UInt32}(Ptr{Nothing} @0x0000000000000000, 535.0, 378.0), Ptr{Nothing} @0x0000000006376250), 534.5059133378628, 377.9527559055118, RGBA{Float64}(0.0,0.0,0.0,0.0),...

I Came here to document this problem and a workaround. The problem is not with Gadfly per se, but rather the way Gadfly interacts with applications by writing to `/temp`...

This follows issue https://github.com/GiovineItalia/Gadfly.jl/issues/1621 Here is a MWE involving only Compose functions, adapted from the example [arrow.jl](https://github.com/GiovineItalia/Compose.jl/blob/master/test/examples/arrow.jl) ```julia using Compose import Cairo, Fontconfig X = [0.047 0.87 0.95 0.93; 0.22...

I wasn't sure how much this issue overlaps with existing ones, so apologies if this is a duplicate. I constantly get into the aforementioned scalar indexing issue when working with...

After updating to ProtoBuf 1.0.0 #124 I found that summaries are not logged correctly to Tensorboard. Some of them do get logged but some don't. I suspect that's because some...

This pull request introduces a new feature to OneHotArray: the axis in which the vectors are one-hot can be changed at initialization time. This is achieved by a new constructor...

After working on #36 #35 and getting bogged down with the type inference, I'm trying the other route. I think it might also help with: - Simplifying the underlying code...

### Motivation and description I am working on a layer that produces one hot outputs, so I am looking into using OneHotArrays.jl. My gripe is that currently the datatype only...