From b5b3b2546ca5ba9581b833194921fe9f23daaf3e Mon Sep 17 00:00:00 2001 From: CatalinVoss Date: Mon, 16 Nov 2020 13:46:34 -0800 Subject: [PATCH] Clean up remote I/O docs --- training/deepspeech_training/util/io.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/training/deepspeech_training/util/io.py b/training/deepspeech_training/util/io.py index 5f1de483..947b43af 100644 --- a/training/deepspeech_training/util/io.py +++ b/training/deepspeech_training/util/io.py @@ -34,7 +34,7 @@ def copy_remote(src, dst, overwrite=False): def open_remote(path, mode='r', buffering=-1, encoding=None, newline=None, closefd=True, opener=None): """ - Wrapper around open_remote() method that can handle remote paths like `gs://...` + Wrapper around open() method that can handle remote paths like `gs://...` off Google Cloud using Tensorflow's IO helpers. buffering, encoding, newline, closefd, and opener are ignored for remote files @@ -75,7 +75,7 @@ def glob_remote(filename): def remove_remote(filename): """ - Wrapper that can remove_remote local and remote files like `gs://...` + Wrapper that can remove local and remote files like `gs://...` """ # Conditional import return gfile.remove_remote(filename) \ No newline at end of file