ronniec95
ronniec95
Title says it all. It would be great to have multiple instances of a service and a client can send requests to them all. I imagine it would need to...
Is there a way to switch lexers? Standard case of lexing a buffer using a primary lexer and then a separate function to parse quoted strings, then switch back? Is...
Lock_api dependency which depends on nightly. Any chance of a stable version?
An implementation of this would be really useful for monte carlo simulations (pricing), and anywhere where 4 or 8 random independent randoms are needed. https://github.com/lemire/simdpcg or https://mathoverflow.net/questions/104915/pseudo-random-algorithm-allowing-o1-computation-of-nth-element I'm not sure...
Adding f_stat(), adjusted_r2(), and t() would be nice to complete the set of traits for regression analysis
Have you looked at integrating parallelisation via: https://gitlab.com/lappsufrn/MulticoreParallelSimplex explained in [Pdf Paper](https://arxiv.org/pdf/1804.04737.pdf) And of course better pivot selection Langrangian or others?
Do you have a way to do this? Or do I have to split the data - fine to do - but then can I call model.fit() multiple times to...
Just some small changes For gbdt::config::Config, - a ConfigBuilder (following the builder pattern) that has a build() method to create a Config() object is more Rust like. - The to_string()...
For target_os="windows" target_arch="x86" there's no configuration at all. Happy to add manually if you have the appropriate tar.zst in the s3 bucket. Thanks
I have a simple struct for setting some params and creating an SVR model ``` use linfa::prelude::*; use linfa_svm::{Svm, SvmParams}; use ndarray::Array; struct SVRModel { params: SvmParams, model: Option, }...