/external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/ |
D | io_ops_test.py | 40 int64_list=feature_pb2.Int64List(value=[1])), 43 int64_list=feature_pb2.Int64List(value=[2, 3, 4])), 48 int64_list=feature_pb2.Int64List(value=[5])), 51 int64_list=feature_pb2.Int64List(value=[6, 7, 8])),
|
/external/tensorflow/tensorflow/core/util/ |
D | example_proto_fast_parsing_test.cc | 240 Int64List* int64_list = in ExampleWithSomeFeatures() local 243 int64_list->add_value(3); in ExampleWithSomeFeatures() 244 int64_list->add_value(270); in ExampleWithSomeFeatures() 245 int64_list->add_value(86942); in ExampleWithSomeFeatures() 384 Int64List* int64_list = in Fuzz() local 388 int64_list->add_value(rng->Rand64()); in Fuzz()
|
D | example_proto_fast_parsing.cc | 208 bool ParseInt64List(Result* int64_list) { in ParseInt64List() argument 209 DCHECK(int64_list != nullptr); in ParseInt64List() 231 int64_list->push_back(static_cast<int64>(n)); in ParseInt64List() 240 int64_list->push_back(static_cast<int64>(n)); in ParseInt64List() 455 SmallVector<int64> int64_list; member 688 if (!feature.ParseInt64List(&out.int64_list)) { in FastParseSerializedExample() 691 if (out.int64_list.size() % num_elements != 0) { in FastParseSerializedExample() 692 return shape_error(out.int64_list.size(), "int64"); in FastParseSerializedExample() 695 out.example_end_indices.push_back(out.int64_list.size()); in FastParseSerializedExample() 765 if (!feature.ParseInt64List(&out.int64_list)) { in FastParseSerializedExample() [all …]
|
D | example_proto_helper.cc | 70 const Int64List& values = feature.int64_list(); in FeatureDenseCopy() 120 const Int64List& values = feature.int64_list(); in FeatureSparseCopy()
|
/external/tensorflow/tensorflow/core/example/ |
D | feature_util_test.cc | 56 example.features().feature().at("tag").int64_list().value_size()); in TEST() 57 EXPECT_EQ(42, example.features().feature().at("tag").int64_list().value(0)); in TEST() 65 ASSERT_EQ(1, feature.int64_list().value_size()); in TEST() 66 EXPECT_EQ(42, feature.int64_list().value(0)); in TEST() 317 ASSERT_EQ(1, se.context().feature().at("tag").int64_list().value_size()); in TEST() 318 EXPECT_EQ(42, se.context().feature().at("tag").int64_list().value(0)); in TEST()
|
D | feature.proto | 44 // value { int64_list { 81 Int64List int64_list = 3; field
|
D | example.proto | 222 // feature: { int64_list: { value: [ 5 ] } } } 279 // value: { feature: { int64_list: { value: [ 4 ] } } 280 // feature: { int64_list: { value: [ 5 ] } } 281 // feature: { int64_list: { value: [ 2 ] } } }
|
D | feature_util.cc | 62 return feature.int64_list().value(); in GetFeatureValues()
|
/external/tensorflow/tensorflow/contrib/cloud/kernels/ |
D | bigquery_table_accessor_test.cc | 413 (example.features().feature()).at("int_field").int64_list().value(0), in TEST_F() 419 EXPECT_EQ(example.features().feature().at("int_field").int64_list().value(0), in TEST_F() 468 EXPECT_EQ(example.features().feature().at("int_field").int64_list().value(0), in TEST_F() 477 EXPECT_EQ(example.features().feature().at("int_field").int64_list().value(0), in TEST_F() 486 EXPECT_EQ(example.features().feature().at("int_field").int64_list().value(0), in TEST_F() 491 EXPECT_EQ(example.features().feature().at("int_field").int64_list().value(0), in TEST_F()
|
/external/tensorflow/tensorflow/contrib/cloud/python/ops/ |
D | bigquery_reader_ops_test.py | 88 example.features.feature["int64_col"].int64_list.value.append(row[0]) 274 self.assertEqual(len(feature.int64_list.value), 1) 275 int64_col = feature.int64_list.value[0]
|
/external/tensorflow/tensorflow/core/kernels/fuzzing/dictionaries/ |
D | decode_json_example.dict | 5 "int64_list"
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.train.-feature.pbtxt | 22 name: "int64_list"
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.train.-feature.pbtxt | 22 name: "int64_list"
|
/external/tensorflow/tensorflow/contrib/feature_column/python/feature_column/ |
D | sequence_feature_column_integration_test.py | 42 example.context.feature['int_ctx'].int64_list.value.extend([5]) 46 feat.int64_list.value.extend([val] * val)
|
/external/tensorflow/tensorflow/python/feature_column/ |
D | sequence_feature_column_integration_test.py | 42 example.context.feature['int_ctx'].int64_list.value.extend([5]) 46 feat.int64_list.value.extend([val] * val)
|
/external/tensorflow/tensorflow/contrib/slim/python/slim/data/ |
D | test_utils.py | 34 return feature_pb2.Feature(int64_list=feature_pb2.Int64List(
|
/external/tensorflow/tensorflow/examples/how_tos/reading_data/ |
D | convert_to_records.py | 33 return tf.train.Feature(int64_list=tf.train.Int64List(value=[value]))
|
/external/tensorflow/tensorflow/contrib/training/python/training/ |
D | hparam.proto | 45 Int64List int64_list = 4; field
|
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/ |
D | reader_dataset_ops_test_base.py | 110 int64_list=feature_pb2.Int64List(value=[f])), 113 int64_list=feature_pb2.Int64List(value=[r])),
|
/external/tensorflow/tensorflow/contrib/eager/python/examples/revnet/ |
D | cifar_tfrecords.py | 56 return tf.train.Feature(int64_list=tf.train.Int64List(value=[value]))
|
/external/tensorflow/tensorflow/python/data/experimental/benchmarks/ |
D | map_vectorization_benchmark.py | 64 return feature_pb2.Feature(int64_list=feature_pb2.Int64List(value=values))
|
/external/tensorflow/tensorflow/contrib/meta_graph_transform/ |
D | meta_graph_transform_test.py | 469 base_meta_graph_def.collection_def[collection_name].int64_list.value[:] = ( 480 self.assertEqual(expected_ints, collection.int64_list.value)
|
/external/tensorflow/tensorflow/python/tools/ |
D | saved_model_cli.py | 490 example.features.feature[feature_name].int64_list.value.extend(
|
/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/ |
D | input_pipeline_test.py | 65 times.int64_list.value.append(i)
|
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/optimization/ |
D | map_vectorization_test.py | 238 return feature_pb2.Feature(int64_list=feature_pb2.Int64List(value=values))
|