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 199952f commit 3811058Copy full SHA for 3811058
tmva/tmva/test/rbdt_xgboost.py
@@ -7,6 +7,7 @@
7
import ROOT
8
import numpy as np
9
import json
10
+import pytest
11
12
np.random.seed(1234)
13
@@ -78,6 +79,9 @@ def test_XGBBinary_default(self):
78
79
"""
80
_test_XGBBinary("default")
81
82
+ @pytest.mark.xfail(
83
+ xgboost.__version__ >= "3.1.0", reason="We don't support multiclassification with xgboost>=3.1.0 yet"
84
+ )
85
def test_XGBMulticlass_default(self):
86
87
Test model trained with multiclass XGBClassifier.
0 commit comments