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 "Q-bert/Bumblebee-7B" \
    --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": "Q-bert/Bumblebee-7B",
		"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 "Q-bert/Bumblebee-7B" \
        --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": "Q-bert/Bumblebee-7B",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Bumblebee-7B

Bumblebee-7B

Fine-tuned On mistralai/Mistral-7B-v0.1 with meta-math/MetaMathQA

You can use ChatML format.

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
Downloads last month
220
Safetensors
Model size
7B params
Tensor type
F16
·
Inference Providers NEW
Input a message to start chatting with Q-bert/Bumblebee-7B.

Model tree for Q-bert/Bumblebee-7B

Quantizations
1 model

Dataset used to train Q-bert/Bumblebee-7B

Collection including Q-bert/Bumblebee-7B