From 84c4a20107c8e275bab991468b8594d7d71a98a9 Mon Sep 17 00:00:00 2001 From: SYusupov <36813444+SYusupov@users.noreply.github.com> Date: Sat, 14 Sep 2024 16:05:38 +0200 Subject: [PATCH 1/2] Update README.md I encounter some Git buffer size limits when trying to download all commits history of the repository, such as: ```error: RPC failed; curl 18 transfer closed with outstanding read data remaining error: 5815 bytes of body are still expected fetch-pack: unexpected disconnect while reading sideband packet fatal: early EOF``` therefore the installation is faster and there are not errors when I download only the last version of the repository --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f26c811d1..933e2cbe51 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ The Language Model Evaluation Harness is the backend for 🤗 Hugging Face's pop To install the `lm-eval` package from the github repository, run: ```bash -git clone https://github.com/EleutherAI/lm-evaluation-harness +git clone --depth 1 https://github.com/EleutherAI/lm-evaluation-harness cd lm-evaluation-harness pip install -e . ``` From 871ab72df420beecc3919787bf2bec95af035b53 Mon Sep 17 00:00:00 2001 From: SYusupov <36813444+SYusupov@users.noreply.github.com> Date: Tue, 17 Sep 2024 20:13:52 +0200 Subject: [PATCH 2/2] Fix linting issue --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 933e2cbe51..078dd43f9d 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ The Language Model Evaluation Harness is the backend for 🤗 Hugging Face's pop To install the `lm-eval` package from the github repository, run: ```bash -git clone --depth 1 https://github.com/EleutherAI/lm-evaluation-harness +git clone --depth 1 https://github.com/EleutherAI/lm-evaluation-harness cd lm-evaluation-harness pip install -e . ```