About 50 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 confusing, …

  2. Stratified Train/Test-split in scikit-learn - Stack Overflow

    Scikit-learn provides two modules for Stratified Splitting: StratifiedKFold : This module is useful as a direct k-fold cross-validation operator: as in it will set up n_folds training/testing sets such that …

  3. 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:

  4. ModuleNotFoundError: No module named 'sklearn' - Stack Overflow

    Sep 8, 2017 · I want to import scikit-learn, but there isn't any module apparently: ModuleNotFoundError: No module named 'sklearn' I am using Anaconda and Python 3.6.1. When I use the command: …

  5. How to upgrade scikit-learn package in anaconda - Stack Overflow

    conda list scikit-learn It should now display the current (and desired) version of the scikit-learn library. For me personally, I tried using the conda command to update the scikit-learn library and it acted as …

  6. Find p-value (significance) in scikit-learn LinearRegression

    Sep 8, 2021 · Find p-value (significance) in scikit-learn LinearRegression Asked 11 years, 1 month ago Modified 2 years, 3 months ago Viewed 444k times

  7. scikit image - Import error No module named skimage - Stack Overflow

    I am building code on python using skimage. But I am getting import errors while using skimage.segmentation. Traceback (most recent call last): File "superpixel.py", line 5, in …

  8. Scikit-learn: How to obtain True Positive, True Negative, False ...

    Jul 10, 2015 · Scikit-learn: How to obtain True Positive, True Negative, False Positive and False Negative Asked 10 years, 7 months ago Modified 1 year, 8 months ago Viewed 286k times

  9. What are all the formats to save machine learning model in scikit-learn ...

    Apr 9, 2020 · What are other formats to save the model for Scikit-learn, Keras, Tensorflow, and Mxnet? Also what info I am missing about each of the above-discussed formats?

  10. Using Scikit-Learn OneHotEncoder with a Pandas DataFrame

    Sep 25, 2019 · There is a library related to scikit-learn named skrub that lets you encode columns using scikit-learn transformers with much more control on which columns get transformed how.