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.
1 parent c9ec32f commit 2595160Copy full SHA for 2595160
pymc/tests/test_distributions_moments.py
@@ -757,10 +757,8 @@ def test_categorical_moment(p, size, expected):
757
[
758
(np.ones(1), np.identity(1), None, np.ones(1)),
759
(np.ones(3), np.identity(3), None, np.ones(3)),
760
- (np.ones(2), np.identity(2), 4, np.ones((4, 2))),
761
(np.ones((2, 2)), np.identity(2), None, np.ones((2, 2))),
762
(np.array([1, 0, 3.0]), np.identity(3), None, np.array([1, 0, 3.0])),
763
- (np.array([1, 0, 3.0]), np.identity(3), 4, np.full((4, 3), [1, 0, 3.0])),
764
(np.array([1, 0, 3.0]), np.identity(3), (4, 2), np.full((4, 2, 3), [1, 0, 3.0])),
765
(
766
np.array([1, 3.0]),
@@ -774,12 +772,6 @@ def test_categorical_moment(p, size, expected):
774
772
(4, 5),
775
773
np.full((4, 5, 2), [1, 3.0]),
776
),
777
- (
778
- np.array([1, 3, 0.0]),
779
- np.array([[1.0, 0.5, 0.1], [0.5, 2, 0.5], [0.1, 0.5, 5]]),
780
- (4, 5),
781
- np.full((4, 5, 3), [1, 3, 0.0]),
782
- ),
783
784
np.array([[3.0, 5], [1, 4]]),
785
np.identity(2),
0 commit comments