About 7,430,000 results
Open links in new tab
  1. Difference between scikit-learn and sklearn (now deprecated)

    Regarding the difference sklearn vs. scikit-learn: The package "scikit-learn" is recommended to be installed using pip install scikit-learn but in your code imported using import sklearn. A bit …

  2. python - sklearn: Turning off warnings - Stack Overflow

    how to disable Convergence Warnings, for example, for estimators that use sklearn's coordinate descent algorithm? Replacing DataConversionWarning with ConvergenceWarning in the …

  3. How to use pandas DataFrames with sklearn? - Stack Overflow

    However, sklearn requires them to be numeric (sklearn is normally used with numpy arrays). If this is the case you have to convert the elements of your dataframe from strings to numeric …

  4. VS Code: ModuleNotFoundError: No module named 'sklearn'

    Apr 5, 2021 · I am working in VS Code to run a Python script in conda environment named myenv where sklearn is already installed. However when I import it and run the script I get the …

  5. ImportError: No module named sklearn (Python) - Stack Overflow

    Apr 4, 2016 · I wanna use scikit-learn. I have typed pip install -U scikit-learn pip3 install sklearn to install it; but when i type $ Python >>> import sklearn it returns ImportError: No …

  6. Sklearn - How to predict probability for all target labels

    Jul 16, 2016 · Sklearn - How to predict probability for all target labels Asked 9 years, 3 months ago Modified 4 years, 3 months ago Viewed 35k times

  7. A progress bar for scikit-learn? - Stack Overflow

    Dec 13, 2015 · Is there any way to have a progress bar to the fit method in scikit-learn ? Is it possible to include a custom one with something like Pyprind ?

  8. Right way to use RFECV and Permutation Importance - Sklearn

    Jun 23, 2020 · There is a proposal to implement this in Sklearn #15075, but in the meantime, eli5 is suggested as a solution. However, I'm not sure if I'm using it the right way. This is my code: …

  9. ImportError: cannot import name 'joblib' from 'sklearn.externals'

    May 19, 2020 · I am trying to load my saved model from s3 using joblib import pandas as pd import numpy as np import json import subprocess import sqlalchemy from sklearn.externals …

  10. Parameter "stratify" from method "train_test_split" (scikit Learn)

    I am trying to use train_test_split from package scikit Learn, but I am having trouble with parameter stratify. Hereafter is the code: from sklearn import cross_validation, datasets X = …