Skip to content

Commit

Permalink
Merge pull request deeplearning4j#1301 from deeplearning4j/ab_evalts
Browse files Browse the repository at this point in the history
Fix MultiLayerNetwork.evaluate(DataSetIterator) for time series
  • Loading branch information
AlexDBlack committed Mar 19, 2016
2 parents 2e18d83 + 6333cd1 commit 266c498
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2264,7 +2264,8 @@ public Evaluation evaluate(DataSetIterator iterator, List<String> labelsList){
}
} else {
out = this.output(features,false);
e.eval(labels,out);
if(labels.rank() == 3 ) e.evalTimeSeries(labels,out);
else e.eval(labels,out);
}
}

Expand Down

0 comments on commit 266c498

Please sign in to comment.