Skip to content

Releases: riken-aip/pyHSICLasso

Covariate kernel selection

05 Apr 16:34
Compare
Choose a tag to compare

The kernel to apply to the covariates can be changed (Gaussian or Delta).

Bugfix

12 Mar 08:30
Compare
Choose a tag to compare

Fixed covariate correction.

Added support for covariates

11 Mar 12:24
Compare
Choose a tag to compare

In addition, default version of HSIC Lasso is now the block version. Vanilla, non-block, HSIC Lasso can be used by setting block size B to 0.

Fix ndarray input function

13 Dec 08:47
50ace0f
Compare
Choose a tag to compare

The ndarray input function was not properly working.

  1. The feature name index was stored as integer (this should be string).
  2. We could not specify feature name.

Fixed Gaussian kernel width in multi-variate regressions.

12 Dec 14:22
Compare
Choose a tag to compare

Fixed Gaussian kernel width in multi-variate regressions.

Bugfixes

01 Dec 13:21
50c4b14
Compare
Choose a tag to compare
  • Fixed problems when dealing with singular matrices.

  • Fixed ndarrays input not having featnames.

Improved performance

31 Aug 02:49
Compare
Choose a tag to compare

pyHSIC lasso speed up by ~30% by changing float64 to float32. Memory requirements halved.

Normalization at the whole dataset

23 Aug 00:32
Compare
Choose a tag to compare
  • Normalization is performed over the whole dataset, instead of on batches. This should result in a more robust normalization, and hence, better results.

Support multi-variate output and parallel processing

21 Aug 21:21
Compare
Choose a tag to compare
  • Support parallel processing
  • Multi-variate output support

Added Hierarchical Clustering

08 Aug 15:42
Compare
Choose a tag to compare
  • Added Hierarchical Clustering
    • Pull request #8
  • Remove error when B is not a divisor of # features
    • Pull request #13
  • accept discrete x
    • Pull request #14