Text Generation
Transformers
Safetensors
llama
HelpingAI
Emotionally Intelligent
conversational
text-generation-inference
8-bit precision
exl2
Instructions to use Zoyd/OEvortex_HelpingAI-9B-8_0bpw_exl2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Zoyd/OEvortex_HelpingAI-9B-8_0bpw_exl2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Zoyd/OEvortex_HelpingAI-9B-8_0bpw_exl2") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Zoyd/OEvortex_HelpingAI-9B-8_0bpw_exl2") model = AutoModelForCausalLM.from_pretrained("Zoyd/OEvortex_HelpingAI-9B-8_0bpw_exl2", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Zoyd/OEvortex_HelpingAI-9B-8_0bpw_exl2 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Zoyd/OEvortex_HelpingAI-9B-8_0bpw_exl2" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Zoyd/OEvortex_HelpingAI-9B-8_0bpw_exl2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Zoyd/OEvortex_HelpingAI-9B-8_0bpw_exl2
- SGLang
How to use Zoyd/OEvortex_HelpingAI-9B-8_0bpw_exl2 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Zoyd/OEvortex_HelpingAI-9B-8_0bpw_exl2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Zoyd/OEvortex_HelpingAI-9B-8_0bpw_exl2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Zoyd/OEvortex_HelpingAI-9B-8_0bpw_exl2" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Zoyd/OEvortex_HelpingAI-9B-8_0bpw_exl2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Zoyd/OEvortex_HelpingAI-9B-8_0bpw_exl2 with Docker Model Runner:
docker model run hf.co/Zoyd/OEvortex_HelpingAI-9B-8_0bpw_exl2
Upload folder using huggingface_hub
Browse files
README.md
CHANGED
|
@@ -7,6 +7,23 @@ tags:
|
|
| 7 |
- HelpingAI
|
| 8 |
- Emotionally Intelligent
|
| 9 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
|
| 11 |
|
| 12 |
# HelpingAI-9B: The King of Human like Emotion
|
|
|
|
| 7 |
- HelpingAI
|
| 8 |
- Emotionally Intelligent
|
| 9 |
---
|
| 10 |
+
**Exllamav2** quant (**exl2** / **8.0 bpw**) made with ExLlamaV2 v0.1.1
|
| 11 |
+
|
| 12 |
+
Other EXL2 quants:
|
| 13 |
+
| **Quant** | **Model Size** | **lm_head** |
|
| 14 |
+
| ----- | ---------- | ------- |
|
| 15 |
+
|<center>**[2.2](https://huggingface.co/Zoyd/OEvortex_HelpingAI-9B-2_2bpw_exl2)**</center> | <center>2900 MB</center> | <center>6</center> |
|
| 16 |
+
|<center>**[2.5](https://huggingface.co/Zoyd/OEvortex_HelpingAI-9B-2_5bpw_exl2)**</center> | <center>3171 MB</center> | <center>6</center> |
|
| 17 |
+
|<center>**[3.0](https://huggingface.co/Zoyd/OEvortex_HelpingAI-9B-3_0bpw_exl2)**</center> | <center>3668 MB</center> | <center>6</center> |
|
| 18 |
+
|<center>**[3.5](https://huggingface.co/Zoyd/OEvortex_HelpingAI-9B-3_5bpw_exl2)**</center> | <center>4163 MB</center> | <center>6</center> |
|
| 19 |
+
|<center>**[3.75](https://huggingface.co/Zoyd/OEvortex_HelpingAI-9B-3_75bpw_exl2)**</center> | <center>4411 MB</center> | <center>6</center> |
|
| 20 |
+
|<center>**[4.0](https://huggingface.co/Zoyd/OEvortex_HelpingAI-9B-4_0bpw_exl2)**</center> | <center>4659 MB</center> | <center>6</center> |
|
| 21 |
+
|<center>**[4.25](https://huggingface.co/Zoyd/OEvortex_HelpingAI-9B-4_25bpw_exl2)**</center> | <center>4906 MB</center> | <center>6</center> |
|
| 22 |
+
|<center>**[5.0](https://huggingface.co/Zoyd/OEvortex_HelpingAI-9B-5_0bpw_exl2)**</center> | <center>5647 MB</center> | <center>6</center> |
|
| 23 |
+
|<center>**[6.0](https://huggingface.co/Zoyd/OEvortex_HelpingAI-9B-6_0bpw_exl2)**</center> | <center>6691 MB</center> | <center>8</center> |
|
| 24 |
+
|<center>**[6.5](https://huggingface.co/Zoyd/OEvortex_HelpingAI-9B-6_5bpw_exl2)**</center> | <center>7176 MB</center> | <center>8</center> |
|
| 25 |
+
|<center>**[8.0](https://huggingface.co/Zoyd/OEvortex_HelpingAI-9B-8_0bpw_exl2)**</center> | <center>8149 MB</center> | <center>8</center> |
|
| 26 |
+
|
| 27 |
|
| 28 |
|
| 29 |
# HelpingAI-9B: The King of Human like Emotion
|