Skip to content

Commit ad9dd8d

Browse files
authored
Merge pull request #26 from JuliaAI/input-scitpye-for-static-models
Fix input_scitypes for static models
2 parents fb174d9 + 3c3f41f commit ad9dd8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/MLJClusteringInterface.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,14 +240,14 @@ metadata_model(
240240
DBSCAN,
241241
human_name = "DBSCAN clusterer (density-based spatial clustering of "*
242242
"applications with noise)",
243-
input = MMI.Table(Continuous),
243+
input_scitype = Tuple{MMI.Table(Continuous)},
244244
path = "$(PKG).DBSCAN"
245245
)
246246

247247
metadata_model(
248248
HierarchicalClustering,
249249
human_name = "hierarchical clusterer",
250-
input = MMI.Table(Continuous),
250+
input_scitype = Tuple{MMI.Table(Continuous)},
251251
path = "$(PKG).HierarchicalClustering"
252252
)
253253

0 commit comments

Comments
 (0)