Instructions to use TheBloke/deepseek-coder-33B-instruct-GPTQ with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use TheBloke/deepseek-coder-33B-instruct-GPTQ with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="TheBloke/deepseek-coder-33B-instruct-GPTQ") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("TheBloke/deepseek-coder-33B-instruct-GPTQ") model = AutoModelForCausalLM.from_pretrained("TheBloke/deepseek-coder-33B-instruct-GPTQ") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use TheBloke/deepseek-coder-33B-instruct-GPTQ with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "TheBloke/deepseek-coder-33B-instruct-GPTQ" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "TheBloke/deepseek-coder-33B-instruct-GPTQ", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/TheBloke/deepseek-coder-33B-instruct-GPTQ
- SGLang
How to use TheBloke/deepseek-coder-33B-instruct-GPTQ with 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 "TheBloke/deepseek-coder-33B-instruct-GPTQ" \ --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": "TheBloke/deepseek-coder-33B-instruct-GPTQ", "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 "TheBloke/deepseek-coder-33B-instruct-GPTQ" \ --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": "TheBloke/deepseek-coder-33B-instruct-GPTQ", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use TheBloke/deepseek-coder-33B-instruct-GPTQ with Docker Model Runner:
docker model run hf.co/TheBloke/deepseek-coder-33B-instruct-GPTQ
Add note about repetition penalty to readme
During a discussion over at r/localllama, it became quite apparent that using repetition penalty settings different from 1.0 will very likely negatively affect performance of this model, since coding very often has repeating patterns.
Conversation in this thread.
https://old.reddit.com/r/LocalLLaMA/comments/17yda6k/having_a_hard_time_setting_deepseek_coder/
Would it be possible for you to add information that setting repetition penalty to 1.0 may improve coding performance of DeepSeek models to readme pages of your deepseek quants? That's seemingly how DeepSeek is running their model on their demo page, so I think this is how they intend it to be used. It is actually probably applicable to all coding models, but we noticed it for DeepSeek now. I think this could help out people who get bad first experience with this model and they are not sure why this hyped up thing runs poorly for them.