/external/tensorflow/tensorflow/core/example/ |
D | example.proto | 33 // value { float_list { 46 // value { float_list { 63 // value { float_list { 74 // value { float_list { 124 // float_list: { 143 // float_list: { 148 // float_list: { 216 // value: { feature: { float_list: { value: [ 4.5 ] } } 217 // feature: { float_list: { value: [ 5.0 ] } } } 223 // value: { feature: { float_list: { value: [ 4.5 ] } } [all …]
|
D | feature.proto | 18 // value { float_list { 31 // value { float_list { 50 // value { float_list { 82 FloatList float_list = 2; field
|
D | feature_util_test.cc | 134 ASSERT_EQ(1, feature.float_list().value_size()); in TEST() 135 EXPECT_NEAR(3.14, feature.float_list().value(0), kTolerance); in TEST() 144 example.features().feature().at("tag").float_list().value_size()); in TEST() 146 example.features().feature().at("tag").float_list().value(0), in TEST()
|
/external/webrtc/third_party/abseil-cpp/absl/base/ |
D | bit_cast_test.cc | 87 static const float float_list[] = in TEST() local 91 TestMarshall<float>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST() 92 TestIntegral<float, int>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST() 93 TestIntegral<float, unsigned>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
|
/external/openscreen/third_party/abseil/src/absl/base/ |
D | bit_cast_test.cc | 87 static const float float_list[] = in TEST() local 91 TestMarshall<float>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST() 92 TestIntegral<float, int>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST() 93 TestIntegral<float, unsigned>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/base/ |
D | bit_cast_test.cc | 87 static const float float_list[] = in TEST() local 91 TestMarshall<float>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST() 92 TestIntegral<float, int>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST() 93 TestIntegral<float, unsigned>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
|
/external/libtextclassifier/abseil-cpp/absl/base/ |
D | bit_cast_test.cc | 87 static const float float_list[] = in TEST() local 91 TestMarshall<float>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST() 92 TestIntegral<float, int>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST() 93 TestIntegral<float, unsigned>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
|
/external/abseil-cpp/absl/base/ |
D | bit_cast_test.cc | 87 static const float float_list[] = in TEST() local 91 TestMarshall<float>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST() 92 TestIntegral<float, int>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST() 93 TestIntegral<float, unsigned>(float_list, ABSL_ARRAYSIZE(float_list)); in TEST()
|
/external/tensorflow/tensorflow/core/kernels/fuzzing/corpus/decode_json_example/ |
D | c4f18ca60a84e9869a28faf6f65dc758 | 5 float_list: { 12 float_list: { 19 float_list: { 26 float_list: {
|
D | 7e7f58fc443a11a0a2c5d9b643b7e99b | 1 …float_list:{value:29.0}}},feature:{movie_ratings:{float_list:{value:[9.0,9.7]}}},feature:{suggesti…
|
D | 85282c1696d98b9843ce3e8bd1cd899f | 1 …float_list:{value:29.0}}},feature:{movie_ratings:{float_list:{value:9.0,value:9.7}}},feature:{sugg…
|
D | 9fa2f86ea6d3ade36e961247c3026f8d | 5 float_list: { 12 float_list: { 20 float_list: { 27 float_list: {
|
D | 90388b9c8093d8adedad0644b618da87 | 5 float_list: { 12 float_list: { 20 float_list: { 27 float_list: {
|
D | 849a23936269a261c0370b5e9abe2416 | 1 …float_list:{value:29.0}}},feature:{movie_ratings:{float_list:{value:[[[[[[9.0,9.7]]]]]],value:[[[9…
|
D | e9f0ff6ee8d691ae69d2ecb4710030a2 | 5 float_list: { 12 float_list: { 19 float_list: { 26 float_list: {
|
D | 0875575fb76d630ccb19c5da8aab66b2 | 1 …float_list:{value:[29.0,2,3,4]}}},feature:{movie_ratings:{float_list:{value:[9.0,9.7]}}},feature:{…
|
D | 013a29ea098a178f8a36741c9fd91144 | 5 float_list: { 20 float_list: { 35 float_list: { 42 float_list: {
|
D | d456ee029700adef5d28438593010223 | 1 …float_list:{value:29.0}}},feature:{movie:{bytes_list:{value:"VGhlIFNoYXdzaGFuayBSZWRlbXB0aW9u",val…
|
/external/tensorflow/tensorflow/lite/kernels/parse_example/ |
D | example_proto_fast_parsing.h | 202 bool ParseFloatList(Result* float_list) { in ParseFloatList() argument 203 DCHECK(float_list != nullptr); in ParseFloatList() 226 const size_t initial_size = float_list->size(); in ParseFloatList() 227 float_list->resize(initial_size + packed_length / kNumFloatBytes); in ParseFloatList() 237 std::min(static_cast<uint32>((float_list->size() - initial_size) * in ParseFloatList() 240 if (!stream.ReadRaw(float_list->data() + initial_size, bytes_to_copy)) in ParseFloatList() 247 if (index < float_list->size()) { in ParseFloatList() 248 float_list->data()[index] = absl::bit_cast<float>(buffer32); in ParseFloatList() 256 const size_t initial_size = float_list->size(); in ParseFloatList() 261 float_list->resize(initial_size + num_elements); in ParseFloatList() [all …]
|
D | example_proto_fast_parsing.cc | 48 std::copy(src->float_list.begin(), src->float_list.end(), in CopySparseBufferToTensor() 161 return buffer.float_list; in GetListFromBuffer()
|
/external/tensorflow/tensorflow/core/util/ |
D | example_proto_fast_parsing_test.cc | 234 FloatList* float_list = in ExampleWithSomeFeatures() local 237 float_list->add_value(1.0); in ExampleWithSomeFeatures() 238 float_list->add_value(2.0); in ExampleWithSomeFeatures() 375 FloatList* float_list = in Fuzz() local 379 float_list->add_value(rng->RandFloat()); in Fuzz()
|
D | example_proto_fast_parsing.cc | 208 bool ParseFloatList(Result* float_list) { in ParseFloatList() argument 209 DCHECK(float_list != nullptr); in ParseFloatList() 232 const size_t initial_size = float_list->size(); in ParseFloatList() 233 float_list->resize(initial_size + packed_length / kNumFloatBytes); in ParseFloatList() 243 std::min(static_cast<uint32>((float_list->size() - initial_size) * in ParseFloatList() 246 if (!stream.ReadRaw(float_list->data() + initial_size, bytes_to_copy)) in ParseFloatList() 253 if (index < float_list->size()) { in ParseFloatList() 254 float_list->data()[index] = absl::bit_cast<float>(buffer32); in ParseFloatList() 262 const size_t initial_size = float_list->size(); in ParseFloatList() 267 float_list->resize(initial_size + num_elements); in ParseFloatList() [all …]
|
/external/tensorflow/tensorflow/core/kernels/fuzzing/dictionaries/ |
D | decode_json_example.dict | 4 "float_list"
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.train.-feature.pbtxt | 14 name: "float_list"
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.train.-feature.pbtxt | 14 name: "float_list"
|