Cheus-11B by ByteWave
Merge of lvkaokao/mistral-7b-finetuned-orca-dpo-v2 and teknium/OpenHermes-2.5-Mistral-7B
Open LLM Leaderboard Evaluation Results
Detailed results can be found Coming soon
| Metric | Value |
|---|---|
| Avg. | Coming soon |
| ARC (25-shot) | Coming soon |
| HellaSwag (10-shot) | Coming soon |
| MMLU (5-shot) | Coming soon |
| TruthfulQA (0-shot) | Coming soon |
| Winogrande (5-shot) | Coming soon |
| GSM8K (5-shot) | Coming soon |
| DROP (3-shot) | Coming soon |
- Downloads last month
- 108
Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "ByteWave/Cheus-11B"# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "ByteWave/Cheus-11B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'