imt-ring 1.3.10__py3-none-any.whl → 1.3.12__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.
- {imt_ring-1.3.10.dist-info → imt_ring-1.3.12.dist-info}/METADATA +1 -1
- {imt_ring-1.3.10.dist-info → imt_ring-1.3.12.dist-info}/RECORD +6 -6
- ring/algorithms/generator/batch.py +6 -1
- ring/utils/batchsize.py +1 -1
- {imt_ring-1.3.10.dist-info → imt_ring-1.3.12.dist-info}/WHEEL +0 -0
- {imt_ring-1.3.10.dist-info → imt_ring-1.3.12.dist-info}/top_level.txt +0 -0
@@ -15,7 +15,7 @@ ring/algorithms/custom_joints/rr_joint.py,sha256=jnRtjtOCALMaq2_0bcu2d7qgfQ6etXp
|
|
15
15
|
ring/algorithms/custom_joints/suntay.py,sha256=7-kym1kMDwqYD_2um1roGcBeB8BlTCPe1wljuNGNARA,16676
|
16
16
|
ring/algorithms/generator/__init__.py,sha256=p4ucl0zQtp5NwNoXIRjmTzGGRu2WOAWFfNmYRPwQles,912
|
17
17
|
ring/algorithms/generator/base.py,sha256=sr-YZkjd8pZJAI5vFG_IqOO4AEeiEYtXr8uUsPMS6Q4,14779
|
18
|
-
ring/algorithms/generator/batch.py,sha256=
|
18
|
+
ring/algorithms/generator/batch.py,sha256=glsyedOAaHBMhFBLtMGJ9u1jHsJ2GITm0I5T0z2MFqU,9392
|
19
19
|
ring/algorithms/generator/motion_artifacts.py,sha256=_kiAl1VHoX1fW5AUlXOtPBWyHIIFof_M78AP-m9f1ME,8790
|
20
20
|
ring/algorithms/generator/pd_control.py,sha256=XJ_Gd5AkIRh-jBrMfQyMXjVwhx2gCNHznjzFbmAwhZs,5767
|
21
21
|
ring/algorithms/generator/randomize.py,sha256=G_vBIo0OwQkXL2u0djwbaoaeb02C4LQCTNNloOYIU2M,3699
|
@@ -73,13 +73,13 @@ ring/sys_composer/inject_sys.py,sha256=Mj-q-mUjXKwkg-ol6IQAjf9IJfk7pGhez0_WoTKTg
|
|
73
73
|
ring/sys_composer/morph_sys.py,sha256=2GpPtS5hT0eZMptdGpt30Hc97OykJNE67lEVRf7sHrc,12700
|
74
74
|
ring/utils/__init__.py,sha256=FZ9ziQrWlx16QIpQ8RdLKrvN_17CAdvnZMNNodxWY0o,812
|
75
75
|
ring/utils/backend.py,sha256=cKSi9sB59texqKzNVASTDczGKLCBL8VVDiP7TNdj41k,1294
|
76
|
-
ring/utils/batchsize.py,sha256=
|
76
|
+
ring/utils/batchsize.py,sha256=ByXGX7bw2gwrVirEsazm2JXnwNPGnqgEirzziYoSUS0,1553
|
77
77
|
ring/utils/colab.py,sha256=ZLHwP0jNQUsmZJU4l68a5djULPi6T-jYNNHevjIoMn8,1631
|
78
78
|
ring/utils/hdf5.py,sha256=BzXwVypZmEZeHVgeGZ78YYdi10NEQtnPhdrb8dQAXo0,5856
|
79
79
|
ring/utils/normalizer.py,sha256=67L2BU1MRsMT4pD41ta3JJMppLN0ozFmnwrmXDtnqrQ,1698
|
80
80
|
ring/utils/path.py,sha256=hAfSlqRi-ew536RnjDDM7IKapdMJc-EvhrR0Y-BCFWc,1265
|
81
81
|
ring/utils/utils.py,sha256=mIcKNv5v2de8HrG7bAhl2bNfmwkMZyIIwFkJq2XWMOI,5357
|
82
|
-
imt_ring-1.3.
|
83
|
-
imt_ring-1.3.
|
84
|
-
imt_ring-1.3.
|
85
|
-
imt_ring-1.3.
|
82
|
+
imt_ring-1.3.12.dist-info/METADATA,sha256=VLLTMKRsKFxasZx_HTAIbKzrOQfjxMm7BW1zDuHG6oI,3105
|
83
|
+
imt_ring-1.3.12.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
84
|
+
imt_ring-1.3.12.dist-info/top_level.txt,sha256=EiT790-lAyi8iwTzJArH3f2k77rwhDn00q-4PlmvDQo,5
|
85
|
+
imt_ring-1.3.12.dist-info/RECORD,,
|
@@ -98,7 +98,12 @@ def batch_generators_eager_to_list(
|
|
98
98
|
jit = True if n_calls > 1 else False
|
99
99
|
gen_jit = batch_generators_lazy(gen, size, jit=jit)
|
100
100
|
|
101
|
-
for _ in
|
101
|
+
for _ in tqdm(
|
102
|
+
range(n_calls),
|
103
|
+
desc="number of calls for each generator",
|
104
|
+
total=n_calls,
|
105
|
+
leave=False,
|
106
|
+
):
|
102
107
|
key, consume = jax.random.split(key)
|
103
108
|
sample = gen_jit(consume)
|
104
109
|
# converts also to numpy; but with np.array.flags.writeable = False
|
ring/utils/batchsize.py
CHANGED
File without changes
|
File without changes
|