How to use from
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 "gagan3012/MetaModelv2" \
    --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": "gagan3012/MetaModelv2",
		"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 "gagan3012/MetaModelv2" \
        --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": "gagan3012/MetaModelv2",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

MetaModelv2

This model is a hybrid of the following models and is trained using the following configuration:

Open LLM Leaderboard Evaluation Results

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
Downloads last month
220
Safetensors
Model size
11B params
Tensor type
BF16
Β·
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Model tree for gagan3012/MetaModelv2

Quantizations
1 model

Spaces using gagan3012/MetaModelv2 25

Collection including gagan3012/MetaModelv2