Searched refs:GFile (Results 1 – 25 of 48) sorted by relevance
12
/external/tensorflow/tensorflow/core/platform/ |
D | ram_file_system_test.py | 44 with gfile.GFile('ram://a.txt', 'w') as f: 48 with gfile.GFile('ram://a.txt', 'r') as f: 52 with gfile.GFile('ram://c.txt', 'w') as f: 55 with gfile.GFile('ram://c.txt', 'w+') as f: 59 with gfile.GFile('ram://c.txt', 'r') as f: 64 with gfile.GFile('ram://a/b/%d.txt' % i, 'w') as f: 66 with gfile.GFile('ram://c/b/%d.txt' % i, 'w') as f: 74 with gfile.GFile('ram://a/b/%d.txt' % i, 'w') as f: 76 with gfile.GFile('ram://c/b/%d.txt' % i, 'w') as f: 89 with gfile.GFile('ram://exists/a/b/c.txt', 'w') as f:
|
/external/tensorflow/tensorflow/python/platform/ |
D | gfile.py | 41 class GFile(_FileIO): class 64 super(GFile, self).__init__(name=name, mode=mode) 85 Open = GFile
|
/external/tensorflow/tensorflow/python/tools/ |
D | strip_unused_lib.py | 107 with gfile.GFile(input_graph, mode) as f: 119 with gfile.GFile(output_graph, "wb") as f: 122 with gfile.GFile(output_graph, "w") as f:
|
D | freeze_graph.py | 237 with gfile.GFile(output_graph, "wb") as f: 249 with gfile.GFile(input_graph, mode) as f: 263 with gfile.GFile(input_graph, mode) as f: 277 with gfile.GFile(input_saver, mode) as f:
|
D | selective_registration_header_lib.py | 51 ops_list_str = gfile.GFile(input_file, 'r').read() 91 file_data = gfile.GFile(proto_file, 'rb').read()
|
D | print_selective_registration_header_test.py | 91 with gfile.GFile(fname, 'wb') as f: 98 with gfile.GFile(fname, 'w') as f:
|
D | optimize_for_inference.py | 95 f = gfile.GFile(FLAGS.output, "w")
|
/external/tensorflow/tensorflow/lite/python/ |
D | test_util_test.py | 32 op_set = tflite_test_util.get_ops_list(gfile.GFile(model_path, 'rb').read()) 38 op_set = tflite_test_util.get_ops_list(gfile.GFile(model_path, 'rb').read())
|
/external/tensorflow/tensorflow/lite/tools/ |
D | flatbuffer_utils.py | 60 with gfile.GFile(input_tflite_file, 'rb') as input_file_handle: 105 with gfile.GFile(output_tflite_file, 'wb') as output_file_handle:
|
/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_dir.py | 46 with tf.io.gfile.GFile(filename, 'rb') as f: 54 return [line.rstrip() for line in tf.io.gfile.GFile(filename)]
|
D | label_wav.py | 45 with tf.io.gfile.GFile(filename, 'rb') as f: 53 return [line.rstrip() for line in tf.io.gfile.GFile(filename)]
|
/external/tensorflow/tensorflow/tools/test/ |
D | system_info_lib.py | 86 with gfile.GFile('/proc/self/status', 'rb') as fh: 111 gfile.GFile(f, 'r').readline().rstrip()
|
/external/tensorflow/tensorflow/python/data/experimental/ops/ |
D | io.py | 103 with gfile.GFile(os.path.join(path, DATASET_SPEC_FILENAME), "wb") as f: 135 with gfile.GFile(os.path.join(path, DATASET_SPEC_FILENAME), "rb") as f:
|
/external/oss-fuzz/projects/gdk-pixbuf/targets/ |
D | stream_fuzzer.c | 23 GFile *file; in LLVMFuzzerTestOneInput()
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/ |
D | hash_table_asset_v1.py | 45 with tf.io.gfile.GFile(vocabulary_file, 'w') as f:
|
/external/tensorflow/tensorflow/lite/tools/signature/ |
D | signature_def_utils_test.py | 40 with tf.io.gfile.GFile(filename, 'rb') as fp:
|
/external/tensorflow/tensorflow/python/keras/layers/preprocessing/ |
D | table_utils_test.py | 425 with gfile.GFile(self._vocab_path, "w") as writer: 435 with gfile.GFile(self._vocab_path, "wb") as writer: 443 with gfile.GFile(self._vocab_path, "wb") as writer:
|
/external/tensorflow/tensorflow/python/keras/saving/saved_model/ |
D | save.py | 101 with gfile.GFile(
|
12