@brief The optional timestamp (in milliseconds) of the start of the chunk of data corresponding
to these results.
This is only used for embedding extraction on time series (e.g. audio embedder). 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.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-05-08 UTC."],[],[],null,["# MediaPipeTasksVision Framework Reference\n\nEmbeddingResult\n===============\n\n class EmbeddingResult : NSObject\n\nRepresents the embedding results of a model. Typically used as a result for embedding tasks.\n- `\n ``\n ``\n `\n\n ### [embeddings](#/c:objc(cs)MPPEmbeddingResult(py)embeddings)\n\n `\n ` \n An Array of `MPPEmbedding` objects containing the embedding results for each head of the model. \n\n #### Declaration\n\n Swift \n\n var embeddings: [../Classes/Embedding.html] { get }\n\n- `\n ``\n ``\n `\n\n ### [timestampInMilliseconds](#/c:objc(cs)MPPEmbeddingResult(py)timestampInMilliseconds)\n\n `\n ` \n @brief The optional timestamp (in milliseconds) of the start of the chunk of data corresponding\n to these results.\n This is only used for embedding extraction on time series (e.g. audio embedder). In these use\n cases, the amount of data to process might exceed the maximum size that the model can process. To\n solve this, the input data is split into multiple chunks starting at different timestamps. \n\n #### Declaration\n\n Swift \n\n var timestampInMilliseconds: Int { get }\n\n- `\n ``\n ``\n `\n\n ### [init(embeddings:timestampInMilliseconds:)](#/c:objc(cs)MPPEmbeddingResult(im)initWithEmbeddings:timestampInMilliseconds:)\n\n `\n ` \n Initializes a new `MPPEmbedding` with the given array of embeddings and timestamp (in\n milliseconds). \n\n #### Declaration\n\n Swift \n\n init(embeddings: [../Classes/Embedding.html], timestampInMilliseconds: Int)\n\n #### Parameters\n\n |---------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|\n | ` `*embeddings*` ` | An Array of `MPPEmbedding` objects containing the embedding results for each head of the model. |\n | ` `*timestampInMilliseconds*` ` | The optional timestamp (in milliseconds) of the start of the chunk of data corresponding to these results. Pass `0` if timestamp is absent. |\n\n #### Return Value\n\n An instance of `MPPEmbeddingResult` initialized with the given array of embeddings and\n timestamp (in milliseconds).\n- `\n ``\n ``\n `\n\n ### [-init](#/c:objc(cs)MPPEmbeddingResult(im)init)\n\n `\n ` \n Undocumented\n- `\n ``\n ``\n `\n\n ### [+new](#/c:objc(cs)MPPEmbeddingResult(cm)new)\n\n `\n ` \n Undocumented"]]