tjadamlee commited on
Commit
94356fa
1 Parent(s): c7ff67a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -2
README.md CHANGED
@@ -60,8 +60,13 @@ This command for conversion requires approximately 60 GB of RAM.
60
  In case you have insufficient memory, you can create a sizeable swap file,
61
  which permits the operating system to utilize the disk as virtual memory.
62
 
63
- ```
64
- for f in "encrypted"/*; do if [ -f "$f" ]; then python3 decrypt.py "$f" "original/7B/consolidated.00.pth" "result/"; fi; done
 
 
 
 
 
65
  ```
66
 
67
  After executing the aforementioned command, you will obtain the following files.
 
60
  In case you have insufficient memory, you can create a sizeable swap file,
61
  which permits the operating system to utilize the disk as virtual memory.
62
 
63
+ You can use the following command in Bash:
64
+ ```bash
65
+ for f in "encrypted"/*; \
66
+ do if [ -f "$f" ]; then \
67
+ python3 decrypt.py "$f" "/path/to_original_llama_13B/consolidated.00.pth" "result/"; \
68
+ fi; \
69
+ done
70
  ```
71
 
72
  After executing the aforementioned command, you will obtain the following files.