Update src/mlpack/methods/ann/util/check_input_shape.hpp

Co-authored-by: Ryan Curtin <ryan@ratml.org>
This commit is contained in:
Nippun Sharma
2020-12-17 10:51:05 +05:30
committed by GitHub
co-authored by Ryan Curtin
parent 6a0bf85cba
commit cad5e73aca
@@ -38,10 +38,9 @@ void CheckInputShape(const T& network, const size_t inputShape,
}
else
{
std::string estr = functionName + ": ";
estr += "the first layer of the network expects ";
estr += std::to_string(layerInShape) + " elements, ";
estr += "but the input has " + std::to_string(inputShape) + " dimensions! ";
std::string estr = functionName + ": the first layer of the network " +
"expects " + std::to_string(layerInShape) + " elements, but the " +
"input has " + std::to_string(inputShape) + " dimensions!";
throw std::logic_error(estr);
}
}