pyopls
pyopls copied to clipboard
A Python 3 implementation of orthogonal projection to latent structures
The validator scripts are not working on any datasets, seems to be an issue with the `fit` method and the subsequent LabelBinarizer call. This is the error when running the...
Hi, does this repo also work well with multi-class classification instead of binary classification? Thank you,
Hi, The x and y axes were mislabeled in the score plot, which should be: ``` plt.ylabel('t_ortho') plt.xlabel('t') ``` Dong
Setting n_jobs in OPLSValidator.fit() does not change the number of CPUs used. I suspect this is an issue with the joblib commands but if i find a solution i will...
The arguments needed to be explicitly passed. Only other compatibility issue was cross_val_predict depreceated fit_params arg in 1.6, so uses params. I first try fit_params and use params if TypeError
Fixed a compatibility issue with scikit-learn version 1.6.1. The fix consisted of passing parameters to cross_val_predict function calls in validation.py and permutation_test.py not by position but by keyword.