From 5d19d3a672b9e74a930b2758b44b4af83573534f Mon Sep 17 00:00:00 2001 From: giopaglia <24519853+giopaglia@users.noreply.github.com> Date: Fri, 5 Jul 2024 18:58:36 +0200 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e10e5c0..a1d9f8f 100644 --- a/README.md +++ b/README.md @@ -30,8 +30,6 @@ using MLJ using MLJDecisionTreeInterface using DataFrames -using SoleDecisionTreeInterface - X, y = @load_iris X = DataFrame(X) @@ -48,6 +46,8 @@ learned_dt_tree = begin fitted_params(mach).tree end +using SoleDecisionTreeInterface + # Convert to Sole model sole_dt = solemodel(learned_dt_tree) ```