TrabEsrever
commited on
Commit
•
478be83
1
Parent(s):
dca7719
Upload readme.
Browse files
README.md
CHANGED
@@ -1,3 +1,47 @@
|
|
1 |
---
|
2 |
license: llama3
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: llama3
|
3 |
+
tags:
|
4 |
+
- gguf
|
5 |
+
- llama3
|
6 |
+
- ollama
|
7 |
+
- dolphin
|
8 |
+
base_model: cognitivecomputations/dolphin-2.9-llama3-70b
|
9 |
---
|
10 |
+
|
11 |
+
# Dolphin 2.9 Llama 3 70b 🐬 (GGUF)
|
12 |
+
|
13 |
+
Quantized and converted to GGUF for Ollama.
|
14 |
+
|
15 |
+
|
16 |
+
## Example Modelfile
|
17 |
+
|
18 |
+
```
|
19 |
+
FROM ./dolphin-2.9-llama3-70b-Q6_K.gguf
|
20 |
+
|
21 |
+
TEMPLATE """{{ if .System }}<|im_start|>system
|
22 |
+
{{ .System }}<|im_end|>
|
23 |
+
{{ end }}{{ if .Prompt }}<|im_start|>user
|
24 |
+
{{ .Prompt }}<|im_end|>
|
25 |
+
{{ end }}<|im_start|>assistant
|
26 |
+
{{ .Response }}<|im_end|>
|
27 |
+
"""
|
28 |
+
SYSTEM """You are Dolphin, a helpful AI assistant.
|
29 |
+
"""
|
30 |
+
PARAMETER num_ctx 8192
|
31 |
+
PARAMETER stop "<|im_start|>"
|
32 |
+
PARAMETER stop "<|im_end|>"
|
33 |
+
```
|
34 |
+
|
35 |
+
## Provided files
|
36 |
+
| Name | Quant method | Size |
|
37 |
+
| ---- | ---- | ---- |
|
38 |
+
| [dolphin-2.9-llama3-70b-Q6_K.gguf-part00000](https://huggingface.co/TrabEsrever/dolphin-2.9-llama3-70b-GGUF/blob/main/dolphin-2.9-llama3-70b-Q6_K.gguf-part00000) [dolphin-2.9-llama3-70b-Q6_K.gguf-part00001](https://huggingface.co/TrabEsrever/dolphin-2.9-llama3-70b-GGUF/blob/main/dolphin-2.9-llama3-70b-Q6_K.gguf-part00001) | Q6_K | 54G |
|
39 |
+
| [dolphin-2.9-llama3-70b-Q8_0.gguf-part00000](https://huggingface.co/TrabEsrever/dolphin-2.9-llama3-70b-GGUF/blob/main/dolphin-2.9-llama3-70b-Q8_0.gguf-part00000) [dolphin-2.9-llama3-70b-Q8_0.gguf-part00001](https://huggingface.co/TrabEsrever/dolphin-2.9-llama3-70b-GGUF/blob/main/dolphin-2.9-llama3-70b-Q8_0.gguf-part00001) | Q8_0 | 70G |
|
40 |
+
|
41 |
+
|
42 |
+
## Combine multi part files into one GGUF
|
43 |
+
|
44 |
+
```
|
45 |
+
cat dolphin-2.9-llama3-70b-Q6_K.gguf-part00000 dolphin-2.9-llama3-70b-Q6_K.gguf-part00001 > dolphin-2.9-llama3-70b-Q6_K.gguf
|
46 |
+
|
47 |
+
```
|