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 1572229Copy full SHA for 1572229
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
+ xgb.__version__ >= "3.1.0"
84
+ reason="We don't support multiclassification with xgboost>=3.1.0 yet")
85
def test_XGBMulticlass_default(self):
86
87
Test model trained with multiclass XGBClassifier.
0 commit comments