.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/demo_datasets.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code. .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_demo_datasets.py: Demo Datasets. =================================================== In this example we show how to use the custom dataset class to load the predefined datasets in the repository. .. GENERATED FROM PYTHON SOURCE LINES 10-12 Select Working Directory and Device ----------------------------------------------- .. GENERATED FROM PYTHON SOURCE LINES 12-20 .. code-block:: Python import os from random import randint from torch.utils.data import DataLoader os.chdir(os.path.dirname(os.getcwd())) print("Current Working Directory ", os.getcwd()) .. rst-class:: sphx-glr-script-out .. code-block:: none Current Working Directory /home/runner/work/pycolibri/pycolibri .. GENERATED FROM PYTHON SOURCE LINES 21-23 Load builtin dataset ----------------------------------------------- .. GENERATED FROM PYTHON SOURCE LINES 23-35 .. code-block:: Python from colibri.data.datasets import CustomDataset name = 'cifar10' # ['cifar10', 'cifar100', 'mnist', 'fashion_mnist', 'cave'] path = 'data' batch_size = 128 dataset = CustomDataset(name, path) dataset_loader = DataLoader(dataset, batch_size=batch_size, shuffle=False, num_workers=0) .. rst-class:: sphx-glr-script-out .. code-block:: none 0%| | 0.00/170M [00:00` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: demo_datasets.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: demo_datasets.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_