José Pereira

Results 26 comments of José Pereira

Hi, so, currently, our best solution is to have an "Internals" hiden page? I would like to see something like: ```julia @privatedoc """ my_function() This docstring will not be considered...

I just want a new release for #615 ! Annoying little warning! ahah

I'm 100% a noob here. I've added something like: ```julia function load_node!(tape::Tape, ::OpConfig{:ONNX, :MatMul}, args::VarVec, attrs::AttrDict) return push_call!(tape, mul, args...) end ``` The mul function (`mul(xs...) = .*(xs...)`) should work?

So, according to those examples, Julia does the same thing: ```julia julia> a = [1 0; 0 1] 2×2 Matrix{Int64}: 1 0 0 1 julia> b = [4 1; 2...

That makes sense. I'm not entirelly sure how to implement this. Oh well.

My model is supposed to work on a 2D case, so I've implemented the `*` operation only. It solved that particular error. It seems I can't publish my changes as...

I'm currently working on forking the thing. I understand that, those dims were not in accordance to what I expected, so I also think it was an example. I've changed...

Yes, the dimensions should be 400 x 1. In the meanwhile I have a PR request to do with these changes, but I don't think it makes sense to do...

> Try this: > > ```julia > ENV["JULIA_DEBUG"] = Main # this will help to debug the loading > > function load_node!(tape::Tape, ::OpConfig{:ONNX, :MatMul}, args::VarVec, attrs::AttrDict) > return push_call!(tape, *,...

Awesome, can't wait! Great work, and again, thank you so much.