We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbbd2cc commit fa0ed43Copy full SHA for fa0ed43
mergekit/merge_methods/__init__.py
@@ -89,6 +89,20 @@ def get(method: str) -> MergeMethod:
89
default_rescale=True,
90
default_swapping=True,
91
)
92
+ elif method == "breadcrumbs":
93
+ return GeneralizedTaskArithmeticMerge(
94
+ consensus_method=None,
95
+ sparsification_method=SparsificationMethod.magnitude_outliers,
96
+ default_normalize=False,
97
+ default_rescale=False,
98
+ )
99
+ elif method == "breadcrumbs_ties":
100
101
+ consensus_method=ConsensusMethod.sum,
102
103
104
105
106
elif method == "model_stock":
107
return ModelStockMerge()
108
raise RuntimeError(f"Unimplemented merge method {method}")
0 commit comments