About 7,890,000 results
Open links in new tab
  1. 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 ?

  2. How to fit a polynomial curve to data using scikit-learn?

    Problem context Using scikit-learn with Python, I'm trying to fit a quadratic polynomial curve to a set of data, so that the model would be of the form y = a2x^2 + a1x + a0 and the an …

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

  4. python - ImportError in importing from sklearn: cannot import …

    Mar 7, 2013 · Poking around the __init__.py in that directory, the next step I'd take is to go to sklearn/__init__.py and comment out the import statement---the check_build stuff just checks …

  5. fit () vs fit_predict () methods in sklearn KMeans

    Mar 25, 2021 · KMeans is just one of the many models that sklearn has, and many share the same API. The basic functions are fit, which teaches the model using examples, and predict, …

  6. 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 …

  7. Plot trees for a Random Forest in Python with Scikit-Learn

    Oct 20, 2016 · I want to plot a decision tree of a random forest. So, i create the following code: clf = RandomForestClassifier(n_estimators=100) import pydotplus import six from sklearn import …

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

    Jan 13, 2015 · How can I find the p-value (significance) of each coefficient? lm = sklearn.linear_model.LinearRegression () lm.fit (x,y)

  9. 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

  10. GridSearchCV on LogisticRegression in scikit-learn

    The class name scikits.learn.linear_model.logistic.LogisticRegression refers to a very old version of scikit-learn. The top level package name is now sklearn since at least 2 or 3 releases. It's …