About 14,000,000 results
Open links in new tab
  1. Find p-value (significance) in scikit-learn LinearRegression

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

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

  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. python - Will scikit-learn utilize GPU? - Stack Overflow

    Reason to use scikit-learn : scikit-learn contains less boilerplate than the tensorflow implementation. Reason to use tensorflow : If running on Nvidia GPU the algorithm will be run …

  5. pandas dataframe columns scaling with sklearn - Stack Overflow

    Jul 9, 2014 · Pandas' dataframes are quite complicated objects with conventions that do not match scikit-learn's conventions. If you convert everything to NumPy arrays, scikit-learn gets a …

  6. What are the parameters for sklearn's score function?

    Scikit-learns model.score (X,y) calculation works on co-efficient of determination i.e R^2 is a simple function that takes model.score= (X_test,y_test). It doesn't require y_predicted value to …

  7. Passing categorical data to Sklearn Decision Tree

    Scikit-Learn itself provides very good classes to handle categorical data. Instead of writing your custom function, you should use LabelEncoder which is specially designed for this purpose.

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

  9. How to calculated the adjusted R2 value using scikit

    How to calculated the adjusted R2 value using scikit Asked 7 years, 5 months ago Modified 3 years, 4 months ago Viewed 48k times

  10. Scikit-learn is returning coefficient of determination (R^2) values ...

    Scikit-learn is returning coefficient of determination (R^2) values less than -1 Asked 11 years, 8 months ago Modified 1 year, 8 months ago Viewed 73k times