From 7e454e6621bb700fef1c6d28c1527f499b9654a5 Mon Sep 17 00:00:00 2001 From: Tomoya Kose Date: Sun, 15 Sep 2024 21:49:13 +0900 Subject: [PATCH] Fix a typo. --- src/torch_wae/dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/torch_wae/dataset.py b/src/torch_wae/dataset.py index c48df39..052651a 100644 --- a/src/torch_wae/dataset.py +++ b/src/torch_wae/dataset.py @@ -54,7 +54,7 @@ def root(self) -> Path: return self.__root -class Pairataset(data.Dataset): +class PairDataset(data.Dataset): def __init__(self, annotation: Path, root: Path) -> None: super().__init__()