From 6c6cc08bd39fd397c95bad3b39531894ba18915b Mon Sep 17 00:00:00 2001 From: Michael Mior Date: Thu, 20 Jul 2023 07:29:36 -0400 Subject: [PATCH] Update tar instructions in README It's not necessary to write the concatenated tar file to disk just to read it again for extraction. Piping to tar directly is faster and saves significant disk space. --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index d4746b1..cffd754 100644 --- a/README.md +++ b/README.md @@ -88,8 +88,7 @@ aria2c -x 16 -s 16 -j 4 --continue=true -i urls.txt ``` Run the following command to get the full model weights: ```bash -cat codegeex_13b.tar.gz.* > codegeex_13b.tar.gz -tar xvf codegeex_13b.tar.gz +cat codegeex_13b.tar.gz.* | tar zxvf - ``` ### Inference on GPUs