From eb2ed73bb32efa6bd4cfc7b6623ad710f45ac9b8 Mon Sep 17 00:00:00 2001
From: sekyonda <127536312+sekyondaMeta@users.noreply.github.com>
Date: Fri, 21 Jul 2023 20:09:52 -0400
Subject: [PATCH] Update README.md

---
 README.md | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index d9e9d835..1ebe2b6c 100644
--- a/README.md
+++ b/README.md
@@ -119,11 +119,14 @@ Given that the original checkpoint resides under models/7B you can install all r
 
 ```bash
 ## Install HuggingFace Transformers from source
-pip install git+https://github.com/huggingface/transformers
-cd transformers
+pip freeze | grep transformers ## verify it is version 4.31.0 or higher
 
+```bash
+git clone git@github.com:huggingface/transformers.git
+cd transformers
+pip install protobuf
 python src/transformers/models/llama/convert_llama_weights_to_hf.py \
-    --input_dir /path/to/downloaded/llama/weights --model_size 7B --output_dir models_hf/7B
+   --input_dir /path/to/downloaded/llama/weights --model_size 7B --output_dir /output/path
 ```
 
 # Repository Organization
-- 
GitLab