Denis Barucic

Results 60 comments of Denis Barucic

Oh, I apologize for that. I now see that I should have used a different communication channel. However, I would still like to hear what other people think about the...

I am also not certain about the interaction. It would be great if we could come up with something more convenient (bigger, easier to click it) than the eye button.

Thank you for your feedback! > So asking the users to explicitly expand an `Array{RGB{Float64}, 2}` into `Array{Float64, 3}` is not a good design. I think this is where the...

> keep in mind that julia is column major, I think your above table reflects row major order Yes, you are right. I am sorry if the order that I...

How about moving this to the *Developer's guide* section of the docs? Also, it would be nice if we could describe what each "kind" (view, stepview, etc.) means. I believe...

Let me know if I can help. I could, e.g., prepare the page, describe the augment modes that I understand well, and let you complete the remaining modes.

The problem does not seem to be with batches. For example, this works: ```julia using Augmentor img = testpattern() batch = cat(img, img, dims=3) augmentbatch!(similar(batch, 500,600,2), batch, Resize(500, 600)) ```...

We are currently working on improving the documentation. Please, see [this example](https://evizero.github.io/Augmentor.jl/dev/examples/flux/) that explains some of the questions raised here.

This is generally the same issue as in #56.

Oh, yeah! I did not consider this. Just to confirm: ```julia julia> using Augmentor julia> img = rand(5,5) 5×5 Matrix{Float64}: 0.135452 0.215202 0.474272 0.0512992 0.481672 0.78849 0.272553 0.758369 0.950766 0.130598...