ria-toolkit-oss/src/ria_toolkit_oss/data/__init__.py

9 lines
315 B
Python
Raw Normal View History

G
2026-02-23 14:00:59 -05:00
"""
The Data package contains abstract data types tailored for radio machine learning, such as ``Recording``, as well
as the abstract interfaces for the radio dataset and radio dataset builder framework.
"""
__all__ = ["Annotation", "Recording"]
from .annotation import Annotation
from .recording import Recording