cogbuji commited on
Commit
e50df86
·
verified ·
1 Parent(s): 2a47b32

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -19,8 +19,8 @@ model-index:
19
  results: []
20
  ---
21
 
22
- # cogbuji/OpenHermes-2.5-Mistral-7B-4bit
23
- This model was converted to MLX format from [`teknium/OpenHermes-2.5-Mistral-7B`]().
24
  Refer to the [original model card](https://huggingface.co/teknium/OpenHermes-2.5-Mistral-7B) for more details on the model.
25
  ## Use with mlx
26
 
@@ -31,6 +31,6 @@ pip install mlx-lm
31
  ```python
32
  from mlx_lm import load, generate
33
 
34
- model, tokenizer = load("cogbuji/OpenHermes-2.5-Mistral-7B-4bit")
35
  response = generate(model, tokenizer, prompt="hello", verbose=True)
36
  ```
 
19
  results: []
20
  ---
21
 
22
+ # cogbuji/OpenHermes-2.5-Mistral-7B-mlx-4bit
23
+ This model was converted to MLX format from `teknium/OpenHermes-2.5-Mistral-7B` and quantized
24
  Refer to the [original model card](https://huggingface.co/teknium/OpenHermes-2.5-Mistral-7B) for more details on the model.
25
  ## Use with mlx
26
 
 
31
  ```python
32
  from mlx_lm import load, generate
33
 
34
+ model, tokenizer = load("cogbuji/OpenHermes-2.5-Mistral-7B-mlx-4bit")
35
  response = generate(model, tokenizer, prompt="hello", verbose=True)
36
  ```