linfa icon indicating copy to clipboard operation
linfa copied to clipboard

A Rust machine learning framework.

Results 80 linfa issues
Sort by recently updated
recently updated
newest added

An attempt to add target names per #70. Not really sure what to do with lines 83-98 in iter.rs. Any guidance there would be appreciated. Line 83 was just added...

According to [these results](https://github.com/rust-ml/linfa/issues/228#issuecomment-1304608470), all ICA benchmarks are noticibly faster with BLAS than without, though this is less severe at higher sample sizes. We should profile the non-BLAS benchmark runs...

enhancement
help wanted

The `iai_fit_transform_tf_idf`, `iai_zca_bench`, and `iai_cholesky_bench` benchmarks take noticeably more cycles with non-BLAS builds compared to BLAS builds. This is especially bad for `iai_fit_transform_tf_idf`, which takes around 6 times as long...

enhancement
help wanted

It might be useful to have named samples for debugging and exploring the data, e.g. identifying outliers. Comments: - I have my doubts with the method `sample_names` (and `feature_names`) returning...

Does anybody have this weird error with rust-analyzer that does not recognize linfa types? ![linfa](https://github.com/rust-ml/linfa/assets/960885/d8cc1d8c-7a39-4c61-af86-4ee400254012) This happens with linfa `0.7`, rust 1.78 and latest vscode. No issues with any other...

The current release, `linfa 0.7` relies on `ndarray-linalg 0.15` which pulls `intel-mkl-src 0.7`, the download feature of which does not work anymore (see https://github.com/rust-math/intel-mkl-src/issues/103). As stated in [this comment](https://github.com/rust-math/intel-mkl-src/issues/114#issuecomment-2111903024) downstream...

linfa-reduction-0.7.0 Pca without the method of 'components' and 'mean', but the github source code have the two methods. **Here is the code download from the crates.io by vscode.** ![image](https://github.com/rust-ml/linfa/assets/28639191/ad7485a8-4f47-4757-ad3a-d93d50494e08) **Here...

Code coverage is broken

Memory is limited and using swap is painfully slow to fit massive amounts of data. There is discussion of incremental fitting in https://github.com/rust-ml/linfa/issues/8 years ago but I cannot find incremental_fit...