Skip to content

Commit 8ff7e10

Browse files
authored
Merge pull request #745 from sourcepirate/patch-2
Updated activation.cc
2 parents f5a9cdf + 2b9c1f3 commit 8ff7e10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/model/layer/activation.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const Tensor Activation::Forward(int flag, const Tensor& input) {
6262
output = ReLU(input);
6363
if (flag & kTrain) buf_.push(input);
6464
} else
65-
LOG(FATAL) << "Unkown activation: " << mode_;
65+
LOG(FATAL) << "Unknown activation: " << mode_;
6666
return output;
6767
}
6868

0 commit comments

Comments
 (0)