MetaModels
Collection
Bringing my ideas to life β’ 4 items β’ Updated
This model is a hybrid of the following models and is trained using the following configuration:
Detailed results can be found here
| Metric | Value |
|---|---|
| Avg. | 74.24 |
| ARC (25-shot) | 71.08 |
| HellaSwag (10-shot) | 88.56 |
| MMLU (5-shot) | 66.29 |
| TruthfulQA (0-shot) | 71.94 |
| Winogrande (5-shot) | 83.11 |
| GSM8K (5-shot) | 64.44 |
Install from pip and serve model
# Install vLLM from pip: pip install vllm# Start the vLLM server: vllm serve "gagan3012/MetaModelv2"# Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "gagan3012/MetaModelv2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'