Skip to content

Commit

Permalink
IGNITE-9421: ML Examples: LogisticRegressionSGDTrainerExample
Browse files Browse the repository at this point in the history
example result not correct

this closes #4646
  • Loading branch information
zaleslaw authored and ybabak committed Aug 30, 2018
1 parent f623478 commit 184d6a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public static void main(String[] args) throws InterruptedException {
dataCache,
(k, v) -> VectorUtils.of(Arrays.copyOfRange(v, 1, v.length)),
(k, v) -> v[0]
).withRawLabels(true);
);

System.out.println(">>> Logistic regression model: " + mdl);

Expand Down

0 comments on commit 184d6a5

Please sign in to comment.