Ian Fiske
Ian Fiske
I have some nested data structures that can take quite a long time to print. Here's sort-of an MWE: ``` using Interpolations vals = rand(n, n, n) itp = interpolate(vals,...
Here's an MWE where the callback function is ignored for the `CMAEvolutionStrategyOpt` solver: ``` using GalacticOptim using GalacticCMAEvolutionStrategy rosenbrock(x,p) = (p[1] - x[1])^2 + p[2] * (x[2] - x[1]^2)^2 x0...
I am working on a simulator and I'd like to take the gradient through it as it's part of an optimization problem. It is part of private work and I...
If I load the R package `units` within a julia task, then Julia crashes with a segfault. ``` using RCall @async begin R"library(units)" end ``` then Julia crashes with a...
With a file called `file.lp` having contents: ``` Minimize obj: - 2 x3 Subject To c1: x2 - x1
Not an issue, but just a question to inspire discussion. Instead of the transpiler approach, has anyone considered using https://github.com/hughperkins/coriander ? This has already been adapted to tensorflow (https://github.com/hughperkins/tf-coriander).
First, thank you for the awesome rtl4332mqtt addon! I'm using it with an Ambient Weather F007TH Thermo-Hygrometer outdoors and it works great on our farm. I'm thinking of adding more...
Type: Bug My company uses JAMF for security on our mac laptops. We are seeing high CPU from the security app JAMF (process com.jamf.protect.security-extension) when this extension is active. CPU...
It would be fantastic if other git hosting solutions were supported for package registration. In particular, gitlab, or a vanilla-git option. See https://github.com/JuliaRegistries/Registrator.jl/pull/45 for details.
Is it possible to adjust the amount of whitespace in between the individual plots in a corrplot? I tried looking at the source for the recipe, but I'm new to...