Home
last modified time | relevance | path

Searched refs:FixedLenFeature (Results 1 – 25 of 30) sorted by relevance

12

/external/tensorflow/tensorflow/python/kernel_tests/io_ops/
Dparse_single_example_op_test.py112 if isinstance(f, parsing_ops.FixedLenFeature) and f.shape is not None:
149 parsing_ops.FixedLenFeature(
152 parsing_ops.FixedLenFeature(
155 parsing_ops.FixedLenFeature(
165 parsing_ops.FixedLenFeature(
168 parsing_ops.FixedLenFeature(
174 parsing_ops.FixedLenFeature(
208 "a": parsing_ops.FixedLenFeature((1, 3), dtypes.float32)
225 "a": parsing_ops.FixedLenFeature(None, dtypes.float32)
448 parsing_ops.FixedLenFeature((1, 2, 1), dtype=dtypes.float32),
[all …]
Dparsing_ops_test.py101 if isinstance(f, parsing_ops.FixedLenFeature) and f.shape is not None:
142 parsing_ops.FixedLenFeature(
145 parsing_ops.FixedLenFeature(
148 parsing_ops.FixedLenFeature(
158 parsing_ops.FixedLenFeature((1, 3),
162 parsing_ops.FixedLenFeature(
168 parsing_ops.FixedLenFeature((2,), dtype=dtypes.float32),
212 "a": parsing_ops.FixedLenFeature((1, 3), dtypes.float32)
232 "a": parsing_ops.FixedLenFeature(None, dtypes.float32)
460 parsing_ops.FixedLenFeature(
[all …]
/external/tensorflow/tensorflow/core/example/
Dexample_parser_configuration_test.cc69 std::vector<FixedLenFeature> dense_vec; in TEST_F()
79 std::vector<FixedLenFeature> dense_vec; in TEST_F()
94 std::vector<FixedLenFeature> dense_vec; in TEST_F()
109 std::vector<FixedLenFeature> dense_vec; in TEST_F()
200 std::vector<FixedLenFeature> fixed_len_features; in TEST_F()
207 const FixedLenFeature& f = fixed_len_features[0]; in TEST_F()
Dexample_parser_configuration.h43 std::vector<FixedLenFeature>* fixed_len_features,
51 std::vector<FixedLenFeature>* fixed_len_features,
Dexample_parser_configuration.cc47 std::vector<FixedLenFeature>* fixed_len_features, in ExtractExampleParserConfiguration()
122 FixedLenFeature& config = (*fixed_len_features)[i]; in ExtractExampleParserConfiguration()
165 std::vector<FixedLenFeature>* fixed_len_features, in ExampleParserConfigurationProtoToFeatureVectors()
173 FixedLenFeature f; in ExampleParserConfigurationProtoToFeatureVectors()
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.io.-fixed-len-feature.pbtxt1 path: "tensorflow.io.FixedLenFeature"
3 is_instance: "<class \'tensorflow.python.ops.parsing_config.FixedLenFeature\'>"
4 is_instance: "<class \'tensorflow.python.ops.parsing_config.FixedLenFeature\'>"
Dtensorflow.-fixed-len-feature.pbtxt1 path: "tensorflow.FixedLenFeature"
3 is_instance: "<class \'tensorflow.python.ops.parsing_config.FixedLenFeature\'>"
4 is_instance: "<class \'tensorflow.python.ops.parsing_config.FixedLenFeature\'>"
Dtensorflow.io.pbtxt4 name: "FixedLenFeature"
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.io.-fixed-len-feature.pbtxt1 path: "tensorflow.io.FixedLenFeature"
3 is_instance: "<class \'tensorflow.python.ops.parsing_config.FixedLenFeature\'>"
4 is_instance: "<class \'tensorflow.python.ops.parsing_config.FixedLenFeature\'>"
Dtensorflow.io.pbtxt4 name: "FixedLenFeature"
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/
Dparse_example_dataset_test.py102 if isinstance(f, parsing_ops.FixedLenFeature) and f.shape is not None:
137 parsing_ops.FixedLenFeature(
140 parsing_ops.FixedLenFeature(
143 parsing_ops.FixedLenFeature(
155 parsing_ops.FixedLenFeature(
158 parsing_ops.FixedLenFeature(
164 parsing_ops.FixedLenFeature(
197 {"a": parsing_ops.FixedLenFeature((1, 3), dtypes.float32)},
209 {"a": parsing_ops.FixedLenFeature(None, dtypes.float32)},
410 parsing_ops.FixedLenFeature((1, 2, 1), dtype=dtypes.float32),
[all …]
Dmake_batched_features_dataset_test.py90 "file": parsing_ops.FixedLenFeature([], dtypes.int64),
91 "record": parsing_ops.FixedLenFeature([], dtypes.int64),
241 "file": parsing_ops.FixedLenFeature([], dtypes.int64),
242 "record": parsing_ops.FixedLenFeature([], dtypes.int64),
244 "label": parsing_ops.FixedLenFeature([], dtypes.string),
/external/tensorflow/tensorflow/core/util/
Dexample_proto_helper_test.cc39 FixedLenFeature int64_dense_config; in SetUp()
47 FixedLenFeature float_dense_config; in SetUp()
55 FixedLenFeature string_dense_config; in SetUp()
80 std::vector<FixedLenFeature> dense_vec_;
103 std::vector<FixedLenFeature> empty_dense_vec; in TEST_F()
129 std::vector<FixedLenFeature> empty_dense_vec; in TEST_F()
Dexample_proto_helper.h40 struct FixedLenFeature { struct
79 const std::vector<FixedLenFeature>& fixed_len_features,
113 const std::vector<FixedLenFeature>& fixed_len_features,
Dexample_proto_helper.cc220 const std::vector<FixedLenFeature>& fixed_len_features, in SingleExampleProtoToTensors()
229 const FixedLenFeature& feature_config = fixed_len_features[d]; in SingleExampleProtoToTensors()
323 const std::vector<FixedLenFeature>& fixed_len_features, in BatchExampleProtoToTensors()
347 const FixedLenFeature& config = fixed_len_features[d]; in BatchExampleProtoToTensors()
/external/tensorflow/tensorflow/python/ops/
Dparsing_ops.py43 FixedLenFeature = parsing_config.FixedLenFeature variable
306 VarLenFeature, SparseFeature, FixedLenFeature, FixedLenSequenceFeature,
551 context_features, [VarLenFeature, FixedLenFeature, RaggedFeature])
787 context_features, [VarLenFeature, FixedLenFeature, RaggedFeature])
Dparsing_config.py298 class FixedLenFeature(collections.namedtuple( class
313 return super(FixedLenFeature, cls).__new__(
515 elif isinstance(feature, FixedLenFeature):
/external/tensorflow/tensorflow/python/data/kernel_tests/
Dtf_record_test_base.py57 "file": parsing_ops.FixedLenFeature([], dtypes.int64),
58 "record": parsing_ops.FixedLenFeature([], dtypes.int64),
60 "label": parsing_ops.FixedLenFeature([], dtypes.string),
/external/tensorflow/tensorflow/python/util/
Dexample_parser_configuration_test.py83 'x': parsing_ops.FixedLenFeature([1], dtypes.float32, 33.0),
/external/tensorflow/tensorflow/lite/experimental/mlir/testing/op_tests/
Dparse_example.py72 features = {"x": tf.FixedLenFeature(shape=feature_shape,
/external/tensorflow/tensorflow/lite/testing/op_tests/
Dparse_example.py68 features = {"x": tf.FixedLenFeature(shape=feature_shape,
/external/tensorflow/tensorflow/python/data/experimental/ops/
Dparsing_ops.py50 parsing_ops.FixedLenFeature, parsing_ops.FixedLenSequenceFeature,
/external/tensorflow/tensorflow/python/tools/
Dfreeze_graph_test.py130 feature_name: parsing_ops.FixedLenFeature(shape=[],
/external/tensorflow/tensorflow/python/feature_column/
Dfeature_column_v2_test.py335 'aaa': parsing_ops.FixedLenFeature((2, 3), dtype=dtypes.int32)
515 'aaa': parsing_ops.FixedLenFeature((2,), dtype=dtypes.int32)
1073 'a': parsing_ops.FixedLenFeature((2,), dtype=dtypes.int32),
2901 parse_spec1 = parsing_ops.FixedLenFeature(
2912 parse_spec1 = parsing_ops.FixedLenFeature(
2921 parse_spec1 = parsing_ops.FixedLenFeature(
2934 parse_spec1 = parsing_ops.FixedLenFeature(
2948 parse_spec1 = parsing_ops.FixedLenFeature(
2960 parse_spec1 = parsing_ops.FixedLenFeature(
Dfeature_column_test.py260 'aaa': parsing_ops.FixedLenFeature((2, 3), dtype=dtypes.int32)
413 'aaa': parsing_ops.FixedLenFeature((2,), dtype=dtypes.int32)
948 'a': parsing_ops.FixedLenFeature((2,), dtype=dtypes.int32),
3249 parse_spec1 = parsing_ops.FixedLenFeature(
3259 parse_spec1 = parsing_ops.FixedLenFeature(
3267 parse_spec1 = parsing_ops.FixedLenFeature(
3278 parse_spec1 = parsing_ops.FixedLenFeature(
3290 parse_spec1 = parsing_ops.FixedLenFeature(
3300 parse_spec1 = parsing_ops.FixedLenFeature(

12