Update README.md
Browse files
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 |
-
|
|
|
|
|
|
|
|
|
|
|
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.
|