mlr_tasks_tiny_imagenet | R Documentation |
Subset of the famous ImageNet dataset.
The data is obtained from torchvision::tiny_imagenet_dataset()
.
The underlying DataBackend
contains columns "class"
, "image"
, "..row_id"
, "split"
, where the last column
indicates whether the row belongs to the train, validation or test set that are provided in torchvision.
There are no labels for the test rows, so by default, these observations are inactive, which means that the task uses only 110000 of the 120000 observations that are defined in the underlying data backend.
tsk("tiny_imagenet")
The task's backend is a DataBackendLazy
which will download the data once it is requested.
Other meta-data is already available before that.
You can cache these datasets by setting the mlr3torch.cache
option to TRUE
or to a specific path to be used
as the cache directory.
Task type: “classif”
Properties: “multiclass”
Has Missings: no
Target: “class”
Features: “image”
Data Dimension: 120000x4
Deng, Jia, Dong, Wei, Socher, Richard, Li, Li-Jia, Li, Kai, Fei-Fei, Li (2009). “Imagenet: A large-scale hierarchical image database.” In 2009 IEEE conference on computer vision and pattern recognition, 248–255. IEEE.
task = tsk("tiny_imagenet")
task
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.