Skip to content
#

xgboost

Here are 900 public repositories matching this topic...

travelcms
travelcms commented May 17, 2019

Hi,

I try to understand Deepdetect right now, starting with the Plattforms Docker container.
It looks great on pictures, but I have a hard time right now using it :)

My Problem: The docs seems to step over important points, like using JupyterLab. All examples shows the finished Custom masks, but how do I get them?

Is there something missing in the docs?

Example: https://www.deepdetec

hermidalc
hermidalc commented Jan 10, 2020

RFE/RFECV are not only feature selectors (SelectorMixin) but also classifiers/regressors (MetaEstimatorMixin), though ELI5 explain_weights doesn't support them as classifiers/regressors. The final fit of an RFE/RFECV object is a fitted estimator with either rfe.estimator_.coef_ or rfe.estimator_.feature_importances_ and in sklearn you do not usually follow up RFE/RFECV with another classifier

StrikerRUS
StrikerRUS commented Oct 18, 2019

I'm sorry if I missed this functionality, but CLI version hasn't it for sure (I saw the related code only in generate_code_examples.py). I guess it will be very useful to eliminate copy-paste phase, especially for large models.

Of course, piping is a solution, but not for development in Jupyter Notebook, for example.

ebubae
ebubae commented Feb 19, 2020

Is your feature request related to a problem? Please describe.
When generating generating targeted attacks the method arguments generate(x, y=None) can be confusing. In this case y usually refers to the target label for the attack, but users may accidentally put the correct label there, rendering the attack ineffective.

Describe the solution you'd like
Maybe we should change that

ghk829
ghk829 commented May 30, 2019

I run this code

import os
os.environ['is_test_suite']="True" # this is writen due to bug for multiprocessing and pickling I issued. #426 
from auto_ml import Predictor
from auto_ml.utils import get_boston_dataset
from auto_ml.utils_models import load_ml_model

# Load data
df_train, df_test = get_boston_dataset()

# Tell auto_ml which column is 'output'
# Also note columns t
awesome-decision-tree-papers
hyperparameter_hunter
HunterMcGushion
HunterMcGushion commented Feb 19, 2019
  • Unable to supply validation_data to a Keras CVExperiment via model_extra_params[“fit”]
  • This is because HyperparameterHunter automatically sets validation_data to be the OOF data produced by the cross validation scheme
  • I can imagine this would be unexpected behavior, so I’d love to hear any thoughts on how to clear this up

Note

  • This issue (along with several others) was ori
awesome-gradient-boosting-papers
dvorka
dvorka commented Sep 21, 2018

In order to successfully install examples using Docker I did the following changes:

  • There seems to be missing step which clones mli-resources GitHub repository. Perhaps RUN git clone https://github.com/h2oai/mli-resources.git should be added to Dockerfile (I cloned repo manually).
  • Jupyter refuses to start under root - consider adding --allow-root parameter: `docker run -i -t -p 888

Improve this page

Add a description, image, and links to the xgboost topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the xgboost topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.