A `Tabular` object with transforms
TabularDataTable(
df,
procs = NULL,
cat_names = NULL,
cont_names = NULL,
y_names = NULL,
y_block = NULL,
splits = NULL,
do_setup = TRUE,
device = NULL,
inplace = FALSE,
reduce_memory = TRUE,
...
)
A DataFrame of your data
list of preprocess functions
the names of the categorical variables
the names of the continuous variables
the names of the dependent variables
the TransformBlock to use for the target
How to split your data
A parameter for if Tabular will run the data through the procs upon initialization
cuda or cpu
If True, Tabular will not keep a separate copy of your original DataFrame in memory
fastai will attempt to reduce the overall memory usage
additional parameters to pass
None