Create from `df` using `fn_col` and `label_col`
ImageDataLoaders_from_df(
df,
path = ".",
valid_pct = 0.2,
seed = NULL,
fn_col = 0,
folder = NULL,
suff = "",
label_col = 1,
label_delim = NULL,
y_block = NULL,
valid_col = NULL,
item_tfms = NULL,
batch_tfms = NULL,
bs = 64,
val_bs = NULL,
shuffle_train = TRUE,
device = NULL,
...
)
data frame
The folder where to work
validation percentage
random seed
column name
folder name
suff
label column
label separator
y_block
validation column
One or several transforms applied to the items before batching them
One or several transforms applied to the batches once they are formed
batch size
The batch size for the validation DataLoader (defaults to bs)
shuffle_train
device
additional parameters to pass
None