Skip to content

Commit c06f379

Browse files
authored
add path to metadata
1 parent 7ad553d commit c06f379

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/MLJClusteringInterface.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,15 +181,17 @@ metadata_model(
181181
input = MMI.Table(Continuous),
182182
output = MMI.Table(Continuous),
183183
weights = false,
184-
descr = KMeansDescription
184+
descr = KMeansDescription,
185+
path = "$(PKG).KMeans"
185186
)
186187

187188
metadata_model(
188189
KMedoids,
189190
input = MMI.Table(Continuous),
190191
output = MMI.Table(Continuous),
191192
weights = false,
192-
descr = KMedoidsDescription
193+
descr = KMedoidsDescription,
194+
path = "$(PKG).KMediods"
193195
)
194196

195197
end # module

0 commit comments

Comments
 (0)