View source: R/image_loaders.R
ImageDataLoaders_from_path_func | R Documentation |
Create from list of 'fnames' in 'path's with 'label_func'
ImageDataLoaders_from_path_func(
path,
fnames,
label_func,
valid_pct = 0.2,
seed = NULL,
item_tfms = NULL,
batch_tfms = NULL,
bs = 64,
val_bs = NULL,
shuffle_train = TRUE,
device = NULL,
...
)
path |
The folder where to work |
fnames |
file names |
label_func |
label function |
valid_pct |
The random percentage of the dataset to set aside for validation (with an optional seed) |
seed |
random seed |
item_tfms |
One or several transforms applied to the items before batching them |
batch_tfms |
One or several transforms applied to the batches once they are formed |
bs |
batch size |
val_bs |
The batch size for the validation DataLoader (defaults to bs) |
shuffle_train |
If we shuffle the training DataLoader or not |
device |
device name |
... |
additional parameters to pass |
None
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.