Skip to content

Commit

Permalink
Copy of array params through GridSearch.
Browse files Browse the repository at this point in the history
Value of ignored_cols field was not passed through GridSearch.
  • Loading branch information
mmalohlava committed Nov 27, 2013
1 parent 4420a52 commit 6b27b9b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/water/Request2.java
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,8 @@ private Filter newInstance(API api) throws Exception {
values[i] = split(value);
if( values[i] != null && values[i].length > 1 )
gridSearch = true;
} else if (arg._field.getType().isArray() && !imbricated) { // Copy values which are arrays
values[i] = new String[] { value };
}
}
}
Expand Down

0 comments on commit 6b27b9b

Please sign in to comment.