Given image files from two domains (`pathA`, `pathB`), create `DataLoaders` object.
get_dls(
pathA,
pathB,
num_A = NULL,
num_B = NULL,
load_size = 512,
crop_size = 256,
bs = 4,
num_workers = 2
)
path A (from domain)
path B (to domain)
subset of A data
subset of B data
load size
crop size
bathc size
number of workers
None
Loading and randomly cropped sizes of `load_size` and `crop_size` are set to defaults of 512 and 256. Batch size is specified by `bs` (default=4).