Sorawiz commited on
Commit
a3a0e45
·
verified ·
1 Parent(s): aeb1b97

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +44 -1
README.md CHANGED
@@ -14,7 +14,50 @@ tags:
14
  - merge
15
 
16
  ---
17
- # merge
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
 
19
  This is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
20
 
 
14
  - merge
15
 
16
  ---
17
+ This model was originally named "Gemma-Creative-9B-Base", but it has been renamed to "Gemma-9B-Chat" to better reflect its strengths in conversational AI.
18
+ I want to express my gratitude to the users who quantized and shared this model.
19
+ Unfortunately, due to the renaming, some existing links to the original model page may no longer work as expected.
20
+
21
+ # Chat Template
22
+
23
+ Gemma Instruct
24
+
25
+ ```
26
+ <start_of_turn>user
27
+ {prompt}<end_of_turn>
28
+ <start_of_turn>model
29
+ <end_of_turn>
30
+ <start_of_turn>model
31
+ ```
32
+
33
+ ```
34
+ {{- $system := "" }}
35
+ {{- range .Messages }}
36
+ {{- if eq .Role "system" }}
37
+ {{- if not $system }}{{ $system = .Content }}
38
+ {{- else }}{{ $system = printf "%s\n\n%s" $system .Content }}
39
+ {{- end }}
40
+ {{- continue }}
41
+ {{- else if eq .Role "user" }}<start_of_turn>user
42
+ {{- if $system }}
43
+ {{ $system }}
44
+ {{- $system = "" }}
45
+ {{- end }}
46
+ {{- else if eq .Role "assistant" }}<start_of_turn>model
47
+ {{- end }}
48
+ {{ .Content }}<end_of_turn>
49
+ {{ end }}<start_of_turn>model
50
+ ```
51
+
52
+ # GGUF
53
+
54
+ Thank you [Otakadelic](https://huggingface.co/Otakadelic),[zelk12](https://huggingface.co/zelk12) and [mradermacher](https://huggingface.co/mradermacher) for creating the GGUF versions of this model.
55
+
56
+ * Static quants - [mradermacher/Gemma-Creative-9B-Base-GGUF](https://huggingface.co/mradermacher/Gemma-Creative-9B-Base-GGUF)
57
+ * Q8_0 quant - [Otakadelic/Gemma-Creative-9B-Base-Q8_0-GGUF](https://huggingface.co/Otakadelic/Gemma-Creative-9B-Base-Q8_0-GGUF)
58
+ * Q6_K quant - [zelk12/Gemma-Creative-9B-Base-Q6_K-GGUF](https://huggingface.co/zelk12/Gemma-Creative-9B-Base-Q6_K-GGUF)
59
+
60
+ # Merge
61
 
62
  This is a merge of pre-trained language models created using [mergekit](https://github.com/cg123/mergekit).
63