From b0403e81ab87e990535f2e36074a9ab477d14837 Mon Sep 17 00:00:00 2001 From: MilesCranmer Date: Fri, 11 Aug 2023 23:24:19 -0400 Subject: [PATCH] Expand warning message --- src/MLJInterface.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MLJInterface.jl b/src/MLJInterface.jl index 36138ea02..c66a48bc7 100644 --- a/src/MLJInterface.jl +++ b/src/MLJInterface.jl @@ -205,7 +205,7 @@ function validate_weights(_, ::SRRegressor, w::AbstractVector) return w end function validate_weights(_, _, w::NamedTuple) - @warn "You are using an experimental interface. This API may change in the future." + @warn "You are using an experimental interface for the `extra` field of a `Dataset` type. This API may change in the future." return w end function validate_weights(_, _, ::Nothing)