Update README.md
Browse files
README.md
CHANGED
@@ -18,7 +18,7 @@ datasets:
|
|
18 |
|
19 |
# jafermarq/finetuned_mlx
|
20 |
|
21 |
-
The Model [jafermarq/
|
22 |
|
23 |
## Use with mlx
|
24 |
|
@@ -29,6 +29,6 @@ pip install mlx-lm
|
|
29 |
```python
|
30 |
from mlx_lm import load, generate
|
31 |
|
32 |
-
model, tokenizer = load("jafermarq/
|
33 |
response = generate(model, tokenizer, prompt="hello", verbose=True)
|
34 |
```
|
|
|
18 |
|
19 |
# jafermarq/finetuned_mlx
|
20 |
|
21 |
+
The Model [jafermarq/finetuned_phi3_mlx](https://huggingface.co/jafermarq/finetuned_phi3_mlx) was converted to MLX format from [microsoft/Phi-3-mini-128k-instruct](https://huggingface.co/microsoft/Phi-3-mini-128k-instruct) using mlx-lm version **0.15.0**.
|
22 |
|
23 |
## Use with mlx
|
24 |
|
|
|
29 |
```python
|
30 |
from mlx_lm import load, generate
|
31 |
|
32 |
+
model, tokenizer = load("jafermarq/finetuned_phi3_mlx")
|
33 |
response = generate(model, tokenizer, prompt="hello", verbose=True)
|
34 |
```
|