/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.-var-len-feature.pbtxt | 1 path: "tensorflow.VarLenFeature" 3 is_instance: "<class \'tensorflow.python.ops.parsing_config.VarLenFeature\'>" 4 is_instance: "<class \'tensorflow.python.ops.parsing_config.VarLenFeature\'>"
|
D | tensorflow.io.-var-len-feature.pbtxt | 1 path: "tensorflow.io.VarLenFeature" 3 is_instance: "<class \'tensorflow.python.ops.parsing_config.VarLenFeature\'>" 4 is_instance: "<class \'tensorflow.python.ops.parsing_config.VarLenFeature\'>"
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.io.-var-len-feature.pbtxt | 1 path: "tensorflow.io.VarLenFeature" 3 is_instance: "<class \'tensorflow.python.ops.parsing_config.VarLenFeature\'>" 4 is_instance: "<class \'tensorflow.python.ops.parsing_config.VarLenFeature\'>"
|
/external/tensorflow/tensorflow/core/example/ |
D | example_parser_configuration_test.cc | 70 std::vector<VarLenFeature> sparse_vec; in TEST_F() 80 std::vector<VarLenFeature> sparse_vec; in TEST_F() 95 std::vector<VarLenFeature> sparse_vec; in TEST_F() 110 std::vector<VarLenFeature> sparse_vec; in TEST_F() 201 std::vector<VarLenFeature> var_len_features; in TEST_F() 220 const VarLenFeature& v = var_len_features[0]; in TEST_F()
|
D | example_parser_configuration.h | 44 std::vector<VarLenFeature>* var_len_features); 52 std::vector<VarLenFeature>* var_len_features);
|
D | example_parser_configuration.cc | 48 std::vector<VarLenFeature>* var_len_features) { in ExtractExampleParserConfiguration() 140 VarLenFeature& config = (*var_len_features)[i]; in ExtractExampleParserConfiguration() 166 std::vector<VarLenFeature>* var_len_features) { in ExampleParserConfigurationProtoToFeatureVectors() 188 VarLenFeature v; in ExampleParserConfigurationProtoToFeatureVectors()
|
/external/tensorflow/tensorflow/core/util/ |
D | example_proto_helper_test.cc | 64 VarLenFeature int64_sparse_config; in SetUp() 69 VarLenFeature float_sparse_config; in SetUp() 74 VarLenFeature string_sparse_config; in SetUp() 81 std::vector<VarLenFeature> sparse_vec_; 172 std::vector<VarLenFeature> empty_sparse_vec; in TEST_F() 202 std::vector<VarLenFeature> empty_sparse_vec; in TEST_F()
|
D | example_proto_helper.h | 49 struct VarLenFeature { struct 80 const std::vector<VarLenFeature>& var_len_features, 95 Status GetSparseTensorShapes(const VarLenFeature& var_len_feature, 114 const std::vector<VarLenFeature>& var_len_features, Allocator* allocator,
|
D | example_proto_helper.cc | 221 const std::vector<VarLenFeature>& var_len_features, in SingleExampleProtoToTensors() 271 const VarLenFeature& feature_config = var_len_features[d]; in SingleExampleProtoToTensors() 301 Status GetSparseTensorShapes(const VarLenFeature& var_len_feature, in GetSparseTensorShapes() 324 const std::vector<VarLenFeature>& var_len_features, Allocator* allocator, in BatchExampleProtoToTensors() 373 const VarLenFeature& feature_config = var_len_features[d]; in BatchExampleProtoToTensors()
|
/external/tensorflow/tensorflow/python/tpu/ |
D | feature_column_test.py | 55 'aaa': parsing_ops.VarLenFeature(dtypes.int64) 80 self.assertEqual({'aaa': parsing_ops.VarLenFeature(dtypes.int64)}, 99 'aaa': parsing_ops.VarLenFeature(dtypes.int64) 197 'aaa': parsing_ops.VarLenFeature(dtypes.int64) 200 'bbb': parsing_ops.VarLenFeature(dtypes.int64) 235 'aaa': parsing_ops.VarLenFeature(dtypes.int64) 238 'bbb': parsing_ops.VarLenFeature(dtypes.int64)
|
/external/tensorflow/tensorflow/python/ops/ |
D | parsing_ops.py | 40 VarLenFeature = parsing_config.VarLenFeature variable 306 VarLenFeature, SparseFeature, FixedLenFeature, FixedLenSequenceFeature, 551 context_features, [VarLenFeature, FixedLenFeature, RaggedFeature]) 554 [VarLenFeature, FixedLenSequenceFeature, RaggedFeature]) 787 context_features, [VarLenFeature, FixedLenFeature, RaggedFeature]) 790 [VarLenFeature, FixedLenSequenceFeature, RaggedFeature])
|
D | parsing_config.py | 44 class VarLenFeature(collections.namedtuple("VarLenFeature", ["dtype"])): class 511 if isinstance(feature, VarLenFeature):
|
/external/tensorflow/tensorflow/python/kernel_tests/io_ops/ |
D | parsing_ops_test.py | 103 elif isinstance(f, parsing_ops.VarLenFeature): 140 parsing_ops.VarLenFeature(dtypes.int64), 156 parsing_ops.VarLenFeature(dtypes.int64), 275 "st_c": parsing_ops.VarLenFeature(dtypes.float32), 276 "st_d": parsing_ops.VarLenFeature(dtypes.string) 632 parsing_ops.VarLenFeature(dtypes.int64), 686 parsing_ops.VarLenFeature(dtypes.int64), 1206 elif isinstance(f, parsing_ops.VarLenFeature): 1232 parsing_ops.VarLenFeature(dtypes.float32), 1310 parsing_ops.VarLenFeature(dtypes.float32), [all …]
|
D | parse_single_example_op_test.py | 114 elif isinstance(f, parsing_ops.VarLenFeature): 147 parsing_ops.VarLenFeature(dtypes.int64), 163 parsing_ops.VarLenFeature(dtypes.int64), 272 "st_c": parsing_ops.VarLenFeature(dtypes.float32), 273 "st_d": parsing_ops.VarLenFeature(dtypes.string) 641 parsing_ops.VarLenFeature(dtypes.int64), 692 parsing_ops.VarLenFeature(dtypes.int64), 907 elif isinstance(f, parsing_ops.VarLenFeature): 957 parsing_ops.VarLenFeature(dtypes.float32),
|
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/ |
D | parse_example_dataset_test.py | 106 elif isinstance(f, parsing_ops.VarLenFeature): 135 parsing_ops.VarLenFeature(dtypes.int64), 153 parsing_ops.VarLenFeature(dtypes.int64), 248 "st_c": parsing_ops.VarLenFeature(dtypes.float32), 249 "st_d": parsing_ops.VarLenFeature(dtypes.string) 571 parsing_ops.VarLenFeature(dtypes.int64), 619 parsing_ops.VarLenFeature(dtypes.int64),
|
/external/tensorflow/tensorflow/python/util/ |
D | example_parser_configuration_test.py | 84 'y': parsing_ops.VarLenFeature(dtypes.string)
|
/external/tensorflow/tensorflow/python/feature_column/ |
D | feature_column_v2_test.py | 819 'aaa': parsing_ops.VarLenFeature(dtypes.string) 825 'aaa': parsing_ops.VarLenFeature(dtypes.int32) 1074 'c': parsing_ops.VarLenFeature(dtypes.string), 1270 parsing_ops.VarLenFeature(dtypes.int32), 1272 parsing_ops.VarLenFeature(dtypes.float32), 1528 return {self.name: parsing_ops.VarLenFeature(self.dtype)} 2924 parse_spec2 = parsing_ops.VarLenFeature(dtype=dtypes.string) 2936 parse_spec2 = parsing_ops.VarLenFeature(dtype=dtypes.string) 2963 parse_spec2 = parsing_ops.VarLenFeature(dtype=dtypes.string) 2965 parse_spec3 = parsing_ops.VarLenFeature(dtype=dtypes.int32) [all …]
|
D | feature_column_test.py | 686 'aaa': parsing_ops.VarLenFeature(dtypes.string) 692 'aaa': parsing_ops.VarLenFeature(dtypes.int32) 949 'c': parsing_ops.VarLenFeature(dtypes.string), 1123 self.name: parsing_ops.VarLenFeature(dtypes.int32), 1124 '{}_weights'.format(self.name): parsing_ops.VarLenFeature( 1208 parsing_ops.VarLenFeature(dtypes.int32), 1210 parsing_ops.VarLenFeature(dtypes.float32), 1392 return {self.name: parsing_ops.VarLenFeature(self.dtype)} 2078 return {self.name: parsing_ops.VarLenFeature(self.dtype)} 3270 parse_spec2 = parsing_ops.VarLenFeature(dtype=dtypes.string) [all …]
|
D | feature_column.py | 2777 return {self.key: parsing_ops.VarLenFeature(self.dtype)} 2828 return {self.key: parsing_ops.VarLenFeature(self.dtype)} 2880 return {self.key: parsing_ops.VarLenFeature(self.dtype)} 2932 return {self.key: parsing_ops.VarLenFeature(dtypes.int64)} 2989 config[self.weight_feature_key] = parsing_ops.VarLenFeature(self.dtype) 3044 config.update({key: parsing_ops.VarLenFeature(dtypes.string)})
|
D | sequence_feature_column.py | 402 return {self.key: parsing_ops.VarLenFeature(self.dtype)}
|
D | feature_column_v2.py | 3387 return {self.key: parsing_ops.VarLenFeature(self.dtype)} 3515 return {self.key: parsing_ops.VarLenFeature(self.dtype)} 3656 return {self.key: parsing_ops.VarLenFeature(self.dtype)} 3774 return {self.key: parsing_ops.VarLenFeature(dtypes.int64)} 3889 config[self.weight_feature_key] = parsing_ops.VarLenFeature(self.dtype) 3900 config[self.weight_feature_key] = parsing_ops.VarLenFeature(self.dtype) 4026 config.update({key: parsing_ops.VarLenFeature(dtypes.string)})
|
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/optimization/ |
D | grappler_test.py | 41 features = {"x": parsing_ops.VarLenFeature(dtypes.int64)}
|
/external/tensorflow/tensorflow/lite/experimental/mlir/testing/op_tests/ |
D | parse_example.py | 76 features = {"x": tf.VarLenFeature(dtype=feature_dtype)}
|
/external/tensorflow/tensorflow/lite/testing/op_tests/ |
D | parse_example.py | 72 features = {"x": tf.VarLenFeature(dtype=feature_dtype)}
|
/external/tensorflow/tensorflow/python/data/experimental/ops/ |
D | parsing_ops.py | 49 parsing_ops.VarLenFeature, parsing_ops.SparseFeature,
|