We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08c9944 commit eea636aCopy full SHA for eea636a
src/test/groovy/net/zomis/machlearn/images/MinesweeperScan.java
@@ -137,7 +137,7 @@ private ImageNetwork learnFromMinesweeperBoard(MinesweeperTrainingBoard board) {
137
ImageAnalysis analysis = new ImageAnalysis(minWH, minWH, false);
138
ImageNetworkBuilder builder = analysis.neuralNetwork(40);
139
140
- String[] expectedRows = minesweeperTrainingBoard.getExpected().split("\n");
+ String[] expectedRows = board.getExpected().split("\n");
141
Set<Character> trainingChars = new HashSet<>();
142
for (int y = 0; y < expectedRows.length; y++) {
143
String expectedRow = expectedRows[y].trim();
0 commit comments