-
Would it make sense to be able to autodiff through `knn`s?
I tried using `ForwardDiff`
```julia
using NearestNeighbors
using ForwardDiff
data = rand(3, 10^3)
kdtree = KDTree(data)
Forward…
-
The entropy of a Gaussian distribution is
**k/2 * log(2 * pi * e) + 1/2 * log(|Sigma|)** according to the [Wikipedia ](https://en.wikipedia.org/wiki/Multivariate_normal_distribution) where k is the …
xuehy updated
6 years ago
-
Issue reported by Nicolas Legendre (https://github.com/NicolasLegendre1)
For this code:
![image](https://user-images.githubusercontent.com/8267869/128795411-3d82704f-0be6-4be1-810b-cd9444dbd179.pn…
-
I have problems with ScalarIndexing when training neural network transfered to gpu.
### Julia Version
```julia
julia> versioninfo()
Julia Version 1.8.3
Commit 0434deb161e (2022-11-14 20:14 UTC)…
-
Hi,
I've been trying to extend descent to be able to create a U-Net (as in https://arxiv.org/abs/1505.04597) with it.
A U-Net ist basically a bunch of convolutional layers that get concatenated wi…
-
I am installing dnnf on my GPU workstation with OS Ubuntu 20.04 by Source Install. The cuda version is 11.3.
After following your installation instructions on https://github.com/dlshriver/dnnf, I typ…
-
Hi,
now that hifiasm 'generates a pair of haplotype-resolved assemblies', what is the best way of scaffolding these? This has been on my mind a bit lately, and this might not be the best place to ask…
-
When approximate the initial filters kernel gθ(Λ) = diag(θ) with a polynomial
![image](https://user-images.githubusercontent.com/40826585/44521567-1512dc00-a706-11e8-8219-2b85f0f71002.png)
why we c…
-
Hi,
I created a model for a retailer with 38k customers and 36k articles and a sparsity of 0,55%. One part of the analysis is to find similiar customers, to get the "neighbours" I took the latent f…
-
Hello!
I want to implement my custom layer (Dense layer without bias term (y = Wx) and with custom weight initialization).
How can I do this? I've looked at https://github.com/google/neural-tang…