From 3c3f41fb1a6e3bb4236773eb0ec122d7dc1919d9 Mon Sep 17 00:00:00 2001 From: "Anthony D. Blaom" Date: Tue, 9 Jan 2024 14:12:16 +1300 Subject: [PATCH] fix input_scitypes for static models --- src/MLJClusteringInterface.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MLJClusteringInterface.jl b/src/MLJClusteringInterface.jl index 61714ef..4e9b17e 100644 --- a/src/MLJClusteringInterface.jl +++ b/src/MLJClusteringInterface.jl @@ -240,14 +240,14 @@ metadata_model( DBSCAN, human_name = "DBSCAN clusterer (density-based spatial clustering of "* "applications with noise)", - input = MMI.Table(Continuous), + input_scitype = Tuple{MMI.Table(Continuous)}, path = "$(PKG).DBSCAN" ) metadata_model( HierarchicalClustering, human_name = "hierarchical clusterer", - input = MMI.Table(Continuous), + input_scitype = Tuple{MMI.Table(Continuous)}, path = "$(PKG).HierarchicalClustering" )