Create from `path/csv_fname` using `fn_col` and `label_col`
ImageDataLoaders_from_csv(
path,
csv_fname = "labels.csv",
header = "infer",
delimiter = NULL,
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,
size = NULL,
shuffle_train = TRUE,
device = NULL,
...
)
The folder where to work
csv file name
header
delimiter
validation percentage
random seed
column name
folder name
suff
label column
label delimiter
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)
image size
If we shuffle the training DataLoader or not
device name
additional parameters to pass
None