Skip to content

Instantly share code, notes, and snippets.

@talperetz
Last active July 1, 2023 22:25
Show Gist options
  • Star 55 You must be signed in to star a gist
  • Fork 28 You must be signed in to fork a gist
  • Save talperetz/6030f4e9997c249b09409dcf00e78f91 to your computer and use it in GitHub Desktop.
Save talperetz/6030f4e9997c249b09409dcf00e78f91 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ralanburnett
Copy link

Can you explain where the 3-fold AUC data is coming from (how this is calculated)? I can figure out how to get AUC for validation data (for Catboost) but not for test data.

@iamrishabhjain25
Copy link

Hi. Could this code word for a dataset which has non numerical features like sex, city, profession ? And if yes, how ?

@talperetz
Copy link
Author

Sure thing. This dataset holds only categorical features.
You can see how I treat it here:
catboost.Pool(self.X_train, self.y_train, cat_features=self.categorical_columns_indices),
You can also take a look here at Catboost examples.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment