-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy path__init__.py
More file actions
32 lines (29 loc) · 888 Bytes
/
Copy path__init__.py
File metadata and controls
32 lines (29 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"""Reference implementations for testing consistency and backward compatibility.
This package contains reference implementations of previously deprecated or
parametrized model components, used for testing consistency and backward compatibility
in the test suite.
"""
from .deprecated_transforms import (
cebra_transform_deprecated,
multiobjective_transform_deprecated,
)
from .reference_offset_models import (
Offset5ModelReference,
Offset10ModelReference,
Offset15ModelReference,
Offset20ModelReference,
Offset36Reference,
Offset40Reference,
Offset50Reference,
)
__all__ = [
"cebra_transform_deprecated",
"multiobjective_transform_deprecated",
"Offset5ModelReference",
"Offset10ModelReference",
"Offset15ModelReference",
"Offset20ModelReference",
"Offset36Reference",
"Offset40Reference",
"Offset50Reference",
]