Views
No views yet
| Context Length | VRAM Usage (Approx) |
|---|---|
| 4,096 tokens | ~5.3 GB |
| 8,192 tokens | ~6.2 GB |
| 16,384 tokens | ~7.8 GB |
ExLlamaV2 loader.1from exllamav2 import ExLlamaV2, ExLlamaV2Config, ExLlamaV2Tokenizer
2
3config = ExLlamaV2Config()
4config.model_dir = "path/to/Llama-3-8B-Instruct-EXL3-4.0bpw"
5config.prepare()
6
7model = ExLlamaV2(config)
8model.load()