]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
Add memory/disk requirements to readme
authorPavol Rusnak <redacted>
Sat, 18 Mar 2023 20:58:46 +0000 (21:58 +0100)
committerPavol Rusnak <redacted>
Sat, 18 Mar 2023 21:25:35 +0000 (22:25 +0100)
README.md

index 808d54e89ec96b109b585781f3158b7a63961435..fc8b2fda387c6a13a54a9e88cd588d397a74db2f 100644 (file)
--- a/README.md
+++ b/README.md
@@ -155,7 +155,17 @@ python3 convert-pth-to-ggml.py models/7B/ 1
 
 When running the larger models, make sure you have enough disk space to store all the intermediate files.
 
-TODO: add model disk/mem requirements
+### Memory/Disk Requirements
+
+As the models are currently fully loaded into memory, you will need adequate disk space to save them
+and sufficient RAM to load them. At the moment, memory and disk requirements are the same.
+
+| model | original size | quantized size (4-bit) |
+|-------|---------------|------------------------|
+| 7B    | 13 GB         | 3.9 GB                 |
+| 15B   | 24 GB         | 7.8 GB                 |
+| 30B   | 60 GB         | 19.5 GB                |
+| 65B   | 120 GB        | 38.5 GB                |
 
 ### Interactive mode