From 8c69318fc713aa4c7cfd497e6dcee952d38b5feb Mon Sep 17 00:00:00 2001 From: Abubakar Sattar <90573878+Abubakar-Sattar@users.noreply.github.com> Date: Wed, 29 Jan 2025 14:53:43 +0500 Subject: [PATCH] Fixed a typo in Update inference.py Fixed a typo in Update inference.py Prefilling was misspelled here. parser.add_argument("--chunk_size", type=int, default=-1, help="chunk size for the model for prefiiling. " "When using 40G gpu for vl2-small, set a chunk_size for incremental_prefilling." "Otherwise, default value is -1, which means we do not use incremental_prefilling.") --- inference.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inference.py b/inference.py index 86bc10e..370cc90 100644 --- a/inference.py +++ b/inference.py @@ -160,7 +160,7 @@ if __name__ == "__main__": default="deepseek-ai/deepseek-vl2", help="model name or local path to the model") parser.add_argument("--chunk_size", type=int, default=-1, - help="chunk size for the model for prefiiling. " + help="chunk size for the model for prefilling. " "When using 40G gpu for vl2-small, set a chunk_size for incremental_prefilling." "Otherwise, default value is -1, which means we do not use incremental_prefilling.") args = parser.parse_args()