Kenta Sato
Kenta Sato
Hello, This plugin greatly save my coding time and I want to enjoy it with my favorite language: [Julia](http://julialang.org/). This pull request adds the support of Julia. I'm not sure...
I expected the following works but it doesn't: ``` julia> using NamedTuples julia> convert(@NT(foo::Int,bar::String), (42, "bar")) ERROR: MethodError: Cannot `convert` an object of type Tuple{Int64,String} to an object of type...
Hi, I'm interested in accelerating computation of the [RBF kernel](https://en.wikipedia.org/wiki/Radial_basis_function_kernel) using this library. The function looks like this: ``` julia using Distances function rbf_kernel(X, γ) K = pairwise(SqEuclidean(), X) scale!(K,...
I often add the following configuration file (`.envrc`) to a package repository in order to activate a package-local environment using [direnv](https://github.com/direnv/direnv): .envrc: ``` export JULIA_PROJECT=@. ``` I know this is...
I have encountered an issue when attempting to apply a zero-sized array to a `Dense` layer in Flux.jl. The operation fails due to a division by zero error, as the...
Currently, `ZGroup` opens a group immediately and recursively, which causes performance issues, especially when the group contains a large number of subarrays or subgroups. For example, in my benchmark, a...