Created
December 19, 2020 21:05
-
-
Save 3catz/aee9776577a90941399b31d9e0be2715 to your computer and use it in GitHub Desktop.
Seoul Bike Share pycaret setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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