Denis Barucic
Denis Barucic
Thank you for your input, Morten. > If there is an `@id` reference that is the same as a docstring, it should take precedence: https://documenter.juliadocs.org/dev/man/syntax/#Label-precedence-403457a5 I see. The problem is...
It is a bug in LIBLINEAR.jl. Structure `Parameter` was not properly mirroring the corresponding C structure in LIBLINEAR. I pushed a quick fix (see https://github.com/innerlee/LIBLINEAR.jl/pull/29), but it needs some more...
Hello Andrés, are you still interested in finishing this PR after all this time? If you are, more work has to be done. Namely: 1. Read the specification at https://speleotrove.com/decimal/daops.html#refpower...
The PR has been merged. You can get the standard test suite here: https://speleotrove.com/decimal/dectest.zip Then, you need to add support for `power` tests in the `scripts/dectest.jl` script. That means to...
Is it faster to compute the multiplication `U * U'` than looping through the columns and just checking `dot(u, v) = 0 (or 1)`? The latter could return early in...
The problem shows up even for a singleton array: ```julia julia> lcm([1//2]) 1//1 ``` See the implementation: https://github.com/JuliaLang/julia/blob/40ecf690197a7a6221cfcffd9c74799258fb4495/base/intfuncs.jl#L153 (The problem is with the `init` argument; in this case, `init` is...
If #55318 lands, I think we could just remove the `init` argument of `reduce` for both `gcd` and `lcm`, in which case `gcd([])` and `lcm([])` would result in an error....
I think the problem is in cross_references.jl. I proposed a work-in-progress solution at #2678.
Does it happen even without MLJ? For example: ```julia using Distributed addprocs(2) @everywhere module MyClassifier using Distributed using LIBSVM # Define a function to run on the remote node function...
Then I would say this is an MLJ issue (cc @ablaom), which is also suggested by the error message `ERROR: MethodError: no method matching MLJLIBSVMInterface.SVC(; kernel::LIBSVM.Kernel.KERNEL)`.