Dennis Hoelgaard Bal
Dennis Hoelgaard Bal
In reading the documentation for `fftfreqs`, I did not find what I came there for - a clarification about if the frequencies were measured in oscillations/second, or radians/second. From my...
I think this package looks nice, but I had to stumble over it in [this discourse discussion](https://discourse.julialang.org/t/saving-julia-dataframes-efficiently-in-terms-of-size-on-the-disk/32151/7). Could it be a good idea to have it added to the `JuliaData`...
With the single metric `accuracy`, the output-tables (which I love) look like this: ``` Epoch 11 TrainingPhase(): 100%|███████████████████████████████████████████| Time: 0:00:00 ┌───────────────┬───────┬─────────┬──────────┐ │ Phase │ Epoch │ Loss │ Accuracy │...
The example [Training an image classifier](https://fluxml.ai/FluxTraining.jl/dev/documents/docs/tutorials/mnist.ipynb) currently uses the following code: ``` xs, ys = ( # convert each image into h*w*1 array of floats [Float32.(reshape(img, 28, 28, 1)) for...
It would be nice to have a section in the documentation for different stopping conditions. The only way I was able to dig the information out was with `methods(solve)`. Things...
Check out the following example: ``` julia> using NonlinearSolve, LinearAlgebra julia> f(u,p) = u .* u .- p; julia> u0 = [1.0, 1.0]; julia> p = 2.0; julia> probN =...
When attempting to iterate a solver that has not been solved, the user is told that there is no method matching `iterate` for the solver. Same goes for `getindex`: ```...
I want to store the trace during solving. I would love to use the native NonlinearSolve methods for that, but it appears to me that no such thing is implemented....
When I pass matrices of type `Diagonal` to `eigen`, I get errors. This should work, right? Demonstrating the issue ``` julia> using LinearAlgebra julia> A = Diagonal([1, 2]) 2×2 Diagonal{Int64,...
Demo of problem ``` julia> begin plot(0..2, sin, label="test") axislegend(position=(1.0, 1.0)) end Legend() julia> begin plot(0..2, sin, label="test") axislegend(position=(1, 1)) end ERROR: MethodError: Cannot `convert` an object of type Int64...