How to use from
llama.cpp
Install from brew
brew install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf duyntnet/OpenCodeInterpreter-DS-6.7B-imatrix-GGUF:
# Run inference directly in the terminal:
llama-cli -hf duyntnet/OpenCodeInterpreter-DS-6.7B-imatrix-GGUF:
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf duyntnet/OpenCodeInterpreter-DS-6.7B-imatrix-GGUF:
# Run inference directly in the terminal:
llama-cli -hf duyntnet/OpenCodeInterpreter-DS-6.7B-imatrix-GGUF:
Use pre-built binary
# Download pre-built binary from:
# https://github.com/ggerganov/llama.cpp/releases
# Start a local OpenAI-compatible server with a web UI:
./llama-server -hf duyntnet/OpenCodeInterpreter-DS-6.7B-imatrix-GGUF:
# Run inference directly in the terminal:
./llama-cli -hf duyntnet/OpenCodeInterpreter-DS-6.7B-imatrix-GGUF:
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git
cd llama.cpp
cmake -B build
cmake --build build -j --target llama-server llama-cli
# Start a local OpenAI-compatible server with a web UI:
./build/bin/llama-server -hf duyntnet/OpenCodeInterpreter-DS-6.7B-imatrix-GGUF:
# Run inference directly in the terminal:
./build/bin/llama-cli -hf duyntnet/OpenCodeInterpreter-DS-6.7B-imatrix-GGUF:
Use Docker
docker model run hf.co/duyntnet/OpenCodeInterpreter-DS-6.7B-imatrix-GGUF:
Quick Links

Quantizations of https://huggingface.co/deepseek-ai/m-a-p/OpenCodeInterpreter-DS-6.7B

From original readme

Model Usage

Inference

import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
model_path="m-a-p/OpenCodeInterpreter-DS-6.7B"

tokenizer = AutoTokenizer.from_pretrained(model_path)
model = AutoModelForCausalLM.from_pretrained(
    model_path,
    torch_dtype=torch.bfloat16,
    device_map="auto",
)
model.eval()

prompt = "Write a function to find the shared elements from the given two lists."
inputs = tokenizer.apply_chat_template(
        [{'role': 'user', 'content': prompt }],
        return_tensors="pt"
    ).to(model.device)
outputs = model.generate(
    inputs, 
    max_new_tokens=1024,
    do_sample=False,
    pad_token_id=tokenizer.eos_token_id,
    eos_token_id=tokenizer.eos_token_id,
)
print(tokenizer.decode(outputs[0][len(inputs[0]):], skip_special_tokens=True))
Downloads last month
122
GGUF
Model size
7B params
Architecture
llama
Hardware compatibility
Log In to add your hardware

1-bit

2-bit

3-bit

4-bit

5-bit

6-bit

8-bit

Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support