Skip to content

Commit

Permalink
minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yusugomori committed Mar 25, 2014
1 parent 38f3c9b commit 7861196
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion java/LogisticRegression/src/LogisticRegression.java
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ private static void test_lr() {
{0, 0, 1, 1, 1, 0}
};

double[][] test_Y = new double[test_N][n_in];
double[][] test_Y = new double[test_N][n_out];


// test
Expand Down
2 changes: 1 addition & 1 deletion scala/LogisticRegression.scala
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ object LogisticRegression {
Array(0, 0, 1, 1, 1, 0)
)

val test_Y: Array[Array[Double]] = Array.ofDim[Double](test_N, n_in)
val test_Y: Array[Array[Double]] = Array.ofDim[Double](test_N, n_out)

// test
var j: Int = 0
Expand Down

0 comments on commit 7861196

Please sign in to comment.