Searched refs:text_format (Results 1 – 25 of 66) sorted by relevance
123
/external/protobuf/python/google/protobuf/internal/ |
D | text_format_test.py | 56 from google.protobuf import text_format 67 for quote in text_format._QUOTES: 112 self.RemoveRedundantZeros(text_format.MessageToString(message)), 128 text_format.MessageToString(message), 136 text_format.MessageToString(message, as_one_line=True), 147 text_format.MessageToString(message, as_one_line=True), 155 text_format.MessageToString(message, as_one_line=True), 169 text_format.MessageToString(message, as_one_line=True)), 190 wire_text = text_format.MessageToString( 193 r = text_format.Parse(wire_text, parsed_message) [all …]
|
D | proto_builder_test.py | 47 from google.protobuf import text_format 68 'bar: "asdf"\nfoo: 12345\n', text_format.MessageToString(proto)) 79 'foo: 12345\nbar: "asdf"\n', text_format.MessageToString(proto))
|
/external/tensorflow/tensorflow/python/grappler/ |
D | cost_analyzer_tool.py | 25 from google.protobuf import text_format 46 text_format.Merge(input_data, saved_model) 48 except text_format.ParseError: 55 text_format.Merge(input_data, meta_graph) 56 except text_format.ParseError: 62 text_format.Merge(input_data, graph_def) 63 except text_format.ParseError: 84 text_format.Merge(FLAGS.rewriter_config,
|
/external/tensorflow/tensorflow/python/kernel_tests/boosted_trees/ |
D | prediction_ops_test.py | 20 from google.protobuf import text_format 70 text_format.Merge(""" 137 text_format.Merge(""" 210 text_format.Merge(""" 325 text_format.Merge(""" 458 text_format.Merge( 531 text_format.Merge(""" 662 text_format.Merge(""" 808 text_format.Merge(""" 928 text_format.Merge( [all …]
|
D | resource_ops_test.py | 20 from google.protobuf import text_format 51 text_format.Merge( 181 text_format.Merge(
|
/external/tensorflow/tensorflow/python/tools/ |
D | print_selective_registration_header_test.py | 24 from google.protobuf import text_format 100 text_format.Parse(d, graph_pb2.GraphDef()) 145 text_format.Parse(d, graph_pb2.GraphDef()) 172 graphs = [text_format.Parse(GRAPH_DEF_TXT_2, graph_pb2.GraphDef())]
|
D | saved_model_utils.py | 24 from google.protobuf import text_format 69 text_format.Merge(file_content.decode("utf-8"), saved_model) 71 except text_format.ParseError as e:
|
D | strip_unused_lib.py | 23 from google.protobuf import text_format 109 text_format.Merge(f.read(), input_graph_def) 121 f.write(text_format.MessageToString(output_graph_def))
|
D | freeze_graph.py | 44 from google.protobuf import text_format 253 text_format.Merge(f.read(), input_graph_def) 268 text_format.Merge(f.read(), input_meta_graph_def) 284 text_format.Merge(f.read(), saver_def)
|
D | selective_registration_header_lib.py | 28 from google.protobuf import text_format 58 graph_def = text_format.Parse(file_data, graph_pb2.GraphDef())
|
D | optimize_for_inference.py | 62 from google.protobuf import text_format 85 text_format.Merge(data.decode("utf-8"), input_graph_def)
|
/external/tensorflow/tensorflow/contrib/saved_model/python/saved_model/ |
D | reader.py | 24 from google.protobuf import text_format 69 text_format.Merge(file_content.decode("utf-8"), saved_model) 71 except text_format.ParseError as e:
|
/external/tensorflow/tensorflow/python/util/protobuf/ |
D | compare.py | 73 from google.protobuf import text_format 95 a = text_format.Merge(a, b.__class__(), descriptor_pool=pool) 105 a_str = text_format.MessageToString(a, descriptor_pool=pool) 106 b_str = text_format.MessageToString(b, descriptor_pool=pool)
|
/external/tensorflow/tensorflow/contrib/tensorboard/plugins/projector/ |
D | __init__.py | 30 from google.protobuf import text_format 59 config_pbtxt = text_format.MessageToString(config)
|
D | projector_api_test.py | 24 from google.protobuf import text_format 52 text_format.Parse(f.read(), config2)
|
/external/tensorflow/tensorflow/python/framework/ |
D | graph_io.py | 24 from google.protobuf import text_format 71 text_format.MessageToString(graph_def))
|
/external/tensorflow/tensorflow/python/util/ |
D | example_parser_configuration_test.py | 21 from google.protobuf import text_format 74 text_format.Parse(BASIC_PROTO, golden_config)
|
/external/tensorflow/tensorflow/contrib/boosted_trees/estimator_batch/ |
D | custom_export_strategy_test.py | 25 from google.protobuf import text_format 135 text_format.Merge(dtec_str, dtec)
|
/external/tensorflow/tensorflow/contrib/proto/python/kernel_tests/ |
D | decode_proto_op_test_base.py | 27 from google.protobuf import text_format 244 text_format.Parse( 245 text_format.MessageToString(value, float_format='.17g'), 264 text_format.MessageToString(
|
D | encode_proto_op_test_base.py | 29 from google.protobuf import text_format 198 text_format.Parse( 199 text_format.MessageToString(
|
/external/tensorflow/tensorflow/contrib/receptive_field/python/util/examples/ |
D | compute_rf.py | 24 from google.protobuf import text_format 46 text_format.Parse(pbstr, graph_def)
|
/external/tensorflow/tensorflow/lite/python/ |
D | create_custom_op.py | 40 from google.protobuf import text_format 92 text_format.Parse(op_definition, node_def)
|
/external/tensorflow/tensorflow/contrib/boosted_trees/python/kernel_tests/ |
D | training_ops_test.py | 23 from google.protobuf import text_format 90 text_format.Merge(split_str, split) 115 text_format.Merge(split_str, split) 140 text_format.Merge(split_str, split) 530 text_format.Merge(""" 721 text_format.Merge(""" 1433 text_format.Merge(""" 1626 text_format.Merge( 1815 text_format.Merge( 2076 text_format.Merge( [all …]
|
/external/tensorflow/tensorflow/python/saved_model/ |
D | loader_impl.py | 25 from google.protobuf import text_format 75 text_format.Merge(file_content.decode("utf-8"), saved_model) 77 except text_format.ParseError as e:
|
/external/tensorflow/tensorflow/python/training/ |
D | checkpoint_management.py | 27 from google.protobuf import text_format 242 text_format.MessageToString(ckpt)) 275 text_format.Merge(file_content, ckpt) 293 except text_format.ParseError as e:
|
123