xax 0.1.7__py3-none-any.whl → 0.1.8__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.
- xax/__init__.py +12 -1
- {xax-0.1.7.dist-info → xax-0.1.8.dist-info}/METADATA +1 -1
- {xax-0.1.7.dist-info → xax-0.1.8.dist-info}/RECORD +6 -6
- {xax-0.1.7.dist-info → xax-0.1.8.dist-info}/WHEEL +0 -0
- {xax-0.1.7.dist-info → xax-0.1.8.dist-info}/licenses/LICENSE +0 -0
- {xax-0.1.7.dist-info → xax-0.1.8.dist-info}/top_level.txt +0 -0
xax/__init__.py
CHANGED
@@ -12,7 +12,7 @@ and running the update script:
|
|
12
12
|
python -m scripts.update_api --inplace
|
13
13
|
"""
|
14
14
|
|
15
|
-
__version__ = "0.1.
|
15
|
+
__version__ = "0.1.8"
|
16
16
|
|
17
17
|
# This list shouldn't be modified by hand; instead, run the update script.
|
18
18
|
__all__ = [
|
@@ -41,6 +41,9 @@ __all__ = [
|
|
41
41
|
"load_eqx_mlp",
|
42
42
|
"make_eqx_mlp",
|
43
43
|
"save_eqx",
|
44
|
+
"export",
|
45
|
+
"export_flax",
|
46
|
+
"export_with_params",
|
44
47
|
"euler_to_quat",
|
45
48
|
"get_projected_gravity_vector_from_quat",
|
46
49
|
"quat_to_euler",
|
@@ -195,6 +198,9 @@ NAME_MAP: dict[str, str] = {
|
|
195
198
|
"load_eqx_mlp": "nn.equinox",
|
196
199
|
"make_eqx_mlp": "nn.equinox",
|
197
200
|
"save_eqx": "nn.equinox",
|
201
|
+
"export": "nn.export",
|
202
|
+
"export_flax": "nn.export",
|
203
|
+
"export_with_params": "nn.export",
|
198
204
|
"euler_to_quat": "nn.geom",
|
199
205
|
"get_projected_gravity_vector_from_quat": "nn.geom",
|
200
206
|
"quat_to_euler": "nn.geom",
|
@@ -348,6 +354,11 @@ if IMPORT_ALL or TYPE_CHECKING:
|
|
348
354
|
make_eqx_mlp,
|
349
355
|
save_eqx,
|
350
356
|
)
|
357
|
+
from xax.nn.export import (
|
358
|
+
export,
|
359
|
+
export_flax,
|
360
|
+
export_with_params,
|
361
|
+
)
|
351
362
|
from xax.nn.geom import (
|
352
363
|
euler_to_quat,
|
353
364
|
get_projected_gravity_vector_from_quat,
|
@@ -1,4 +1,4 @@
|
|
1
|
-
xax/__init__.py,sha256=
|
1
|
+
xax/__init__.py,sha256=9WNjoeAF7enu7YXQqshpVG1FucGdSkxwrRa-ELDDuUs,13713
|
2
2
|
xax/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
xax/requirements-dev.txt,sha256=qkscNkFzWd1S5fump-AKH53rR65v2x5FmboFdy_kKvs,128
|
4
4
|
xax/requirements.txt,sha256=9LAEZ5c5gqRSARRVA6xJsVTa4MebPZuC4yOkkwkZJFw,297
|
@@ -56,8 +56,8 @@ xax/utils/data/collate.py,sha256=Rd9vMomr_S_zCa_Hi4dO-8ntzAfVwndIUtuXFA3iNcc,706
|
|
56
56
|
xax/utils/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
57
57
|
xax/utils/types/frozen_dict.py,sha256=ZCMGfSfr2_b2qZbq9ywPD0zej5tpVSId2JftXpwfB5k,4686
|
58
58
|
xax/utils/types/hashable_array.py,sha256=l5iIcFmkYzfGeaZmcSoeFkthFASqM8xJYK3AXhZQYwc,992
|
59
|
-
xax-0.1.
|
60
|
-
xax-0.1.
|
61
|
-
xax-0.1.
|
62
|
-
xax-0.1.
|
63
|
-
xax-0.1.
|
59
|
+
xax-0.1.8.dist-info/licenses/LICENSE,sha256=HCN2bImAzUOXldAZZI7JZ9PYq6OwMlDAP_PpX1HnuN0,1071
|
60
|
+
xax-0.1.8.dist-info/METADATA,sha256=wnBSNRByXJzgQPuZqNWooidfFdqcT4w8gbwlBgzbJk8,1877
|
61
|
+
xax-0.1.8.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
62
|
+
xax-0.1.8.dist-info/top_level.txt,sha256=g4Au_r2XhvZ-lTybviH-Fh9g0zF4DAYHYxPue1-xbs8,4
|
63
|
+
xax-0.1.8.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|