datasets: | |
- OEvortex/SentimentSynth | |
- OEvortex/EmotionalIntelligence-10K | |
license: other | |
license_name: helpingai | |
license_link: LICENSE.md | |
pipeline_tag: text-generation | |
tags: | |
- HelpingAI | |
- Emotionally Intelligent | |
- EQ | |
- mlx | |
# OEvortex/HelpingAI-9B-mlx | |
This model was converted to MLX format from [`OEvortex/HelpingAI-9B`](). | |
Refer to the [original model card](https://huggingface.co/OEvortex/HelpingAI-9B) for more details on the model. | |
## Use with mlx | |
```bash | |
pip install mlx-lm | |
``` | |
```python | |
from mlx_lm import load, generate | |
model, tokenizer = load("OEvortex/HelpingAI-9B-mlx") | |
response = generate(model, tokenizer, prompt="hello", verbose=True) | |
``` | |