Eugene Shvarts

Results 4 issues of Eugene Shvarts

Suppose I wish to plot two random graphs: ```julia using Graphs, Plots, GraphRecipes function rand_gs(n, p) g1 = Graph(n) g2 = Graph(n) for e in [Edge(i, j) for i=1:n for...

I'd love to be able to copy an image from elsewhere, and while the app's open to Image-to-Image, just paste to input it. Likewise, for any of the image outputs,...

https://github.com/chengchingwen/Transformers.jl/blob/91a3fe00bad5bb9ebff35b61356c3d52ad3efba3/src/huggingface/implementation/clip/tokenizer.jl#L19 The above line seems like a bug? `bos_token`, etc. are all provided as arguments to the function, but `unk_token` is not defined.

bug

It looks like `JSON3.read(cmd::Cmd)` just does `JSON3.read(Base.read(cmd, String))`, but an oversight is that `JSON3.read(cmd::Cmd, sometype::Type)` doesn't yield `JSON3.read(Base.read(cmd, String), sometype)`. This is an oversight and a one line fix with...