Skip to content

Commit

Permalink
Fix no convergence XGBTimeSeriesSurvival tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DrShushen committed Mar 15, 2023
1 parent cf6ea56 commit 1e3d6b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/synthcity/metrics/eval_performance.py
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ def evaluate(
"n_jobs": 2,
"verbosity": 0,
"depth": 3,
"strategy": "weibull", # "weibull", "debiased_bce"
"strategy": "debiased_bce", # "weibull", "debiased_bce"
"random_state": self._random_state,
},
X_gt,
Expand Down Expand Up @@ -705,7 +705,7 @@ def evaluate(
"n_jobs": 2,
"verbosity": 0,
"depth": 3,
"strategy": "weibull", # "weibull", "debiased_bce"
"strategy": "debiased_bce", # "weibull", "debiased_bce"
"random_state": self._random_state,
},
X_gt,
Expand Down Expand Up @@ -1033,7 +1033,7 @@ def evaluate(
n_jobs=2,
verbosity=0,
depth=3,
strategy="weibull", # "weibull", "debiased_bce"
strategy="debiased_bce", # "weibull", "debiased_bce"
random_state=self._random_state,
)

Expand Down

0 comments on commit 1e3d6b4

Please sign in to comment.