anyze commited on
Commit
498d505
·
verified ·
1 Parent(s): 63f2b76

Update model card: accurate scope, fix GGUF/Ollama naming

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -106,13 +106,13 @@ Convert to GGUF with llama.cpp, then run locally:
106
  ```bash
107
  git clone https://github.com/ggerganov/llama.cpp
108
  pip install -r llama.cpp/requirements.txt
109
- python llama.cpp/convert_hf_to_gguf.py . --outfile anyze-ze1-instruct-f16.gguf --outtype f16
110
  ```
111
 
112
  **Ollama** — create a `Modelfile`:
113
 
114
  ```
115
- FROM ./anyze-ze1-instruct-f16.gguf
116
  TEMPLATE """### Instruction:
117
  {{ if .System }}{{ .System }}
118
 
@@ -125,8 +125,8 @@ PARAMETER stop "### Instruction:"
125
  PARAMETER stop "</s>"
126
  ```
127
  ```bash
128
- ollama create anyze-ze1 -f Modelfile
129
- ollama run anyze-ze1 "Write a ring buffer in C for DMA"
130
  ```
131
  For **open** mode, set the system message
132
  (`/set system You may answer any question, including general knowledge.`).
 
106
  ```bash
107
  git clone https://github.com/ggerganov/llama.cpp
108
  pip install -r llama.cpp/requirements.txt
109
+ python llama.cpp/convert_hf_to_gguf.py . --outfile Ze1-1.1B-Embedded-Instruct-f16.gguf --outtype f16
110
  ```
111
 
112
  **Ollama** — create a `Modelfile`:
113
 
114
  ```
115
+ FROM ./Ze1-1.1B-Embedded-Instruct-f16.gguf
116
  TEMPLATE """### Instruction:
117
  {{ if .System }}{{ .System }}
118
 
 
125
  PARAMETER stop "</s>"
126
  ```
127
  ```bash
128
+ ollama create ze1-embedded -f Modelfile
129
+ ollama run ze1-embedded "Write a ring buffer in C for DMA"
130
  ```
131
  For **open** mode, set the system message
132
  (`/set system You may answer any question, including general knowledge.`).