1
1
# ## A Pluto.jl notebook ###
2
- # v0.17.4
2
+ # v0.17.5
3
3
4
4
using Markdown
5
5
using InteractiveUtils
@@ -132,7 +132,7 @@ md"To warm up, we'll do the equivalent of"
132
132
LogisticClassifier = @load LogisticClassifier pkg= MLJLinearModels
133
133
134
134
# ╔═╡ cebd7290-ff85-4ebd-a89d-0aa1492fb1e0
135
- pipe = Standardizer |> LogisticClassifier
135
+ pipe = Standardizer |> LogisticClassifier (lambda = 0.001 )
136
136
137
137
# ╔═╡ 9e3a5fcf-8959-440c-abd3-cb77d7a79683
138
138
md " using the generic syntax."
@@ -154,7 +154,7 @@ prediction:
154
154
# ╔═╡ 48692370-0c4b-4080-9afd-65a5b5facac9
155
155
begin
156
156
stand = Standardizer ();
157
- linear = LogisticClassifier ();
157
+ linear = LogisticClassifier (lambda = 0.001 );
158
158
159
159
mach1 = machine (stand, X);
160
160
fit! (mach1);
@@ -178,8 +178,8 @@ begin
178
178
X_node = source (X) # or X = source() if not testing
179
179
y_node = source (y) # or y = source()
180
180
181
- # stand = Standardizer(); # already defined
182
- # linear = LogisticClassifier(); # already defined
181
+ # stand = Standardizer(); # already defined in step 0
182
+ # linear = LogisticClassifier(lambda = 0.001 ); # already defined in step 0
183
183
184
184
mach1_node = machine (stand, X_node);
185
185
Xstand_node = transform (mach1_node, X_node);
0 commit comments