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

Michel - 13B

A Uncensored fine tune model general tasks focused of NousHermes-Llama2-13B.
With the help of my team.

Quants

Michel Exl2 Quant
Michel GGUF Quant

Useful

  • Uses Llama2 prompt template.
  • Next one will be more interesting :}

I had good results with this parameters:

  • temperature: 0.8
  • top_p: 0.75
  • min_p: 0
  • top_k: 0
  • repetition_penalty: 1.05

General Usecase Test

BenchMarks on OpenLLM Leaderboard

More details: Michel-13B OpenLLM BenchMarks
image/png

Thank you h2m for the compute

Have Fun :)

Downloads last month
461
Safetensors
Model size
13B params
Tensor type
F16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for PotatoOff/Michel-13B

Quantizations
1 model

Collection including PotatoOff/Michel-13B