[SAMPLES] Remove unused commandline arguments for speech_sample (#11892)

This commit is contained in:
Marcin Kusmierski
2022-07-11 12:23:32 +02:00
committed by GitHub
parent bb82f43e22
commit 3efda5067b
4 changed files with 26 additions and 39 deletions

View File

@@ -322,7 +322,7 @@ int main(int argc, char* argv[]) {
std::vector<std::string> inputNameBlobs = input_data.second;
if (inputNameBlobs.size() != cInputInfo.size()) {
std::string errMessage(std::string("Number of network inputs ( ") + std::to_string(cInputInfo.size()) +
" ) is not equal to the number of inputs entered in the -iname argument ( " +
" ) is not equal to the number of inputs entered in the -i argument ( " +
std::to_string(inputNameBlobs.size()) + " ).");
throw std::logic_error(errMessage);
}