tom-plaa
tom-plaa
Just bumped into this issue myself; just commenting to raise awareness.
To make sure I understood, is your suggestion to make it default to a LinRange when trying to go through a StepRange using a Dual argument? Following the comments above,...
Got it, thanks. I may try to take a shot at defining those when I manage to have some free time, then.
Might my issue at https://github.com/FluxML/Flux.jl/issues/2339 be related to this? It contains anonymous functions that slice the input arrays, like `x->x[begin:inputpoints, 1, :]` for example. How would one go around correctly...
After checking the docs, this implies that the model definition must be available in the session, right? Is it necessary to create a custom struct and apply the `Flux.@functor` macro...
Thank you, I managed to make it work with the `loadmodel!` function. I will update my other issue accordingly. It might be clearer to expand this on the documentation to...
On 1.8, it seems the behavior is ``` julia> collect(range(1,1,length=5)) 5-element Vector{Float64}: 1.0 1.0 1.0 1.0 1.0 julia> collect(range(1, Dual(1,1), length=5)) 5-element Vector{Dual{Nothing, Float64, 1}}: Dual{Nothing}(1.0,0.0) Dual{Nothing}(1.0,0.25) Dual{Nothing}(1.0,0.5) Dual{Nothing}(1.0,0.75) Dual{Nothing}(1.0,1.0)...
If there's anything that needs to be changed for the PR to merged, I don't know exactly what is. Or if it should be redone. @lupemba , if in the...
Feel free to reuse my code. The tests were mostly written by @mcabbott, not myself.
test_func is a function that constructs a pdf from a fourier inverted characteristic version, and is an object from the Interpolations package. But I believe this is might indeed be...