HomeSort by relevance Sort by last modified time
    Searched refs:GetFeatureValues (Results 1 - 3 of 3) sorted by null

  /external/tensorflow/tensorflow/core/example/
feature_util_test.cc 34 auto tag = GetFeatureValues<protobuf_int64>("tag", example);
44 auto values = GetFeatureValues<protobuf_int64>(feature);
53 GetFeatureValues<protobuf_int64>("tag", &example)->Add(42);
63 GetFeatureValues<protobuf_int64>(&feature)->Add(42);
73 GetFeatureValues<protobuf_int64>("tag", &example)->Add(0);
81 GetFeatureValues<float>("tag", &example)->Add(3.14);
84 GetFeatureValues<protobuf_int64>("tag", &example)->Add(42);
87 auto tag_ro = GetFeatureValues<protobuf_int64>("tag", example);
98 GetFeatureValues<protobuf_int64>("tag", &example)));
100 auto tag_ro = GetFeatureValues<protobuf_int64>("tag", example)
    [all...]
feature_util.cc 60 const protobuf::RepeatedField<protobuf_int64>& GetFeatureValues<protobuf_int64>(
66 protobuf::RepeatedField<protobuf_int64>* GetFeatureValues<protobuf_int64>(
72 const protobuf::RepeatedField<float>& GetFeatureValues<float>(
78 protobuf::RepeatedField<float>* GetFeatureValues<float>(Feature* feature) {
83 const protobuf::RepeatedPtrField<string>& GetFeatureValues<string>(
89 protobuf::RepeatedPtrField<string>* GetFeatureValues<string>(Feature* feature) {
126 const protobuf::RepeatedField<protobuf_int64>& GetFeatureValues<protobuf_int64>(
130 protobuf::RepeatedField<protobuf_int64>* GetFeatureValues<protobuf_int64>(
134 const protobuf::RepeatedField<float>& GetFeatureValues<float>(
138 protobuf::RepeatedField<float>* GetFeatureValues<float>(Feature* feature)
    [all...]
feature_util.h 32 // int id = GetFeatureValues<int64>("tag", example).Get(0);
33 // GetFeatureValues<int64>("tag", &example)->Add(id);
36 // auto tag = GetFeatureValues<string>("tag", &example);
42 // GetFeatureValues gives you access to underlying data - RepeatedField object
53 // int id = GetFeatureValues<protobuf_int64>("tag", se.context()).Get(0);
55 // GetFeatureValues<protobuf_int64>("tag", se.mutable_context())->Add(42);
78 // GetFeatureValues<FeatureType>(key, proto) -> RepeatedField<FeatureType>
97 // GetFeatureValues<FeatureType>(feature) -> RepeatedField<FeatureType>
197 GetFeatureValues(const Feature& feature);
203 GetFeatureValues(const string& key, const ProtoType& proto)
    [all...]

Completed in 167 milliseconds