Skip to content

Instantly share code, notes, and snippets.

@3catz
Created December 19, 2020 21:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 3catz/aee9776577a90941399b31d9e0be2715 to your computer and use it in GitHub Desktop.
Save 3catz/aee9776577a90941399b31d9e0be2715 to your computer and use it in GitHub Desktop.
Seoul Bike Share pycaret setup
exper = setup(
data = bike_yes,
categorical_features = ["Seasons", "Holiday"],
silent = True,
ordinal_features = {"Hour": sorted_hours},
ignore_features = ["Functioning Day","Date"],
target = 'Rented Bike Count',
use_gpu = True,
data_split_shuffle = False,
fold_strategy = "timeseries",
feature_interaction = True,
transformation = True,
transformation_method = "quantile",
train_size = 0.80,
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment