Nestor Demeure

Results 16 issues of Nestor Demeure

Are you aware of [Futhark](https://github.com/diku-dk/futhark) ? They let the user write GPU code with highlevel functions (in a dedicated language) that are then optimized and compiled down to openCL or...

Added the [Jochastic](https://github.com/nestordemeure/jochastic) library to the new libraries list.

revisit

Thank you for publishing this great algorithm (terrible name for online visibility but great idea)! I wrote a [Rust port](https://crates.io/crates/simplers_optimization) in order to experiment with it, it currently features a...

Primitive floats types have a [to_bits](https://doc.rust-lang.org/std/primitive.f32.html#method.to_bits) method that is however not implemented by the [Float](https://docs.rs/num-traits/0.2.8/num_traits/float/trait.Float.html) trait. The one difficulty is that, in the standard implementations, the number of bits of...

Is there any interest in integrating this work with [Flax](https://github.com/google/flax)? They already have a [init](https://flax.readthedocs.io/en/latest/notebooks/flax_basics.html#Model-parameters-&-initialization) function, decoupling parameters initialization from model definition which could make introducing mup fairly plug-and-play. Plus...

The Rust cookbook has a [section on statistics](https://rust-lang-nursery.github.io/rust-cookbook/science/mathematics/statistics.html?highlight=statistic#statistics) but, while other section points you to common crates, its examples are about computing the mean, median and std from scratch. It...

Docs

Is it possible to use FsPlot (in particular Highcharts Dynamic Charts) in a compiled project ? I did a test including the path to chromedriver.exe at the beginning of my...

When storing a log, solvers reserve memory with `reserve!`. By default no type information is passed to this method which, then, converts the history into Float64. This is not the...

When storing a log, solvers reserve memory with `reserve!`. By default no type information is passed to this method which, then, converts the history into `Float64`. This is not the...

The [doc](https://www.nalgebra.org/decompositions_and_lapack/) says that LU will only solve for square matrix but that both FullPivLU and QR should work for non-square matrices. In practice there is an assert in both...