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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
media / learning / common / value.h [blame]
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MEDIA_LEARNING_COMMON_VALUE_H_
#define MEDIA_LEARNING_COMMON_VALUE_H_
#include <cstdint>
#include <ostream>
#include <string>
#include <type_traits>
#include "base/component_export.h"
namespace media {
namespace learning {
// Lightweight, copyable value for features and labels.
// Strings are hashed into ints in an implementation-specific way, so don't
// count on ordering between them. See LearningTask for more info about nominal
// versus numerical values.
//
// For numeric values, ==, !=, > operators behave as one would expect.
//
// For strings, only == and != are guaranteed to be meaningful.
class COMPONENT_EXPORT(LEARNING_COMMON) Value {
public:
Value();
// We want to rule out mostly pointers, since they wouldn't make much sense.
// Note that the implicit cast would likely fail anyway.
template <
typename T,
typename = std::enable_if_t<std::is_arithmetic_v<T> || std::is_enum_v<T>>>
explicit Value(const T& x) : value_(x) {}
explicit Value(const char* x);
explicit Value(const std::string& x);
explicit Value(bool x);
Value(const Value& other);
Value(Value&&) noexcept;
Value& operator=(const Value&);
Value& operator=(Value&&) noexcept;
bool operator==(const Value& rhs) const;
bool operator!=(const Value& rhs) const;
bool operator<(const Value& rhs) const;
bool operator>(const Value& rhs) const;
bool operator>=(const Value& rhs) const;
double value() const { return value_; }
private:
double value_ = 0;
friend COMPONENT_EXPORT(LEARNING_COMMON) std::ostream& operator<<(
std::ostream& out,
const Value& value);
// Copy and assign are fine.
};
// Just to make it clearer what type of value we mean in context.
using FeatureValue = Value;
using TargetValue = Value;
COMPONENT_EXPORT(LEARNING_COMMON)
std::ostream& operator<<(std::ostream& out, const Value& value);
} // namespace learning
} // namespace media
#endif // MEDIA_LEARNING_COMMON_VALUE_H_