mirror of
https://github.com/sd-webui/stable-diffusion-webui.git
synced 2025-01-07 06:11:01 +03:00
a9bc7eae19
for more information, see https://pre-commit.ci
25 lines
657 B
Python
25 lines
657 B
Python
from abc import abstractmethod
|
|
from torch.utils.data import IterableDataset
|
|
|
|
|
|
class Txt2ImgIterableBaseDataset(IterableDataset):
|
|
"""
|
|
Define an interface to make the IterableDatasets for text2img data chainable
|
|
"""
|
|
|
|
def __init__(self, num_records=0, valid_ids=None, size=256):
|
|
super().__init__()
|
|
self.num_records = num_records
|
|
self.valid_ids = valid_ids
|
|
self.sample_ids = valid_ids
|
|
self.size = size
|
|
|
|
print(f"{self.__class__.__name__} dataset contains {self.__len__()} examples.")
|
|
|
|
def __len__(self):
|
|
return self.num_records
|
|
|
|
@abstractmethod
|
|
def __iter__(self):
|
|
pass
|