This file contains 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
<?R | |
# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
# Out-of-Sample Feature + Grid Tuning of RemixAutoML::AutoCatBoostCARMA() | |
# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ | |
# Set up your output file path for saving results as a .csv | |
Path <- "C:/YourPathHere" | |
# Run on GPU or CPU (some options in the grid tuning force usage of CPU for some runs) |
This file contains 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
library(RemixAutoML) | |
library(data.table) | |
########################################### | |
# Prepare data for AutoTS()---- | |
########################################### | |
# Load Walmart Data from Dropbox---- | |
data <- data.table::fread("https://www.dropbox.com/s/2str3ek4f4cheqi/walmart_train.csv?dl=1") |