Views
No views yet
| File Name | Quantization | Size | Accuracy | Recommended For |
|---|---|---|---|---|
| Llama-3.1-8B-Instruct-Platinum-F16.gguf | FP16 | ~16.1 GB | 100% | Master Reference / Benchmarking |
| Llama-3.1-8B-Instruct-Platinum-Q8_0.gguf | Q8_0 | ~8.1 GB | 99.9% | Platinum Reference / High-Fidelity |
| Llama-3.1-8B-Instruct-Platinum-Q6_K.gguf | Q6_K | ~6.6 GB | 99.8% | Complex Regulatory Reasoning |
| Llama-3.1-8B-Instruct-Platinum-Q5_K_M.gguf | Q5_K_M | ~5.8 GB | 99.5% | Balanced High-End Performance |
| Llama-3.1-8B-Instruct-Platinum-Q4_K_M.gguf | Q4_K_M | ~5.0 GB | 99.0% | Default / General Purpose |
1from llama_cpp import Llama
2
3llm = Llama(
4 model_path="Llama-3.1-8B-Instruct-Platinum-Q8_0.gguf",
5 n_gpu_layers=-1, # Target all layers to NVIDIA/Apple GPU
6 n_ctx=32768 # Supports up to 131,072 context tokens
7)
8
9output = llm("Analyze the 2026 RBI Internal Ombudsman Directions.", max_tokens=512)
10print(output["choices"][0]["text"])LLamaSharp library.1using LLama.Common;
2using LLama;
3
4var parameters = new ModelParams("Llama-3.1-8B-Instruct-Platinum-Q8_0.gguf") {
5 ContextSize = 8192,
6 GpuLayerCount = 33
7};
8
9using var model = LLamaWeights.LoadFromFile(parameters);
10using var context = model.CreateContext(parameters);
11var executor = new InteractiveExecutor(context);
12
13Console.WriteLine("Platinum Finance Engine Active.");| Platform | Support Link |
|---|---|
| Global & India | Support via Razorpay |
