chromium/third_party/mediapipe/src/mediapipe/tasks/cc/components/calculators/tensors_to_embeddings_calculator.proto

/* Copyright 2022 The MediaPipe Authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/

syntax = "proto2";

package mediapipe;

import "mediapipe/framework/calculator.proto";
import "mediapipe/tasks/cc/components/processors/proto/embedder_options.proto";

message TensorsToEmbeddingsCalculatorOptions {
  extend mediapipe.CalculatorOptions {
    optional TensorsToEmbeddingsCalculatorOptions ext = 474762326;
  }

  // The embedder options defining whether to L2-normalize or scalar-quantize
  // the outputs.
  optional mediapipe.tasks.components.processors.proto.EmbedderOptions
      embedder_options = 1;

  // The embedder head names.
  repeated string head_names = 2;

  // Names of output heads that should not be included in the embeddings.
  // Only applies if `head_names` is non-empty.
  repeated string ignored_head_names = 3;
}