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 c220b8c commit 71d2507Copy full SHA for 71d2507
chebifier/ensemble/base_ensemble.py
@@ -9,7 +9,7 @@
9
10
from chebifier.check_env import check_package_installed
11
from chebifier.hugging_face import download_model_files
12
-from chebifier.inconsistency_resolution import PredictionSmoother
+from chebifier.inconsistency_resolution import ScoreBasedPredictionSmoother
13
from chebifier.prediction_models.base_predictor import BasePredictor
14
from chebifier.utils import (
15
get_default_configs,
@@ -75,7 +75,7 @@ def __init__(
75
self.models.append(model_instance)
76
77
if resolve_inconsistencies:
78
- self.smoother = PredictionSmoother(
+ self.smoother = ScoreBasedPredictionSmoother(
79
self.chebi_graph,
80
label_names=None,
81
disjoint_files=self.disjoint_files,
0 commit comments