Skip to content

Commit

Permalink
Rename BioSoundSegBench dataset -> CMACBench and refactor, fix #776
Browse files Browse the repository at this point in the history
- move class into sub-package with separate modules for helper functions and default transforms
  • Loading branch information
NickleDave committed Sep 10, 2024
1 parent 7f8754c commit d0810ee
Show file tree
Hide file tree
Showing 5 changed files with 380 additions and 346 deletions.
8 changes: 4 additions & 4 deletions src/vak/datasets/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
from . import biosoundsegbench
from .biosoundsegbench import BioSoundSegBench, SplitsMetadata
from .cmacbench import CMACBench, SplitsMetadata
from .get import get

__all__ = [
"biosoundsegbench",
"BioSoundSegBench",
"cmacbench",
"CMACBench",
"get",
"SplitsMetadata",
]

# TODO: make this a proper registry
DATASETS = {"BioSoundSegBench": BioSoundSegBench}
DATASETS = {"CMACBench": CMACBench}
Empty file.
Loading

0 comments on commit d0810ee

Please sign in to comment.