David Weber

Results 26 issues of David Weber

I'm not sure if this is a bug or a feature request. I like to use latex:clean to not have a cluttered filesystem; however, I can't seem to do so...

help wanted
pinned
hacktoberfest

example where I ran into this ``` ex = gpu(im*zeros(10)) y, back = pullback(x->abs.(x), ex) back(y) ``` if I'm reading correctly, it seems to come down to `ForwardDiff` not currently...

CUDA

For example, simply trying to double the length of a signal doesn't actually work: ``` x = randn(4) resample(x,4.0) resample(x,4//1) ``` both of which return a vector of length 14....

``` [idct(x) for x in eachslice(randn(641, 500),dims=2)] idct(view(randn(641, 500), :, 500)) ``` both result in a `FFTW plan applied to wrong memory alignment`. Some comparisons where I would've expected the...

I have a package that uses distributed and creates a different fft plan for each process. When I build with more than 1 thread, it becomes incredibly slow to create...

trying `fft(randn(ComplexF16,10))` gives the error ``` ERROR: MethodError: no method matching plan_fft(::Array{Complex{Float16},1}, ::UnitRange{Int64}) Closest candidates are: plan_fft(::Union{DenseArray{T

min example: `GLM.GlmResp(randn(10), Binomial(), LogitLink(), randn(Float32, 10), randn(10))` Gets stuck in a loop because `float` won't convert `Float64` and `Float32` to the same type. I just turned the first one...

I'm getting some weird intermittent `ReadOnlyMemoryError`s using interpolate as`interpolate(complexVectorToInterpolate, BSpline(Quadratic(Reflect())), OnGrid())`. It doesn't happen every time, but sometimes when it happens inside a function, julia suffers a segfault. I switched...

I'm needing to run logistic regression, ideally with the ability to be multinomial. I noticed that you ( @simonster ) also built a wrapper for GLMnet; have you had any...

enhancement
help wanted

In the interest of not pestering you all the time with updates to the continuous wavelet transform, I split it out into a separate package [here](https://github.com/dsweber2/ContinuousWavelets.jl) (longterm home is likely...