Spaces:
Runtime error
Runtime error
import torch | |
import numpy as np | |
from torch.utils.data import Dataset | |
class SingleImageDataset(Dataset): | |
def __init__(self, file: np.ndarray): | |
super().__init__() | |
self.images = [file] | |
def __len__(self): | |
return len(self.images) | |
def __getitem__(self, index): | |
return {"image": self.images[index], "sample_id": torch.tensor(index, dtype=torch.int64)} | |