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

    Dec 5, 2022 · 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 …

  2. scikit learn - How are feature_importances in …

    In RandomForestClassifier, estimators_ attribute is a list of DecisionTreeClassifier (as mentioned in the documentation). In order to compute the feature_importances_ for the …

  3. How is the R2 value in Scikit learn calculated? - Stack Overflow

    The R^2 in scikit learn is essentially the same as what is described in the wikipedia article on the coefficient of determination (grep for "the most general definition"). It is 1 - residual sum of …

  4. How to install scikit-surprise from the ground up - Stack Overflow

    May 15, 2024 · And indeed, if we check scikit-suprise 1.1.3 on pypi, you can see that supported python versions only go up to 3.10. Nonetheless, the newest version 1.1.4 lists python 3.12 as …

  5. python - scikit-surprise installation in windows - Stack Overflow

    Oct 9, 2024 · Installation of scikit-surprise using pip in my project file, gives me an error like 'Error originates from subprocess'. Then I tried to install it globally using conda.

  6. Installing an old version of scikit-learn - Stack Overflow

    Jan 29, 2020 · In my case, I was able to "hack" the modern scikit learn to load a pickle created with a much older version: sys.modules['sklearn.preprocessing.label'] = …

  7. python - installing skimage with pip3 fails - Stack Overflow

    Nov 5, 2020 · If I replace skimage with scikit-image for the import command I get this error: SyntaxError: invalid syntax (with an arrow pointing on the "-" between scikit an image).

  8. Label encoding across multiple columns in scikit-learn

    Jun 28, 2014 · I'm trying to use scikit-learn's LabelEncoder to encode a pandas DataFrame of string labels. As the dataframe has many (50+) columns, I want to avoid creating a …

  9. python - Pycharm: No module named sklearn - Stack Overflow

    But although scikit-learn (which contains sklearn, that was initially confusing) seems fully installed on my system, including "import sklearn" working outside of PyCharm, I could not get the …

  10. How to extract the decision rules from scikit-learn decision-tree?

    2 Here is a function, printing rules of a scikit-learn decision tree under python 3 and with offsets for conditional blocks to make the structure more readable: