patchpilot_models
Collection
8 items • Updated
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 "secmlr/patchpilot_qwen_code_7B_test_swe_reasoning" \
--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": "secmlr/patchpilot_qwen_code_7B_test_swe_reasoning",
"messages": [
{
"role": "user",
"content": "What is the capital of France?"
}
]
}'This model is a fine-tuned version of Qwen/Qwen2.5-Coder-7B-Instruct on the SWE-BENCH-400-reasoning dataset.
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
Install from pip and serve model
# Install SGLang from pip: pip install sglang# Start the SGLang server: python3 -m sglang.launch_server \ --model-path "secmlr/patchpilot_qwen_code_7B_test_swe_reasoning" \ --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": "secmlr/patchpilot_qwen_code_7B_test_swe_reasoning", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'