/external/tensorflow/tensorflow/core/example/ |
example_parser_configuration.h | 39 // extract the FixedLenFeature/VarLenFeature configurations. 43 std::vector<FixedLenFeature>* fixed_len_features, 51 std::vector<FixedLenFeature>* fixed_len_features,
|
example_parser_configuration_test.cc | 69 std::vector<FixedLenFeature> dense_vec; 79 std::vector<FixedLenFeature> dense_vec; 94 std::vector<FixedLenFeature> dense_vec; 109 std::vector<FixedLenFeature> dense_vec; 200 std::vector<FixedLenFeature> fixed_len_features; 207 const FixedLenFeature& f = fixed_len_features[0];
|
example_parser_configuration.cc | 47 std::vector<FixedLenFeature>* fixed_len_features, 121 FixedLenFeature& config = (*fixed_len_features)[i]; 164 std::vector<FixedLenFeature>* fixed_len_features, 172 FixedLenFeature f;
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
parse_single_example_op_test.py | 116 if isinstance(f, parsing_ops.FixedLenFeature) and f.shape is not None: 153 parsing_ops.FixedLenFeature( 156 parsing_ops.FixedLenFeature( 159 parsing_ops.FixedLenFeature( 169 parsing_ops.FixedLenFeature( 172 parsing_ops.FixedLenFeature( 178 parsing_ops.FixedLenFeature( 212 "a": parsing_ops.FixedLenFeature((1, 3), dtypes.float32) 229 "a": parsing_ops.FixedLenFeature(None, dtypes.float32) 441 parsing_ops.FixedLenFeature((1, 2, 1), dtype=dtypes.float32) [all...] |
parsing_ops_test.py | 115 if isinstance(f, parsing_ops.FixedLenFeature) and f.shape is not None: 154 parsing_ops.FixedLenFeature( 157 parsing_ops.FixedLenFeature( 160 parsing_ops.FixedLenFeature( 170 parsing_ops.FixedLenFeature( 173 parsing_ops.FixedLenFeature( 179 parsing_ops.FixedLenFeature((2,), dtype=dtypes.float32), 223 "a": parsing_ops.FixedLenFeature((1, 3), dtypes.float32) 243 "a": parsing_ops.FixedLenFeature(None, dtypes.float32) 462 parsing_ops.FixedLenFeature((1, 2, 1), dtype=dtypes.float32) [all...] |
/external/tensorflow/tensorflow/contrib/eager/python/examples/revnet/ |
cifar_input.py | 72 "image": tf.FixedLenFeature([], tf.string), 73 "label": tf.FixedLenFeature([], tf.int64),
|
imagenet_input.py | 111 'image/encoded': tf.FixedLenFeature((), tf.string, ''), 112 'image/format': tf.FixedLenFeature((), tf.string, 'jpeg'), 113 'image/class/label': tf.FixedLenFeature([], tf.int64, -1), 114 'image/class/text': tf.FixedLenFeature([], tf.string, ''),
|
/external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/ |
io_ops.py | 31 class FixedLenFeature(object): 61 @tc.returns(tc.Dict(string_types, parsing_ops.FixedLenFeature)) 62 @tc.accepts(tc.Mapping(string_types, FixedLenFeature)) 64 """Convert a dict of lt.FixedLenFeature into a dict of tf.FixedLenFeature.""" 74 unlabeled_features[name] = parsing_ops.FixedLenFeature( 80 @tc.accepts(core.LabeledTensorLike, tc.Mapping(string_types, FixedLenFeature), 90 features: A `dict` mapping feature keys to `labeled_tensor.FixedLenFeature` 118 @tc.accepts(core.LabeledTensorLike, tc.Mapping(string_types, FixedLenFeature), 128 features: A `dict` mapping feature keys to `labeled_tensor.FixedLenFeature` [all...] |
io_ops_test.py | 58 'a': io_ops.FixedLenFeature([], dtypes.int64), 59 'b': io_ops.FixedLenFeature([('x', 3)], dtypes.int64) 90 features = {'a': io_ops.FixedLenFeature([('x', None)], dtypes.int64)}
|
/external/tensorflow/tensorflow/core/util/ |
example_proto_helper_test.cc | 39 FixedLenFeature int64_dense_config; 47 FixedLenFeature float_dense_config; 55 FixedLenFeature string_dense_config; 80 std::vector<FixedLenFeature> dense_vec_; 103 std::vector<FixedLenFeature> empty_dense_vec; 129 std::vector<FixedLenFeature> empty_dense_vec;
|
example_proto_helper.h | 39 struct FixedLenFeature { 78 const std::vector<FixedLenFeature>& fixed_len_features, 112 const std::vector<FixedLenFeature>& fixed_len_features,
|
example_proto_helper.cc | 217 const std::vector<FixedLenFeature>& fixed_len_features, 226 const FixedLenFeature& feature_config = fixed_len_features[d]; 320 const std::vector<FixedLenFeature>& fixed_len_features, 344 const FixedLenFeature& config = fixed_len_features[d];
|
/external/tensorflow/tensorflow/python/data/experimental/kernel_tests/ |
parse_example_dataset_test.py | 105 if isinstance(f, parsing_ops.FixedLenFeature) and f.shape is not None: 139 parsing_ops.FixedLenFeature( 142 parsing_ops.FixedLenFeature( 145 parsing_ops.FixedLenFeature( 157 parsing_ops.FixedLenFeature( 160 parsing_ops.FixedLenFeature( 166 parsing_ops.FixedLenFeature( 199 {"a": parsing_ops.FixedLenFeature((1, 3), dtypes.float32)}, 210 {"a": parsing_ops.FixedLenFeature(None, dtypes.float32)}, 404 parsing_ops.FixedLenFeature((1, 2, 1), dtype=dtypes.float32) [all...] |
make_batched_features_dataset_test.py | 90 "file": parsing_ops.FixedLenFeature([], dtypes.int64), 91 "record": parsing_ops.FixedLenFeature([], dtypes.int64), 223 "file": parsing_ops.FixedLenFeature([], dtypes.int64), 224 "record": parsing_ops.FixedLenFeature([], dtypes.int64), 226 "label": parsing_ops.FixedLenFeature([], dtypes.string),
|
/external/tensorflow/tensorflow/python/util/ |
example_parser_configuration_test.py | 78 'x': parsing_ops.FixedLenFeature([1], dtypes.float32, 33.0),
|
/external/tensorflow/tensorflow/examples/how_tos/reading_data/ |
fully_connected_reader.py | 53 'image_raw': tf.FixedLenFeature([], tf.string), 54 'label': tf.FixedLenFeature([], tf.int64),
|
/external/tensorflow/tensorflow/contrib/slim/python/slim/data/ |
dataset_data_provider_test.py | 53 parsing_ops.FixedLenFeature( 56 parsing_ops.FixedLenFeature( 59 parsing_ops.FixedLenFeature(
|
tfexample_decoder_test.py | 122 parsing_ops.FixedLenFeature( 125 parsing_ops.FixedLenFeature( 272 parsing_ops.FixedLenFeature( 302 'array': parsing_ops.FixedLenFeature(np_array.shape, dtypes.float32) 325 'array': parsing_ops.FixedLenFeature(np_array.shape, dtypes.int64) 373 parsing_ops.FixedLenFeature(np_array.shape, dtype=dtypes.int64), 633 parsing_ops.FixedLenFeature( 665 parsing_ops.FixedLenFeature( 719 parsing_ops.FixedLenFeature( 722 parsing_ops.FixedLenFeature( [all...] |
/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/ |
input_pipeline_test.py | 136 TrainEvalFeatures.TIMES: parsing_ops.FixedLenFeature( 138 TrainEvalFeatures.VALUES: parsing_ops.FixedLenFeature( 225 TrainEvalFeatures.TIMES: parsing_ops.FixedLenFeature( 227 TrainEvalFeatures.VALUES: parsing_ops.FixedLenFeature( 304 TrainEvalFeatures.TIMES: parsing_ops.FixedLenFeature( 306 TrainEvalFeatures.VALUES: parsing_ops.FixedLenFeature(
|
/external/tensorflow/tensorflow/contrib/labeled_tensor/ |
__init__.py | 136 FixedLenFeature = _io_ops.FixedLenFeature
|
/external/tensorflow/tensorflow/python/data/experimental/benchmarks/ |
map_vectorization_benchmark.py | 85 "dense_int": parsing_ops.FixedLenFeature((), dtypes.int64, 0), 86 "dense_str": parsing_ops.FixedLenFeature((), dtypes.string, ""),
|
/external/tensorflow/tensorflow/python/ops/ |
parsing_ops.py | 134 @tf_export("io.FixedLenFeature", v1=["io.FixedLenFeature", "FixedLenFeature"]) 135 class FixedLenFeature(collections.namedtuple( 136 "FixedLenFeature", ["shape", "dtype", "default_value"])): 150 return super(FixedLenFeature, cls).__new__( 194 types: Type of features to allow, among `FixedLenFeature`, `VarLenFeature`, 262 elif isinstance(feature, FixedLenFeature): 263 if FixedLenFeature not in types: 264 raise ValueError("Unsupported FixedLenFeature %s." % (feature,) [all...] |
/external/tensorflow/tensorflow/contrib/session_bundle/example/ |
export_half_plus_two.py | 54 feature_configs = {"x": tf.FixedLenFeature([1], dtype=tf.float32),}
|
/external/tensorflow/tensorflow/python/data/experimental/ops/ |
parsing_ops.py | 46 parsing_ops.FixedLenFeature, parsing_ops.FixedLenSequenceFeature 109 `SparseFeature`, and `FixedLenFeature` objects. Each `VarLenFeature` 111 `FixedLenFeature` is mapped to a `Tensor`. See `tf.parse_example` for more 115 features: A `dict` mapping feature keys to `FixedLenFeature`,
|
/external/tensorflow/tensorflow/contrib/cloud/python/ops/ |
bigquery_reader_ops_test.py | 203 parsing_ops.FixedLenFeature( 206 parsing_ops.FixedLenFeature(
|