fix a wrong comment (#20307)
This commit is contained in:
parent
a257e2663a
commit
a8289cc504
@ -136,8 +136,7 @@ int main(int argc, char* argv[]) {
|
|||||||
if (images_data.empty() || valid_image_names.empty())
|
if (images_data.empty() || valid_image_names.empty())
|
||||||
throw std::logic_error("Valid input images were not found!");
|
throw std::logic_error("Valid input images were not found!");
|
||||||
|
|
||||||
// -------- Step 5. Loading model to the device --------
|
// -------- Step 5. Setting batch size using image count --------
|
||||||
// Setting batch size using image count
|
|
||||||
const size_t batchSize = images_data.size();
|
const size_t batchSize = images_data.size();
|
||||||
slog::info << "Set batch size " << std::to_string(batchSize) << slog::endl;
|
slog::info << "Set batch size " << std::to_string(batchSize) << slog::endl;
|
||||||
ov::set_batch(model, batchSize);
|
ov::set_batch(model, batchSize);
|
||||||
|
Loading…
Reference in New Issue
Block a user