diff --git a/mediapipe/tasks/c/components/containers/embedding_result.h b/mediapipe/tasks/c/components/containers/embedding_result.h index 735f510d..e514f754 100644 --- a/mediapipe/tasks/c/components/containers/embedding_result.h +++ b/mediapipe/tasks/c/components/containers/embedding_result.h @@ -62,8 +62,8 @@ struct EmbeddingResult { // The optional timestamp (in milliseconds) of the start of the chunk of data // corresponding to these results. // - // This is only used for classification on time series (e.g. audio - // classification). In these use cases, the amount of data to process might + // This is only used for embedding extraction on time series (e.g. audio + // embedding). In these use cases, the amount of data to process might // exceed the maximum size that the model can process: to solve this, the // input data is split into multiple chunks starting at different timestamps. int64_t timestamp_ms; diff --git a/mediapipe/tasks/c/text/text_embedder/text_embedder.h b/mediapipe/tasks/c/text/text_embedder/text_embedder.h index 32c6038e..4f452dd6 100644 --- a/mediapipe/tasks/c/text/text_embedder/text_embedder.h +++ b/mediapipe/tasks/c/text/text_embedder/text_embedder.h @@ -13,8 +13,8 @@ See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ -#ifndef MEDIAPIPE_TASKS_C_TEXT_TEXT_CLASSIFIER_TEXT_EMBEDDER_H_ -#define MEDIAPIPE_TASKS_C_TEXT_TEXT_CLASSIFIER_TEXT_EMBEDDER_H_ +#ifndef MEDIAPIPE_TASKS_C_TEXT_TEXT_EMBEDDER_TEXT_EMBEDDER_H_ +#define MEDIAPIPE_TASKS_C_TEXT_TEXT_EMBEDDER_TEXT_EMBEDDER_H_ #include "mediapipe/tasks/c/components/containers/embedding_result.h" #include "mediapipe/tasks/c/components/processors/embedder_options.h" @@ -72,4 +72,4 @@ MP_EXPORT int text_embedder_close(void* embedder, } // extern C #endif -#endif // MEDIAPIPE_TASKS_C_TEXT_TEXT_CLASSIFIER_TEXT_EMBEDDER_H_ +#endif // MEDIAPIPE_TASKS_C_TEXT_TEXT_EMBEDDER_TEXT_EMBEDDER_H_