Searched refs:GFile (Results 1 – 25 of 40) sorted by relevance
12
/external/tensorflow/tensorflow/python/platform/ |
D | gfile.py | 41 class GFile(_FileIO): class 52 super(GFile, self).__init__(name=name, mode=mode) 73 Open = GFile
|
/external/tensorflow/tensorflow/python/tools/ |
D | strip_unused_lib.py | 105 with gfile.GFile(input_graph, mode) as f: 117 with gfile.GFile(output_graph, "wb") as f: 120 with gfile.GFile(output_graph, "w") as f:
|
D | freeze_graph.py | 236 with gfile.GFile(output_graph, "wb") as f: 249 with gfile.GFile(input_graph, mode) as f: 264 with gfile.GFile(input_graph, mode) as f: 279 with gfile.GFile(input_saver, mode) as f:
|
D | import_pb_to_tensorboard.py | 56 with gfile.GFile(model_dir, "rb") as f:
|
D | print_selective_registration_header_test.py | 92 with gfile.GFile(fname, 'wb') as f:
|
D | selective_registration_header_lib.py | 53 file_data = gfile.GFile(proto_file, 'rb').read()
|
D | optimize_for_inference.py | 95 f = gfile.GFile(FLAGS.output, "w")
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.io.gfile.-g-file.pbtxt | 1 path: "tensorflow.io.gfile.GFile" 3 is_instance: "<class \'tensorflow.python.platform.gfile.GFile\'>"
|
D | tensorflow.gfile.-g-file.pbtxt | 1 path: "tensorflow.gfile.GFile" 3 is_instance: "<class \'tensorflow.python.platform.gfile.GFile\'>"
|
D | tensorflow.io.gfile.pbtxt | 4 name: "GFile"
|
D | tensorflow.gfile.pbtxt | 8 name: "GFile"
|
D | tensorflow.gfile.-open.pbtxt | 3 is_instance: "<class \'tensorflow.python.platform.gfile.GFile\'>"
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.io.gfile.-g-file.pbtxt | 1 path: "tensorflow.io.gfile.GFile" 3 is_instance: "<class \'tensorflow.python.platform.gfile.GFile\'>"
|
D | tensorflow.io.gfile.pbtxt | 4 name: "GFile"
|
/external/tensorflow/tensorflow/examples/speech_commands/ |
D | label_wav.py | 48 with tf.gfile.GFile(filename, 'rb') as f: 56 return [line.rstrip() for line in tf.gfile.GFile(filename)]
|
D | label_wav_dir.py | 49 with tf.gfile.GFile(filename, 'rb') as f: 57 return [line.rstrip() for line in tf.gfile.GFile(filename)]
|
D | wav_to_features.py | 80 with gfile.GFile(output_c_file, 'w') as f:
|
/external/tensorflow/tensorflow/tools/test/ |
D | system_info_lib.py | 83 with gfile.GFile('/proc/self/status', 'rb') as fh: 107 gfile.GFile(f, 'r').readline().rstrip()
|
D | run_and_gather_logs.py | 95 gfile.GFile(output_path + ".json", "w").write(json_test_results)
|
D | run_and_gather_logs_lib.py | 92 content = gfile.GFile(f, "rb").read()
|
/external/tensorflow/tensorflow/contrib/tensorboard/plugins/projector/ |
D | projector_api_test.py | 50 with gfile.GFile(os.path.join(temp_dir, 'projector_config.pbtxt')) as f:
|
/external/tensorflow/tensorflow/contrib/receptive_field/python/util/examples/ |
D | compute_rf.py | 66 f = gfile.GFile('%s' % cmd_args.output_path, 'w')
|
/external/tensorflow/tensorflow/lite/python/ |
D | create_custom_op.py | 65 with gfile.GFile(filename, "rb") as f:
|
/external/tensorflow/tensorflow/examples/saved_model/integration_tests/ |
D | export_simple_text_embedding.py | 41 with tf.io.gfile.GFile(vocabulary_file, "w") as f:
|
/external/tensorflow/tensorflow/python/grappler/ |
D | cost_analyzer_tool.py | 42 with gfile.GFile(FLAGS.input) as input_file:
|
12