deepseek-ai_deepseek-coder-6.7b-instruct
deepseek-ai · View on Hugging Face ↗
Model card
The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.
license: other license_name: deepseek license_link: LICENSE
[🏠Homepage] | [🤖 Chat with DeepSeek Coder] | [Discord] | [Wechat(微信)]
1. Introduction of Deepseek Coder
Deepseek Coder is composed of a series of code language models, each trained from scratch on 2T tokens, with a composition of 87% code and 13% natural language in both English and Chinese. We provide various sizes of the code model, ranging from 1B to 33B versions. Each model is pre-trained on project-level code corpus by employing a window size of 16K and a extra fill-in-the-blank task, to support project-level code completion and infilling. For coding capabilities, Deepseek Coder achieves state-of-the-art performance among open-source code models on multiple programming languages and various benchmarks.
Massive Training Data: Trained from scratch fon 2T tokens, including 87% code and 13% linguistic data in both English and Chinese languages.
Highly Flexible & Scalable: Offered in model sizes of 1.3B, 5.7B, 6.7B, and 33B, enabling users to choose the setup most suitable for their requirements.
Superior Model Performance: State-of-the-art performance among publicly available code models on HumanEval, MultiPL-E, MBPP, DS-1000, and APPS benchmarks.
Advanced Code Completion Capabilities: A window size of 16K and a fill-in-the-blank task, supporting project-level code completion and infilling tasks.
2. Model Summary
deepseek-coder-6.7b-instruct is a 6.7B parameter model initialized from deepseek-coder-6.7b-base and fine-tuned on 2B tokens of instruction data.
- Home Page: DeepSeek
- Repository: deepseek-ai/deepseek-coder
- Chat With DeepSeek Coder: DeepSeek-Coder
3. How to Use
Here give some examples of how to use our model.
Chat Model Inference
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("deepseek-ai/deepseek-coder-6.7b-instruct", trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained("deepseek-ai/deepseek-coder-6.7b-instruct", trust_remote_code=True, torch_dtype=torch.bfloat16).cuda()
messages=[
{ 'role': 'user', 'content': "write a quick sort algorithm in python."}
]
inputs = tokenizer.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt").to(model.device)
# tokenizer.eos_token_id is the id of <|EOT|> token
outputs = model.generate(inputs, max_new_tokens=512, do_sample=False, top_k=50, top_p=0.95, num_return_sequences=1, eos_token_id=tokenizer.eos_token_id)
print(tokenizer.decode(outputs[0][len(inputs[0]):], skip_special_tokens=True))
4. License
This code repository is licensed under the MIT License. The use of DeepSeek Coder models is subject to the Model License. DeepSeek Coder supports commercial use.
See the LICENSE-MODEL for more details.
5. Contact
If you have any questions, please raise an issue or contact us at [email protected].
Magnet link
Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:
magnet:?xt=urn:btih:b2f2b0ceeaa508ddd7697afb79eebe9585300638&dn=deepseek-ai_deepseek-coder-6.7b-instructOpen magnet in torrent client · infohash b2f2b0ceeaa508ddd7697afb79eebe9585300638
Files & hashes
| Path | Size | sha1 | sha256 |
|---|---|---|---|
| LICENSE | 13.4 KB (13,760 B) | 9489e95c444dd3a396ec884bfd8afa719e59160f | a3a0e9449cb691a12f4de1d03725fd41326614fdeaf5d80b28c51187da0bed0e |
| README.md | 3.5 KB (3,574 B) | 35cd85041e4732de591a5485e5721c0d54e97536 | c874c1b3458a13e73263baf38836ce280d3c557e399a6b0078c22d55f7cda98e |
| config.json | 760 B (760 B) | 0acc4f7c68fd725bc672e67f81363cad2438294d | a3a2ce1a623b367d3799fb0c1e1ba12d5b8fa51a8e7abba14d10dd3739cd73e4 |
| generation_config.json | 119 B (119 B) | 19a930a8e7a08b1d002e8fa317438423b61fff22 | 186a63b420f66a03e95a035c488373361bb04833a9b83f4bdbaba70c5c816002 |
| model-00001-of-00002.safetensors | 9.29 GB (9,978,667,672 B) | 572c0b2501b491336fc3547f91dbe7ff7b61f778 | ef55ffa04c8de3943c858cbcf7143b9803b3aa608337352ca5cd329f8a208bb6 |
| model-00002-of-00002.safetensors | 3.26 GB (3,502,391,696 B) | e07396e79862fe5b60f3136c09c62b36ced49aa7 | d4d48eb2dce70933437b29d3f39b10a8820d629f936554209578e8119d5f5b2f |
| model.safetensors.index.json | 24.5 KB (25,125 B) | d4338e87a01134a05058c25623116fb6678a90c7 | 3eda4168654ae3a887a91b8e12f7d933913b4895166f6b72d6c6f71b6b4d1c2a |
| pytorch_model-00001-of-00002.bin | 9.29 GB (9,978,720,282 B) | 39d7147dea778b3daa2815b558c5f7a93d242b1d | c2d75c419c6a86602710e347ac09bdc899299c1f1c6b06e542c7588ca69bf603 |
| pytorch_model-00002-of-00002.bin | 3.26 GB (3,502,408,963 B) | 41c4a4060ce50036936b0c9d79dd886c96bde959 | 7544ec56f13952b201d7dc1e438093fc555b441bad520b1fb2e3a87b46fad7be |
| pytorch_model.bin.index.json | 23.4 KB (23,950 B) | 03ed4bdaa9d6707eefe2678470686f040dea73c9 | db3d38a3c2f9dd87601c3a343016918d1292ea30990c1ccb787812494923068e |
| tokenizer.json | 1.3 MB (1,367,962 B) | 0dfa4268afc2cf45515dec553772d7ca79f79762 | ef48ebdc8546c2d8092349d321f1d162de804a1c8900df2b615c7dc8b02ce141 |
| tokenizer_config.json | 1.8 KB (1,868 B) | 68f6f5bd3350366399a8c53d32a602c825390806 | 775f116ff1130a5b5bfc3cfdb594f9fcb5a5dc61d5a11ba92b2a7c078d66b7b7 |
Cite this release
- Canonical URL
- https://aiseedbank.org/models/deepseek-ai_deepseek-coder-6.7b-instruct/
- Slug
- deepseek-ai_deepseek-coder-6.7b-instruct
- Infohash
- b2f2b0ceeaa508ddd7697afb79eebe9585300638
- License
- custom/other license
- Signing key fingerprint
- 85a3b32c3712427b
Every file carries a locally computed sha256 — verify a download against the signed sums: deepseek-ai_deepseek-coder-6.7b-instruct.SHA256SUMS (+ minisign signature).
Provenance
| Upstream repository | deepseek-ai/deepseek-coder-6.7b-instruct |
|---|---|
| Revision (pinned) | e5d64addd26a6a1db0f9b863abf6ee3141936807 |
| Fetched at | 2026-09-03T22:03:16Z |
| License at fetch | other |
| Snapshot tool | huggingface · seedbank 0.1.0 |
Trackers
- udp://announce.aitorrent.org:6969/announce
- http://announce.aitorrent.org:7070/announce
- udp://announce2.aitorrent.org:6970/announce
- http://announce2.aitorrent.org:7071/announce
- udp://tracker.opentrackr.org:1337/announce
- udp://open.demonii.com:1337/announce
- udp://open.stealth.si:80/announce
- udp://exodus.desync.com:6969/announce
- udp://tracker.torrent.eu.org:451/announce
✓ verified · rehash-vs-hf-metadata at 2026-09-03T22:11:31Z
custom/other license25.11 GB (26,963,625,731 bytes)transformerspytorchsafetensorsllamatext-generationconversationaltext-generation-inferenceendpoints_compatible