feat(dataset): add synthetic dataset generation and configuration

This commit is contained in:
2026-02-28 21:15:45 +08:00
parent f61857feba
commit 77d715a2cf
7 changed files with 473 additions and 9 deletions

View File

@@ -0,0 +1,8 @@
from .loader import SynthDataset, ValDataset
from .synthesizer import ImageSynthesizer
__all__ = [
"ImageSynthesizer",
"SynthDataset",
"ValDataset",
]