.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/demo_fista.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_fista.py: Demo FISTA. =================================================== .. GENERATED FROM PYTHON SOURCE LINES 8-10 Select Working Directory and Device ----------------------------------------------- .. GENERATED FROM PYTHON SOURCE LINES 10-38 .. code-block:: Python import os from torch.utils import data os.chdir(os.path.dirname(os.getcwd())) print("Current Working Directory ", os.getcwd()) import sys sys.path.append(os.path.join(os.getcwd())) # General imports import matplotlib.pyplot as plt import torch import os # Set random seed for reproducibility torch.manual_seed(0) manual_device = "cpu" # Check GPU support print("GPU support: ", torch.cuda.is_available()) if manual_device: device = manual_device else: device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu") .. rst-class:: sphx-glr-script-out .. code-block:: none Current Working Directory /home/runner/work/pycolibri/pycolibri GPU support: False .. GENERATED FROM PYTHON SOURCE LINES 39-41 Load dataset ----------------------------------------------- .. GENERATED FROM PYTHON SOURCE LINES 41-53 .. code-block:: Python from colibri.data.datasets import CustomDataset name = "cifar10" path = "." batch_size = 1 dataset = CustomDataset(name, path) acquisition_name = 'spc' # ['spc', 'cassi'] .. 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_fista.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: demo_fista.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_