Internal change

PiperOrigin-RevId: 521279971
This commit is contained in:
MediaPipe Team 2023-04-02 08:30:02 -07:00 committed by Copybara-Service
parent 50a49fd16c
commit 1fa9b2c985
2 changed files with 2 additions and 2 deletions

View File

@ -111,7 +111,7 @@ class ClassificationAggregationCalculator : public Node {
private:
std::vector<std::string> head_names_;
bool time_aggregation_enabled_;
std::unordered_map<int64, std::vector<ClassificationList>>
std::unordered_map<int64_t, std::vector<ClassificationList>>
cached_classifications_;
ClassificationResult ConvertToClassificationResult(CalculatorContext* cc);

View File

@ -83,7 +83,7 @@ class EmbeddingAggregationCalculator : public Node {
private:
bool time_aggregation_enabled_;
std::unordered_map<int64, EmbeddingResult> cached_embeddings_;
std::unordered_map<int64_t, EmbeddingResult> cached_embeddings_;
};
absl::Status EmbeddingAggregationCalculator::UpdateContract(