We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 94a4b50 + cdff144 commit 159d603Copy full SHA for 159d603
src/genjax/_src/generative_functions/combinators/vector/map_combinator.py
@@ -38,6 +38,7 @@
38
from genjax._src.core.pytree import Pytree
39
from genjax._src.core.typing import (
40
Any,
41
+ ArrayLike,
42
FloatArray,
43
IntArray,
44
PRNGKey,
@@ -409,7 +410,7 @@ def assess(
409
410
self,
411
choice: VectorChoiceMap,
412
args: Tuple,
- ) -> Tuple[Any, FloatArray]:
413
+ ) -> Tuple[ArrayLike, Any]:
414
self._static_check_broadcastable(args)
415
broadcast_dim_length = self._static_broadcast_dim_length(args)
416
choice_dim = Pytree.static_check_tree_leaves_have_matching_leading_dim(choice)
0 commit comments