mirror of
https://github.com/facefusion/facefusion-labs.git
synced 2026-05-22 23:59:40 +02:00
This can be marked static
This commit is contained in:
@@ -22,7 +22,8 @@ class DataLoaderRecognition(Dataset[torch.Tensor]):
|
||||
def __len__(self) -> int:
|
||||
return len(self.image_paths)
|
||||
|
||||
def compose_transforms(self) -> transforms:
|
||||
@staticmethod
|
||||
def compose_transforms() -> transforms:
|
||||
return transforms.Compose(
|
||||
[
|
||||
transforms.ToPILImage(),
|
||||
|
||||
@@ -39,7 +39,8 @@ class DataLoader(TensorDataset):
|
||||
image_path_set[directory_path] = image_paths
|
||||
return image_paths, image_path_set
|
||||
|
||||
def compose_transforms(self) -> transforms:
|
||||
@staticmethod
|
||||
def compose_transforms() -> transforms:
|
||||
return transforms.Compose(
|
||||
[
|
||||
transforms.ToPILImage(),
|
||||
|
||||
Reference in New Issue
Block a user