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 cf189c5 commit bc8b106Copy full SHA for bc8b106
1 file changed
src/layers/DropOutLayer.cpp
@@ -11,7 +11,7 @@ void DropOutLayer::run(const std::vector<Tensor>& input,
11
if (input.size() != 1) {
12
throw std::runtime_error("DropOutLayer: Input tensors not 1");
13
}
14
-
+
15
// If not in training mode, just pass through the input
16
if (!training_mode_) {
17
output[0] = input[0];
0 commit comments