Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add disk space requirements to README.md #201

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,19 @@ python3 convert-pth-to-ggml.py models/7B/ 1
./main -m ./models/7B/ggml-model-q4_0.bin -t 8 -n 128
```

When running the larger models, make sure you have enough disk space to store all the intermediate files.
### Disk Space Requirements

TODO: add model disk/mem requirements
The table below details the space requirements for each model. You may optionally remove the full model after quantization to save space.

| Model name | Size full (GB) | Size Quantized (GB) | Total (GB) |
| ---------- | -------------- | ------------------- | ---------- |
| 7B | 31.17 | 4.21 | 35.38 |
| 13B | 60.21 | 8.14 | 68.35 |
| 30B | 150.48 | 20.36 | 170.84 |
| 65B | 432.64 | 40.88 | 473.52 |


TODO: add mem requirements

### Interactive mode

Expand Down