About 3,480,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. A progress bar for scikit-learn? - Stack Overflow

    Dec 13, 2015 · Yet curiously ExtraTreesClassifier which also belongs to sklearn.ensemble (just like AdaBoostClassifier), does allow it. Looks like not all members of sklearn.ensemble share …

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

    Apr 4, 2016 · pip install -U scikit-learn pip3 install sklearn to install it; but when i type $ Python >>> import sklearn it returns . ImportError: No module named sklearn I followed other tutorials, but …

  4. pandas dataframe columns scaling with sklearn - Stack Overflow

    Jul 9, 2014 · I have a pandas dataframe with mixed type columns, and I'd like to apply sklearn's min_max_scaler to some of the columns. Ideally, I'd like to do these transformations in place, …

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

    May 19, 2020 · create a temporary working environment (or roll back your current working environment) with the older sklearn. do imports something like: import sklearn.external.joblib …

  6. python - Can anyone explain me StandardScaler? - Stack Overflow

    Nov 23, 2016 · I assume that you have a matrix X where each row/line is a sample/observation and each column is a variable/feature (this is the expected input for any sklearn ML function by …

  7. How to save a trained model by scikit-learn? - Stack Overflow

    May 13, 2019 · I am trying to re-create the prediction of a trained model but I don't know how to save a model. For example, I want to save the trained Gaussian processing regressor model …

  8. How do I solve overfitting in random forest of Python sklearn?

    Mar 20, 2014 · Use 3 datasets, a training set, a separate 'development' dataset to tweak your parameters, and a test set that tests the final model, with the optimal parameters. Only change …

  9. Visualizing decision tree in scikit-learn - Stack Overflow

    from sklearn import tree import pydotplus dot_data=tree.export_graphviz(dt,filled=True,rounded=True) …

  10. sklearn plot confusion matrix with labels - Stack Overflow

    Oct 8, 2013 · To add to @akilat90's update about sklearn.metrics.plot_confusion_matrix: You can use the ConfusionMatrixDisplay class within sklearn.metrics directly and bypass the need to …

Refresh