Views
No views yet
| File Name | Quantization | Size | Accuracy | Recommended For |
|---|---|---|---|---|
| Phi-3.5-mini-instruct-Platinum-F16.gguf | FP16 | ~7.6 GB | 100% | Master Reference / Benchmarking |
| Phi-3.5-mini-instruct-Platinum-Q8_0.gguf | Q8_0 | ~4.1 GB | 99.9% | Platinum Reference / High-Fidelity |
| Phi-3.5-mini-instruct-Platinum-Q6_K.gguf | Q6_K | ~3.1 GB | 99.8% | High-Quality Inference |
| Phi-3.5-mini-instruct-Platinum-Q5_K_M.gguf | Q5_K_M | ~2.8 GB | 99.4% | Balanced Desktop Performance |
| Phi-3.5-mini-instruct-Platinum-Q4_K_M.gguf | Q4_K_M | ~2.4 GB | 98.8% | Mobile / Low-Power Efficiency |
1from llama_cpp import Llama
2
3llm = Llama(
4 model_path="Phi-3.5-mini-instruct-Platinum-Q8_0.gguf",
5 n_gpu_layers=-1, # Target all layers to NVIDIA/Apple GPU
6 n_ctx=4096
7)
8
9output = llm("Discuss the architectural benefits of Phi-3.5.", max_tokens=150)
10print(output["choices"][0]["text"])LLamaSharp library.1using LLama.Common;
2using LLama;
3
4var parameters = new ModelParams("Phi-3.5-mini-instruct-Platinum-Q8_0.gguf") {
5 ContextSize = 4096,
6 GpuLayerCount = 35
7};
8
9using var model = LLamaWeights.LoadFromFile(parameters);
10using var context = model.CreateContext(parameters);
11var executor = new InteractiveExecutor(context);
12
13Console.WriteLine("Universal Engine Active.");| Platform | Support Link |
|---|---|
| Global & India | Support via Razorpay |
