image_through_model #49

Merged
brian merged 75 commits from image_through_model into main 2024-10-20 00:10:27 +02:00
Showing only changes of commit bdd0dfff10 - Show all commits
+4 -1
View File
@@ -1,4 +1,4 @@
from __future__ import annotations
"""Definition of get_dataset function."""
from typing import Literal
@@ -10,4 +10,7 @@ def get_dataset(
type: Literal['train', 'test', 'validation'],
) -> list[str]:
"""Get list of data names for the corresponding type."""
assert isinstance(collection, Collection)
assert isinstance(type, str)
assert type in ['train', 'test', 'validation']
return []