Oleg Shulyakov commited on
Commit
ec28f03
·
1 Parent(s): fca7ea4

Add Ollama instructions

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -237,6 +237,14 @@ def process_model(model_id, q_method, use_imatrix, imatrix_q_method, private_rep
237
  This model was converted to GGUF format from [`{model_id}`](https://huggingface.co/{model_id}) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
238
  Refer to the [original model card](https://huggingface.co/{model_id}) for more details on the model.
239
 
 
 
 
 
 
 
 
 
240
  ## Use with llama.cpp
241
  Install llama.cpp through brew (works on Mac and Linux)
242
 
 
237
  This model was converted to GGUF format from [`{model_id}`](https://huggingface.co/{model_id}) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
238
  Refer to the [original model card](https://huggingface.co/{model_id}) for more details on the model.
239
 
240
+ ## Use with ollama
241
+ Install ollama from the [official website](https://ollama.com/).
242
+
243
+ Run the model on the CLI.
244
+ ```sh
245
+ ollama run hf.co/{model_id}
246
+ ```
247
+
248
  ## Use with llama.cpp
249
  Install llama.cpp through brew (works on Mac and Linux)
250