Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/OpenNMT/OpenNMT-tf.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Klein <guillaumekln@users.noreply.github.com>2022-03-16 16:28:55 +0300
committerGitHub <noreply@github.com>2022-03-16 16:28:55 +0300
commita4c1da98f7918d019ee01181243e19691c9abdfe (patch)
treef5655e943b0cd255f87f7aa0de57c1a0506efe3e
parent4f82de609f97960a909d867262393d0647c20ad9 (diff)
Clarify the inference buffering log (#935)
-rw-r--r--opennmt/inference.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/opennmt/inference.py b/opennmt/inference.py
index 64ef65d0..94c02f49 100644
--- a/opennmt/inference.py
+++ b/opennmt/inference.py
@@ -69,7 +69,7 @@ def predict_dataset(
if time_without_output >= max_time_without_output:
tf.get_logger().info(
"%d predictions are buffered, but waiting for the prediction of "
- "line %d to advance the output...",
+ "queued line %d to advance the output...",
ordered_writer.buffer_size,
ordered_writer.next_index + 1,
)