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 "rombodawg/Rombos-Coder-V2.5-Qwen-14b" \
    --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": "rombodawg/Rombos-Coder-V2.5-Qwen-14b",
		"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 "rombodawg/Rombos-Coder-V2.5-Qwen-14b" \
        --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": "rombodawg/Rombos-Coder-V2.5-Qwen-14b",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

Rombos-Coder-V2.5-Qwen-14b

image/jpeg

Rombos-Coder-V2.5-Qwen-14b is a continues finetuned version of Qwen2.5-Coder-14B-Instruct. I took it upon myself to merge the instruct model with the base model myself using the Ties merge method as demonstrated in my own "Continuous Finetuning" method (Linked bellow).

https://docs.google.com/document/d/1OjbjU5AOz4Ftn9xHQrX3oFQGhQ6RDUuXQipnQ9gn6tU/edit?usp=sharing

This version of the model shows higher performance than the original instruct and base models.

Quants: (Coming soon)

GGUF:

EXL2:

Benchmarks: (Coming soon)

Downloads last month
39
Safetensors
Model size
15B params
Tensor type
BF16
Β·
Inference Providers NEW
Input a message to start chatting with rombodawg/Rombos-Coder-V2.5-Qwen-14b.

Model tree for rombodawg/Rombos-Coder-V2.5-Qwen-14b

Base model

Qwen/Qwen2.5-14B
Finetuned
(123)
this model
Finetunes
1 model
Merges
3 models
Quantizations
4 models

Spaces using rombodawg/Rombos-Coder-V2.5-Qwen-14b 15

Collection including rombodawg/Rombos-Coder-V2.5-Qwen-14b