We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64efed3 commit 6d7bfa8Copy full SHA for 6d7bfa8
1 file changed
accelforge/mapper/FFM/_join_pmappings/join_pmappings.py
@@ -109,9 +109,7 @@ def __init__(
109
def __call__(self, mapping: pd.DataFrame) -> bool:
110
nondominated_by_all = np.ones(len(mapping), dtype=bool)
111
112
- edp_mapping = _apply_edp_columns(
113
- mapping.copy(), self.metrics, return_only_objectives=True
114
- )
+ edp_mapping = _apply_edp_columns(mapping.copy(), self.metrics)
115
116
for c in self.compare_to:
117
nondominated = np.zeros(len(edp_mapping), dtype=bool)
0 commit comments