Views
No views yet
swiss-ai/Apertus-8B-Instruct-2509.| Link | URI | Quant | Size |
|---|---|---|---|
| GGUF | hf:giladgd/Apertus-8B-Instruct-2509-GGUF:Q2_K | Q2_K | 3.3GB |
| GGUF | hf:giladgd/Apertus-8B-Instruct-2509-GGUF:Q3_K_S | Q3_K_S | 3.7GB |
| GGUF | hf:giladgd/Apertus-8B-Instruct-2509-GGUF:Q3_K_M | Q3_K_M | 4.2GB |
| GGUF | hf:giladgd/Apertus-8B-Instruct-2509-GGUF:Q3_K_L | Q3_K_L | 4.6GB |
| GGUF | hf:giladgd/Apertus-8B-Instruct-2509-GGUF:Q4_0 | Q4_0 | 4.7GB |
| GGUF | hf:giladgd/Apertus-8B-Instruct-2509-GGUF:Q4_K_S | Q4_K_S | 4.7GB |
| GGUF | hf:giladgd/Apertus-8B-Instruct-2509-GGUF:Q4_K_M | Q4_K_M | 5.1GB |
| GGUF | hf:giladgd/Apertus-8B-Instruct-2509-GGUF:Q5_0 | Q5_0 | 5.6GB |
| GGUF | hf:giladgd/Apertus-8B-Instruct-2509-GGUF:Q5_K_S | Q5_K_S | 5.6GB |
| GGUF | hf:giladgd/Apertus-8B-Instruct-2509-GGUF:Q5_K_M | Q5_K_M | 5.8GB |
| GGUF | hf:giladgd/Apertus-8B-Instruct-2509-GGUF:Q6_K | Q6_K | 6.6GB |
| GGUF | hf:giladgd/Apertus-8B-Instruct-2509-GGUF:Q8_0 | Q8_0 | 8.6GB |
| GGUF | hf:giladgd/Apertus-8B-Instruct-2509-GGUF:F16 | F16 | 16.1GB |
[!TIP] Download a quant usingnode-llama-cpp(more info):npx -y node-llama-cpp pull <URI>
node-llama-cpp (recommended)brew install nodejsnpx -y node-llama-cpp chat hf:giladgd/Apertus-8B-Instruct-2509-GGUF:Q4_K_Mnpm install node-llama-cpp1import {getLlama, resolveModelFile, LlamaChatSession} from "node-llama-cpp";
2
3const modelUri = "hf:giladgd/Apertus-8B-Instruct-2509-GGUF:Q4_K_M";
4
5
6const llama = await getLlama();
7const model = await llama.loadModel({
8 modelPath: await resolveModelFile(modelUri)
9});
10const context = await model.createContext();
11const session = new LlamaChatSession({
12 contextSequence: context.getSequence()
13});
14
15
16const q1 = "Hi there, how are you?";
17console.log("User: " + q1);
18
19const a1 = await session.prompt(q1);
20console.log("AI: " + a1);[!TIP] Read the getting started guide to quickly scaffold a newnode-llama-cppproject
brew install llama.cppllama-cli -hf giladgd/Apertus-8B-Instruct-2509-GGUF:Q4_K_M -p "The meaning to life and the universe is"llama-server -hf giladgd/Apertus-8B-Instruct-2509-GGUF:Q4_K_M -c 2048