Nil Goyette
Nil Goyette
jq advertises itself as MIT licensed but there's an ambiguity in section `dtoa.c` and `g_fmt.c` Permission to use, copy, modify, and distribute this software for any purpose without fee [...]...
I tested this today. I'm using the [original Fortran implementation v3](http://users.iems.northwestern.edu/~nocedal/lbfgsb.html). My application runs in - **15s** with the L-BFGS-B version - **18s** with the L-BFGS version I really wanted...
> parameters: we need to make sure that we run benchmarks exactly with the same parameters (including line search) as the Fortran version for the results to be comparable. Yes,...
This is a good idea only if @vadixidav updates his `nshare` crate often, which is not currently the case. We can see in his [Cargo.toml](https://github.com/rust-cv/nshare/blob/master/Cargo.toml) nalgebra = { version =...
It's not currently possible with ndarray0.15. It might be possible some day with the new features Rust keeps adding, I don't know. What I do when I need to Zip...
Yeah, well, numpy is immensely powerful and features like `Indexing Multi-dimensional arrays` are rarely used, I think. To make it short, yes.
It would also make functions like `sum`, `mean`, etc. useful again. I have a use-case where I want the mean of `[.., .., .., &[0, 1, 4, etc.]]` and I'm...
I tried using let arr: Array1 = a.axis_iter(Axis(0)).into_par_iter().map(|row| row.sum()).collect(); instead but I got the following error > the trait bound `ArrayBase: rayon::iter::FromParallelIterator` is not satisfied Replace `Array1` with `Vec` and...
Oh, excellent news. I'll use the ugly condition until then :) A related problem that I have is that `is_standard_layout` only tells if the array is in 'c' order when...
I have ported some `np.pad` calls in our private codebase, namely reflex, symmetric and wrap. Did you already have those in your local repo?