File size: 770 Bytes
71d4b30 917283e 71d4b30 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
---
language:
- en
license: mit
tags:
- convAI
- conversational
- mlx
license_link: https://huggingface.co/microsoft/phi-2/resolve/main/LICENSE
widget:
- text: Hello who are you?
example_title: Identity
- text: What can you do?
example_title: Capabilities
- text: Create a fastapi endpoint to retrieve the weather given a zip code.
example_title: Coding
pipeline_tag: text-generation
---
# mitkox/phi-2-super-OpenHermes-2.5-moe-mlx
This model is a MoE merger of [`abacaj/phi-2-super`]() with [`g-ronimo/phi-2-OpenHermes-2.5`]()
## Use with mlx
```bash
pip install mlx-lm
```
```python
from mlx_lm import load, generate
model, tokenizer = load("mitkox/phi-2-super-OpenHermes-2.5-moe-mlx")
response = generate(model, tokenizer, prompt="hello", verbose=True)
```
|