summaryrefslogtreecommitdiff
path: root/chromium/media/learning/common/feature_dictionary.cc
blob: 1f36725fa88cceb6a284ff72543db4ac8b1bd0f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "media/learning/common/feature_dictionary.h"

namespace media {
namespace learning {

FeatureDictionary::FeatureDictionary() = default;

FeatureDictionary::~FeatureDictionary() = default;

void FeatureDictionary::Lookup(const LearningTask& task,
                               FeatureVector* features) const {
  const size_t num_features = task.feature_descriptions.size();

  if (features->size() < num_features)
    features->resize(num_features);

  for (size_t i = 0; i < num_features; i++) {
    const auto& name = task.feature_descriptions[i].name;
    auto entry = dictionary_.find(name);
    if (entry == dictionary_.end())
      continue;

    // |name| appears in the dictionary, so add its value to |features|.
    (*features)[i] = entry->second;
  }
}

void FeatureDictionary::Add(const std::string& name,
                            const FeatureValue& value) {
  dictionary_[name] = value;
}

}  // namespace learning
}  // namespace media