From e9c33437df313ee5b8c3cb01e1750fc40feca9b2 Mon Sep 17 00:00:00 2001 From: Gerardo Romero Date: Sun, 19 Mar 2023 12:24:44 -0600 Subject: [PATCH] Small tweak: changed the name of the program in argparse This was making the automatic help message to be suggesting the program's usage as being literally "$ Quantization Script [arguments]". It should now be something like "$ python3 quantize.py [arguments]". --- quantize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quantize.py b/quantize.py index bb2ca3d5f..6320b0a26 100644 --- a/quantize.py +++ b/quantize.py @@ -25,7 +25,7 @@ def main(): quantize_script_binary = "quantize" parser = argparse.ArgumentParser( - prog='Quantization Script', + prog='python3 quantize.py', description='This script quantizes the given models by applying the ' f'"{quantize_script_binary}" script on them.' )