Skip to content

Commit

Permalink
Merge pull request #46 from cvjena/releasing_v2.0.3
Browse files Browse the repository at this point in the history
Releasing v2.0.3
  • Loading branch information
Clemens-Alexander Brust committed Mar 12, 2016
2 parents 3a415f7 + 12647e5 commit aa0d793
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/net/AdvancedMaxPoolingLayer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ void AdvancedMaxPoolingLayer::BackPropagate() {
for(std::size_t sample = 0; sample < input_->data.samples(); sample++) {
for (unsigned int map = 0; map < maps_; map++) {
for (unsigned int ix = 0; ix < input_width_; ix++) {
for(unsigned int iy = 0; iy < input_width_; iy++) {
for(unsigned int iy = 0; iy < input_height_; iy++) {
const unsigned int mask_index = ix + input_width_ * iy;
const unsigned int oxstart = (ix < region_width_) ?
0 : (ix - region_width_) / stride_width_+ 1;
Expand Down
2 changes: 1 addition & 1 deletion src/util/Init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ void System::Init(int requested_log_level) {
} else
log_level = requested_log_level;

LOGINFO << "CN24 v2.0.2 at " STRING_SHA1;
LOGINFO << "CN24 v2.0.3 at " STRING_SHA1;
LOGINFO << "Copyright (C) 2015 Clemens-Alexander Brust";
LOGINFO << "For licensing information, see the LICENSE"
<< " file included with this project.";
Expand Down

0 comments on commit aa0d793

Please sign in to comment.