Skip to content

Commit cd101ae

Browse files
committed
Add gguf models to question answering notebook
1 parent e992324 commit cd101ae

File tree

2 files changed

+134
-82
lines changed

2 files changed

+134
-82
lines changed

notebooks/llm-question-answering/config.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,19 @@
2222
"end_key": "<|eot_id|>",
2323
"prompt_template": "<|start_header_id|>system<|end_header_id|>\n\nBelow is an instruction that describes a task. Write a response that appropriately completes the request.<|eot_id|><|start_header_id|>user<|end_header_id|>Instruction: {instruction} Answer:<|eot_id|><|start_header_id|>assistant<|end_header_id|>",
2424
},
25+
"Qwen2.5-0.5B-Instruct-GGUF": {
26+
"model_id": "Qwen/Qwen2.5-0.5B-Instruct-GGUF",
27+
"gguf_file": [
28+
"qwen2.5-0.5b-instruct-fp16.gguf",
29+
"qwen2.5-0.5b-instruct-q4_0.gguf",
30+
"qwen2.5-0.5b-instruct-q8_0.gguf"
31+
]
32+
},
33+
"SmolLM2-135M-GGUF": {
34+
"model_id": "prithivMLmods/SmolLM2-135M-GGUF",
35+
"gguf_file": [
36+
"SmolLM2-135M.F16.gguf",
37+
"SmolLM2-135M.Q8_0.gguf"
38+
]
39+
},
2540
}

0 commit comments

Comments
 (0)