About 7,100,000 results
Open links in new tab
  1. How to get feature importance in xgboost? - Stack Overflow

    Jun 4, 2016 · 20 According to this post there 3 different ways to get feature importance from Xgboost: use built-in feature importance, use permutation based importance, use shap based …

  2. multioutput regression by xgboost - Stack Overflow

    Apr 28, 2023 · Is it possible to train a model by xgboost that has multiple continuous outputs (multi-regression)? What would be the objective of training such a model? Thanks in advance …

  3. How to get the list of features which are actually used by XGBoost

    Apr 17, 2023 · The correct approach would be to traverse XGBoost tree data structure, and collect node split indices (which correspond to column indices in your training dataset). If your …

  4. XGBoost Categorical Variables: Dummification vs encoding

    Dec 14, 2015 · "When using XGBoost we need to convert categorical variables into numeric." Not always, no. If booster=='gbtree' (the default), then XGBoost can handle categorical variables …

  5. ImportError: No module named xgboost - Stack Overflow

    ImportError: No module named 'xgboost.xgbclassifier', I tried using your command, it returned this.

  6. Cannot import xgboost in Jupyter notebook - Stack Overflow

    Jul 1, 2017 · import sys !{sys.executable} -m pip install xgboost This allows the package to be installed with right on Jupyter notebook.

  7. XGBoost produce prediction result and probability

    Apr 7, 2020 · I am probably looking right over it in the documentation, but I wanted to know if there is a way with XGBoost to generate both the prediction and probability for the results? In …

  8. XGBoost for multiclassification and imbalanced data

    Jun 7, 2021 · XGBoost for multiclassification and imbalanced data Asked 4 years, 4 months ago Modified 3 years, 2 months ago Viewed 27k times

  9. Custom loss function in XGBoost - Stack Overflow

    Mar 9, 2025 · I would like to create a custom loss function for the "reg:pseudohubererror" objective in XGBoost. However, I am noticing a discrepancy between the results produced by …

  10. XGBoost: Check failed: valid: Input data contains `inf` or `nan`

    Jun 15, 2021 · use xgboost.DMatrix check every columns,try to turn data to xgboost.DMatrix,if turn failed,get turn error column data's value_counts for find abnormal data in this column