diff --git a/EasyLM/models/llama/convert_hf_to_easylm.py b/EasyLM/models/llama/convert_hf_to_easylm.py index d1899af7..12119b34 100644 --- a/EasyLM/models/llama/convert_hf_to_easylm.py +++ b/EasyLM/models/llama/convert_hf_to_easylm.py @@ -182,11 +182,12 @@ def main(args): parser.add_argument( "--streaming", action="store_true", - default=True, + default=False, help="whether is model weight saved stream format", ) args = parser.parse_args() + print(args.streaming) print(f"checkpoint_dir: {args.checkpoint_dir}") print(f"output_file: {args.output_file}")