scikit-learn-intelex icon indicating copy to clipboard operation
scikit-learn-intelex copied to clipboard

Intel(R) Extension for Scikit-learn is a seamless way to speed up your Scikit-learn application

Results 316 scikit-learn-intelex issues
Sort by recently updated
recently updated
newest added
trafficstars

With https://github.com/IntelPython/daal4py/pull/84 daal4py is used to compute logistic loss and its gradient with solver='newton-cg'. This causes ``` python -m daal4py -m pytest --pyargs sklearn.linear_model.tests.test_logistic::test_dtype_match -ra ``` to fail, so it...

bug

Using scikit-learn 0.20.3, run ``` python -m daal4py -m pytest --disable-warnings --pyargs sklearn.preprocessing.tests.test_discretization::test_nonuniform_strategies ``` The test fails for strategy='kmeans' for 5 bins. The following script replicates the issue: ```python #...

bug
help wanted

Analyze underlying types of arrays passed to compute() method. Usually we pass numpy arrays into compute() method, but don`t care about the underlying type of this array. So if we...

It'd be nice to get performance warnings in certain cases, such as * repeated use of non-contiguous ndarrays leads to repeated conversion to DAAL tables * different input types than...

enhancement
good first issue

# Description Please include a summary of the change. For large or complex changes please include enough information to introduce your change and explain motivation for it. Changes proposed in...

infra

Log reg fit was patched

sklearn-patch

**Describe the bug** Right now daal4py operates on MPI's COMM_WORLD and so cannot operate in non-default setups. For example, when using MPI_Commspawn to create processes we currently cannot use daal4py....

enhancement
help wanted
distributed

In version 0.24 of Scikit-learn there is support for the "positive" parameter for linear regression. In case positive = True, the algorithm calls the Scikit-learn implementation. Estimated change in conformance...

enhancement

Scikit-learn test for Ridge regression "test_ridge_cv_individual_penalties" shows the difference between the regression coefficients of scikit-learn and daal4py on small datasets, for multi-target problem. Coefficients matches for first label only. For...

bug