From e1e070ca837da2ff529de68e328d3281851b2af2 Mon Sep 17 00:00:00 2001 From: BlueBug Date: Tue, 6 Feb 2024 18:11:20 +0900 Subject: [PATCH] Cough... fixed typo me not trying to be a grammar villian but a helpful noob --- caption_cog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caption_cog.py b/caption_cog.py index 6d6054a..a4755ce 100644 --- a/caption_cog.py +++ b/caption_cog.py @@ -84,7 +84,7 @@ def main(args): del gen_kwargs["max_length"] if not do_sample: - print(f"** Using greedy sampling") + print(f"** Using greedy search instead sampling. Generated captions will be deterministic; meaning it will be the same even if you run this program multiple times.") del gen_kwargs["top_k"] del gen_kwargs["top_p"] del gen_kwargs["temperature"]