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 439f8b2 commit 4943664Copy full SHA for 4943664
src/viam/sdk/services/private/mlmodel_server.cpp
@@ -56,8 +56,8 @@ ::grpc::Status MLModelServiceServer::Infer(
56
inputs.emplace(tensor_pair.first, std::move(tensor));
57
} else {
58
// Normal case: multiple tensors, do metadata checks
59
- // If there are extra tensors in the inputs that not found in the metadata,
60
- // they will not be passed on to the implementation.
+ // If there are extra tensors in the inputs that not found in the metadata,
+ // they will not be passed on to the implementation.
61
for (const auto& input : md.inputs) {
62
const auto where = request->input_tensors().tensors().find(input.name);
63
if (where == request->input_tensors().tensors().end()) {
0 commit comments