cossio
cossio
On this line: https://github.com/FluxML/model-zoo/blob/42967f6767beee4092348fd41b1af33442b75924/vision/mnist/conv.jl#L69 I get the following error: ``` ERROR: MethodError: no method matching maxpool(::TrackedArray{…,Array{Float32,4}}, ::Tuple{Int64,Int64}) Closest candidates are: maxpool(::TrackedArray, ::PoolDims; kw...) at /opt/julia-depot/packages/Tracker/RRYy6/src/lib/array.jl:446 maxpool(::AbstractArray{xT,N}, ::PoolDims; kwargs...) where {xT,...
I have an example of a moderately sized problem where problem formulation is consuming massive memory. I have no idea why this happens. Is there something inherently difficult to this...
This isn't an issue with the functioning of the website, which is great! Thanks for this very nice service. I'm just wondering if it would be too hard to build...
Currently there is no method available for: ```julia StatsBase.cor(x::AbstractVector, y::AbstractVector, w::AbstractWeights) ``` Is there a reason this method is missing?
```julia using LinearAlgebra using Optim: Optim, only_fg!, maximize function fg!(F, G, x) if G !== nothing G .= -x end if F !== nothing return -dot(x, x) / 2 end...
I found very little documentation about this. https://nlopt.readthedocs.io/en/stable/NLopt_Reference/#preconditioning-with-approximate-hessians But that only explains the C interface, and says that only `LD_CCSAQ` supports preconditioners. How is the interface in Julia? Is it...
``` f(x) = sum(x; dims=1) ForwardDiff.jacobian(f, [1. 2.; 3. 4.]) # returns 2x4 Array ``` Shouldn't it return a 1x2x2x2 Array?
Why these two are different? ```julia using Tullio w = collect(1.0:2.0); h = collect(1.0:3.0); I = zeros(4); @tullio I[j+k-1] = w[j] * h[k]; # I = [1.0, 2.0, 3.0, 6.0]...
Can we have offline access to evernote with this app? It would be nice that I could take a note, or modify existing notes, when the PC is offline, and...
Can the guide be updated to support Ubuntu 22.04?