Skip to content

Commit

Permalink
Make LogisticRegression class public
Browse files Browse the repository at this point in the history
  • Loading branch information
Zomis committed Feb 21, 2016
1 parent 9c74cf3 commit 6518b43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package net.zomis.machlearn.regression;

class LogisticRegression {
public class LogisticRegression {

public static double sigmoid(double z) {
double n = (1 + Math.exp(-z));
Expand Down

0 comments on commit 6518b43

Please sign in to comment.