Skip to content

Commit e086202

Browse files
committed
fix test after rebase
1 parent 23ec2df commit e086202

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rampwf/score_types/tests/test_generative_regression.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
Y_PRED_2 = MixtureYPred().add(WEIGHTS, TYPES, PARAMS_2).finalize()
1616

1717
TYPES_UNI = np.array([[1.0], ] * 2)
18-
PARAMS_UNI_1 = np.array([[0.49, 0.52], ] * 2)
18+
PARAMS_UNI_1 = np.array([[0.49, 0.03], ] * 2)
1919
Y_PRED_UNI_1 = MixtureYPred().add(WEIGHTS, TYPES_UNI, PARAMS_UNI_1).finalize()
20-
PARAMS_UNI_2 = np.array([[0.45, 0.5], ] * 2)
20+
PARAMS_UNI_2 = np.array([[0.45, 0.05], ] * 2)
2121
Y_PRED_UNI_2 = MixtureYPred().add(WEIGHTS, TYPES_UNI, PARAMS_UNI_2).finalize()
2222
Y_TRUTH_1 = np.array([[0.5], [0.51]])
2323

0 commit comments

Comments
 (0)