physlink 0.1.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- physlink/__init__.py +19 -0
- physlink/adapters/__init__.py +0 -0
- physlink/adapters/dreamer.py +1068 -0
- physlink/core/__init__.py +3 -0
- physlink/core/_types.py +302 -0
- physlink/core/adapter.py +57 -0
- physlink/core/exceptions.py +146 -0
- physlink/core/spaces.py +276 -0
- physlink/core/validation.py +302 -0
- physlink/utils/__init__.py +0 -0
- physlink/utils/diagnostics.py +276 -0
- physlink/utils/visualization.py +75 -0
- physlink-0.1.2.dist-info/METADATA +117 -0
- physlink-0.1.2.dist-info/RECORD +17 -0
- physlink-0.1.2.dist-info/WHEEL +5 -0
- physlink-0.1.2.dist-info/licenses/LICENSE +21 -0
- physlink-0.1.2.dist-info/top_level.txt +1 -0
physlink/__init__.py
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"""PhysLink — backend-agnostic adapter library for physical simulation ML."""
|
|
2
|
+
|
|
3
|
+
__version__ = "0.1.2"
|
|
4
|
+
|
|
5
|
+
from physlink.adapters.dreamer import DreamerV3Adapter # Story 3.1
|
|
6
|
+
from physlink.core.exceptions import PhysLinkError
|
|
7
|
+
from physlink.core.spaces import ActionSpace, ObservationSpace # Story 2.6
|
|
8
|
+
from physlink.core.validation import ComplianceReport, register_invariant # Story 4.3 + 4.4
|
|
9
|
+
from physlink.utils.diagnostics import doctor
|
|
10
|
+
|
|
11
|
+
__all__ = [
|
|
12
|
+
"ActionSpace",
|
|
13
|
+
"ComplianceReport",
|
|
14
|
+
"DreamerV3Adapter",
|
|
15
|
+
"ObservationSpace",
|
|
16
|
+
"PhysLinkError",
|
|
17
|
+
"doctor",
|
|
18
|
+
"register_invariant",
|
|
19
|
+
]
|
|
File without changes
|