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 "Contamination/contaminated_proof_7b_v1.0" \
    --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": "Contamination/contaminated_proof_7b_v1.0",
		"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 "Contamination/contaminated_proof_7b_v1.0" \
        --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": "Contamination/contaminated_proof_7b_v1.0",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Quick Links

WARNING: Contamination

This model is TOTALLY CONTAMINATED, which made resulting model unreliable.

SO DO NOT USE THIS MODEL FOR ANY PURPOSE. PLEASE ONLY USE FOR REFERENCE.

This model is trained with ultrachat_200k data to have conversational features.

MODEL ARCHITECTURE

This model was initialized with Mistral-7B-v0.1

PLEASE NOTE

Users and sponsors should be wary that many models are also unreliable. I hope our model can show the vulnerablity of the leaderboard.

Downloads last month
49
Safetensors
Model size
7B params
Tensor type
F16
Β·
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Spaces using Contamination/contaminated_proof_7b_v1.0 22