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 de886c4 commit 7c3a048Copy full SHA for 7c3a048
_unittests/ut_mlmodel/test_piecewise_decision_tree_experiment.py
@@ -25,10 +25,13 @@
25
26
27
class TestPiecewiseDecisionTreeExperiment(ExtTestCase):
28
- @unittest.skip(
29
- reason="self.y = y raises: Fatal Python error: "
30
- "__pyx_fatalerror: Acquisition count is"
31
- )
+ # @unittest.skip(
+ # reason="self.y = y raises: Fatal Python error: "
+ # "__pyx_fatalerror: Acquisition count is"
+ # RuntimeWarning: sklearn.tree._splitter.Splitter size changed,
32
+ # may indicate binary incompatibility.
33
+ # Expected 1360 from C header, got 1576 from PyObject
34
+ # )
35
def test_criterions(self):
36
X = numpy.array([[1.0, 2.0]]).T
37
y = numpy.array([1.0, 2.0])
0 commit comments