mirror of
https://github.com/deepseek-ai/DeepSeek-Coder
synced 2024-12-05 02:24:46 +00:00
Merge remote-tracking branch 'origin/main' into ydj/dev
This commit is contained in:
commit
3db721c696
85
README.md
85
README.md
@ -1,30 +1,30 @@
|
||||
<p align="center">
|
||||
<img width="1000px" alt="DeepSeek Coder" src="pictures/logo.png">
|
||||
</p>
|
||||
<p align="center"><a href="https://www.deepseek.com/">[<img src="pictures/home.png" width="20px"> Homepage]</a> | <a href="https://coder.deepseek.com/">[🤖 Chat with DeepSeek Coder] | <a href="https://huggingface.co/deepseek-ai">[🤗 Models Download]</a> </p>
|
||||
<p align="center"><a href="https://www.deepseek.com/">[<img src="pictures/home.png" width="20px"> Homepage]</a> | <a href="https://coder.deepseek.com/">[🤖 Chat with DeepSeek Coder]</a> | <a href="https://huggingface.co/deepseek-ai">[🤗 Models Download]</a> | <a href="https://discord.gg/Tc7c45Zzu5">[Discord]</a> | <a href="https://github.com/guoday/assert/blob/main/QR.png?raw=true">[WeChat (微信)]</a></p>
|
||||
<hr>
|
||||
|
||||
|
||||
### 1. Introduction of Deepseek Coder
|
||||
### 1. Introduction of DeepSeek Coder
|
||||
|
||||
Deepseek Coder comprises a series of code language models trained on both 87% code and 13% natural language in English and Chinese, with each model pre-trained on 2T tokens. 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.
|
||||
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 an 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.
|
||||
|
||||
<p align="center">
|
||||
<img src="pictures/result.png" alt="result" width="70%">
|
||||
</p>
|
||||
|
||||
- **Massive Training Data**: Trained on 2T tokens, including 87% code and 13% linguistic data in both English and Chinese languages.
|
||||
|
||||
- **Massive Training Data**: Trained from scratch on 2T tokens, including 87% code and 13% linguistic data in both English and Chinese languages.
|
||||
|
||||
- **Highly Flexible & Scalable**: Offered in model sizes of 1B, 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. Evaluation Results
|
||||
We evaluate DeepSeek Coder on various coding-related benchmarks.
|
||||
Only `pass@1` results on HumanEval (Python and Multilingual), MBPP, DS-1000 are reported here:
|
||||
Only `pass@1` results on HumanEval (Python and Multilingual), MBPP, and DS-1000 are reported here:
|
||||
|
||||
<p align="center">
|
||||
<img src="pictures/table.png" alt="table" width="70%">
|
||||
@ -33,17 +33,16 @@ Only `pass@1` results on HumanEval (Python and Multilingual), MBPP, DS-1000 are
|
||||
|
||||
The result shows that DeepSeek-Coder-Base-33B significantly outperforms existing open-source code LLMs. Compared with CodeLlama-34B, it leads by 7.9%, 9.3%, 10.8% and 5.9% respectively on HumanEval Python, HumanEval Multilingual, MBPP and DS-1000.
|
||||
Surprisingly, our DeepSeek-Coder-Base-7B reaches the performance of CodeLlama-34B.
|
||||
And the DeepSeek-Coder-Instruct-33B model after instruction tuning outperforms GPT35-turbo on HumanEval and achieves comparable result with GPT35-turbo on MBPP.
|
||||
The DeepSeek-Coder-Instruct-33B model after instruction tuning outperforms GPT35-turbo on HumanEval and achieves comparable results with GPT35-turbo on MBPP.
|
||||
|
||||
More evaluation details can be found in the [Detailed Evaluation](#5-detailed-evaluation-results).
|
||||
|
||||
|
||||
|
||||
### 3. Procedure of Data Creation and Model Training
|
||||
|
||||
#### Data Creation
|
||||
|
||||
- Step 1: Collecting code data from GitHub and apply the same filtering rules as [StarcoderData](https://github.com/bigcode-project/bigcode-dataset) to filter data.
|
||||
- Step 1: Collect code data from GitHub and apply the same filtering rules as [StarCoder Data](https://github.com/bigcode-project/bigcode-dataset) to filter data.
|
||||
- Step 2: Parsing the dependencies of files within the same repository to rearrange the file positions based on their dependencies.
|
||||
- Step 3: Concatenating dependent files to form a single example and employ repo-level minhash for deduplication.
|
||||
- Step 4: Further filtering out low-quality code, such as codes with syntax errors or poor readability.
|
||||
@ -52,18 +51,23 @@ More evaluation details can be found in the [Detailed Evaluation](#5-detailed-ev
|
||||
|
||||
#### Model Training
|
||||
|
||||
- Step 1: Initially pre-trained with a dataset consisting of 87% code, 10% code-related language (Github Markdown and StackExchange), and 3% non-code related Chinese language. Models are pre-trained using 1.8T tokens and a 4K window size in this step.
|
||||
- Step 1: Initially pre-trained with a dataset consisting of 87% code, 10% code-related language (Github Markdown and StackExchange), and 3% non-code-related Chinese language. Models are pre-trained using 1.8T tokens and a 4K window size in this step.
|
||||
- Step 2: Further Pre-training using an extended 16K window size on an additional 200B tokens, resulting in foundational models (**DeepSeek-Coder-Base**).
|
||||
- Step 3: Instruction Fine-tuning on 2B tokens of instruction data, resulting in instruction-tuned models (**DeepSeek-Coder-Instruct**).
|
||||
|
||||
<img src="pictures/model_pretraining.png" alt="model_pretraining" width="100%">
|
||||
|
||||
|
||||
|
||||
|
||||
### 4. How to Use
|
||||
Here give some examples of how to use our model.
|
||||
#### 1)Code Completion
|
||||
Before proceeding, you'll need to install the necessary dependencies. You can do this by running the following command:
|
||||
```
|
||||
pip install -r requirements.txt
|
||||
```
|
||||
A demo is also available on the [🤗 Hugging Face Space](https://huggingface.co/spaces/deepseek-ai/deepseek-coder-33b-instruct), and you can run the demo locally using `app.py` in the [demo](https://github.com/deepseek-ai/deepseek-coder/tree/main/demo) folder. (Thanks to all the HF team for their support)
|
||||
|
||||
Here are some examples of how to use our model.
|
||||
|
||||
#### 1) Code Completion
|
||||
```python
|
||||
from transformers import AutoTokenizer, AutoModelForCausalLM
|
||||
import torch
|
||||
@ -90,7 +94,7 @@ def quick_sort(arr):
|
||||
return quick_sort(left) + [pivot] + quick_sort(right)
|
||||
```
|
||||
|
||||
#### 2)Code Insertion
|
||||
#### 2) Code Insertion
|
||||
```python
|
||||
from transformers import AutoTokenizer, AutoModelForCausalLM
|
||||
import torch
|
||||
@ -117,7 +121,7 @@ This code will output the following result:
|
||||
for i in range(1, len(arr)):
|
||||
```
|
||||
|
||||
#### 3)Chat Model Inference
|
||||
#### 3) Chat Model Inference
|
||||
```python
|
||||
from transformers import AutoTokenizer, AutoModelForCausalLM
|
||||
tokenizer = AutoTokenizer.from_pretrained("deepseek-ai/deepseek-coder-6.7b-instruct", trust_remote_code=True)
|
||||
@ -151,7 +155,21 @@ print("Sorted array:", quick_sort(arr))
|
||||
This code works by selecting a 'pivot' element from the array and partitioning the other elements into two sub-arrays, according to whether they are less than or greater than the pivot. The pivot element is then in its final position. The process is then repeated for the sub-arrays.
|
||||
```
|
||||
|
||||
#### 4)Repository Level Code Completion
|
||||
If you don't want to use the provided API `apply_chat_template` which loads the template from `tokenizer_config.json`, you can use the following template to chat with our model. Replace the `['content']` with your instructions and the model's previous (if any) responses, then the model will generate the response to the currently given instruction.
|
||||
```
|
||||
You are an AI programming assistant, utilizing the DeepSeek Coder model, developed by DeepSeek Company, and you only answer questions related to computer science. For politically sensitive questions, security and privacy issues, and other non-computer science questions, you will refuse to answer.
|
||||
### Instruction:
|
||||
['content']
|
||||
### Response:
|
||||
['content']
|
||||
<|EOT|>
|
||||
### Instruction:
|
||||
['content']
|
||||
### Response:
|
||||
|
||||
```
|
||||
|
||||
#### 4) Repository Level Code Completion
|
||||
```python
|
||||
from transformers import AutoTokenizer, AutoModelForCausalLM
|
||||
tokenizer = AutoTokenizer.from_pretrained("deepseek-ai/deepseek-coder-6.7b-base", trust_remote_code=True)
|
||||
@ -180,12 +198,14 @@ def load_data():
|
||||
X_test = torch.tensor(X_test, dtype=torch.float32)
|
||||
y_train = torch.tensor(y_train, dtype=torch.int64)
|
||||
y_test = torch.tensor(y_test, dtype=torch.int64)
|
||||
|
||||
|
||||
return X_train, X_test, y_train, y_test
|
||||
|
||||
def evaluate_predictions(y_test, y_pred):
|
||||
return accuracy_score(y_test, y_pred)
|
||||
#model.py
|
||||
|
||||
|
||||
# model.py
|
||||
import torch
|
||||
import torch.nn as nn
|
||||
import torch.optim as optim
|
||||
@ -206,7 +226,7 @@ class IrisClassifier(nn.Module):
|
||||
def train_model(self, X_train, y_train, epochs, lr, batch_size):
|
||||
criterion = nn.CrossEntropyLoss()
|
||||
optimizer = optim.Adam(self.parameters(), lr=lr)
|
||||
|
||||
|
||||
# Create DataLoader for batches
|
||||
dataset = TensorDataset(X_train, y_train)
|
||||
dataloader = DataLoader(dataset, batch_size=batch_size, shuffle=True)
|
||||
@ -224,7 +244,9 @@ class IrisClassifier(nn.Module):
|
||||
outputs = self(X_test)
|
||||
_, predicted = outputs.max(1)
|
||||
return predicted.numpy()
|
||||
#main.py
|
||||
|
||||
|
||||
# main.py
|
||||
from utils import load_data, evaluate_predictions
|
||||
from model import IrisClassifier as Classifier
|
||||
|
||||
@ -237,32 +259,33 @@ print(tokenizer.decode(outputs[0]))
|
||||
```
|
||||
|
||||
---
|
||||
In the following scenario, the Deepseek-Coder 6.7B model effectively calls a class **IrisClassifier** and its member function from the `model.py` file, and also utilizes functions from the `utils.py` file, to correctly complete the **main** function in`main.py` file for model training and evaluation.
|
||||
In the following scenario, the DeepSeek-Coder-6.7B model effectively calls a class **IrisClassifier** and its member function from the `model.py` file, and also utilizes functions from the `utils.py` file, to correctly complete the **main** function in the `main.py` file for model training and evaluation.
|
||||
|
||||
![Completion GIF](pictures/completion_demo.gif)
|
||||
|
||||
### 5. Detailed Evaluation Results
|
||||
|
||||
The reproducible code for the following evaluation results can be found in the [Evaluation](https://github.com/deepseek-ai/deepseek-coder/tree/main/Evaluation) directory.
|
||||
#### 1)Multilingual HumanEval Benchmark
|
||||
#### 1) Multilingual HumanEval Benchmark
|
||||
![HumanEval](pictures/HumanEval.png)
|
||||
|
||||
#### 2)MBPP Benchmark
|
||||
#### 2) MBPP Benchmark
|
||||
<img src="pictures/MBPP.png" alt="MBPP" width="40%">
|
||||
|
||||
#### 3)DS-1000 Benchmark
|
||||
#### 3) DS-1000 Benchmark
|
||||
![DS-1000](pictures/DS-1000.png)
|
||||
|
||||
#### 4)Program-Aid Math Reasoning Benchmark
|
||||
#### 4) Program-Aid Math Reasoning Benchmark
|
||||
![Math](pictures/Math.png)
|
||||
|
||||
### 6. Resources
|
||||
[awesome-deepseek-coder](https://github.com/deepseek-ai/awesome-deepseek-coder) is a curated list of open-source projects related to DeepSeek Coder.
|
||||
|
||||
### 6. Lincense
|
||||
### 7. 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-CODE](LICENSE-CODE) and [LICENSE-MODEL](LICENSE-MODEL) for more details.
|
||||
|
||||
### 6. Contact
|
||||
### 8. Contact
|
||||
|
||||
If you have any questions, please raise an issue or contact us at [agi_code@deepseek.com](mailto:agi_code@deepseek.com).
|
||||
|
||||
|
129
demo/app.py
Normal file
129
demo/app.py
Normal file
@ -0,0 +1,129 @@
|
||||
import os
|
||||
from threading import Thread
|
||||
from typing import Iterator
|
||||
|
||||
import gradio as gr
|
||||
import spaces
|
||||
import torch
|
||||
from transformers import AutoModelForCausalLM, AutoTokenizer, TextIteratorStreamer
|
||||
|
||||
MAX_MAX_NEW_TOKENS = 2048
|
||||
DEFAULT_MAX_NEW_TOKENS = 1024
|
||||
|
||||
MAX_INPUT_TOKEN_LENGTH = int(os.getenv("MAX_INPUT_TOKEN_LENGTH", "4096"))
|
||||
|
||||
DESCRIPTION = """\
|
||||
# DeepSeek-6.7B-Chat
|
||||
|
||||
This Space demonstrates model [DeepSeek-Coder](https://huggingface.co/deepseek-ai/deepseek-coder-6.7b-instruct) by DeepSeek, a code model with 6.7B parameters fine-tuned for chat instructions.
|
||||
"""
|
||||
|
||||
if not torch.cuda.is_available():
|
||||
DESCRIPTION += "\n<p>Running on CPU 🥶 This demo does not work on CPU.</p>"
|
||||
|
||||
|
||||
if torch.cuda.is_available():
|
||||
model_id = "deepseek-ai/deepseek-coder-6.7b-instruct"
|
||||
model = AutoModelForCausalLM.from_pretrained(model_id, torch_dtype=torch.bfloat16, device_map="auto")
|
||||
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
||||
tokenizer.use_default_system_prompt = False
|
||||
|
||||
|
||||
|
||||
@spaces.GPU
|
||||
def generate(
|
||||
message: str,
|
||||
chat_history: list,
|
||||
system_prompt: str,
|
||||
max_new_tokens: int = 1024,
|
||||
temperature: float = 0.6,
|
||||
top_p: float = 0.9,
|
||||
top_k: int = 50,
|
||||
repetition_penalty: float = 1,
|
||||
) -> Iterator[str]:
|
||||
conversation = []
|
||||
if system_prompt:
|
||||
conversation.append({"role": "system", "content": system_prompt})
|
||||
for user, assistant in chat_history:
|
||||
conversation.extend([{"role": "user", "content": user}, {"role": "assistant", "content": assistant}])
|
||||
conversation.append({"role": "user", "content": message})
|
||||
|
||||
input_ids = tokenizer.apply_chat_template(conversation, return_tensors="pt")
|
||||
if input_ids.shape[1] > MAX_INPUT_TOKEN_LENGTH:
|
||||
input_ids = input_ids[:, -MAX_INPUT_TOKEN_LENGTH:]
|
||||
gr.Warning(f"Trimmed input from conversation as it was longer than {MAX_INPUT_TOKEN_LENGTH} tokens.")
|
||||
input_ids = input_ids.to(model.device)
|
||||
|
||||
streamer = TextIteratorStreamer(tokenizer, timeout=10.0, skip_prompt=True, skip_special_tokens=True)
|
||||
generate_kwargs = dict(
|
||||
{"input_ids": input_ids},
|
||||
streamer=streamer,
|
||||
max_new_tokens=max_new_tokens,
|
||||
do_sample=False,
|
||||
num_beams=1,
|
||||
repetition_penalty=repetition_penalty,
|
||||
eos_token_id=32021
|
||||
)
|
||||
t = Thread(target=model.generate, kwargs=generate_kwargs)
|
||||
t.start()
|
||||
|
||||
outputs = []
|
||||
for text in streamer:
|
||||
outputs.append(text)
|
||||
yield "".join(outputs).replace("<|EOT|>","")
|
||||
|
||||
|
||||
chat_interface = gr.ChatInterface(
|
||||
fn=generate,
|
||||
additional_inputs=[
|
||||
gr.Textbox(label="System prompt", lines=6),
|
||||
gr.Slider(
|
||||
label="Max new tokens",
|
||||
minimum=1,
|
||||
maximum=MAX_MAX_NEW_TOKENS,
|
||||
step=1,
|
||||
value=DEFAULT_MAX_NEW_TOKENS,
|
||||
),
|
||||
# gr.Slider(
|
||||
# label="Temperature",
|
||||
# minimum=0,
|
||||
# maximum=4.0,
|
||||
# step=0.1,
|
||||
# value=0,
|
||||
# ),
|
||||
gr.Slider(
|
||||
label="Top-p (nucleus sampling)",
|
||||
minimum=0.05,
|
||||
maximum=1.0,
|
||||
step=0.05,
|
||||
value=0.9,
|
||||
),
|
||||
gr.Slider(
|
||||
label="Top-k",
|
||||
minimum=1,
|
||||
maximum=1000,
|
||||
step=1,
|
||||
value=50,
|
||||
),
|
||||
gr.Slider(
|
||||
label="Repetition penalty",
|
||||
minimum=1.0,
|
||||
maximum=2.0,
|
||||
step=0.05,
|
||||
value=1,
|
||||
),
|
||||
],
|
||||
stop_btn=None,
|
||||
examples=[
|
||||
["implement snake game using pygame"],
|
||||
["Can you explain briefly to me what is the Python programming language?"],
|
||||
["write a program to find the factorial of a number"],
|
||||
],
|
||||
)
|
||||
|
||||
with gr.Blocks(css="style.css") as demo:
|
||||
gr.Markdown(DESCRIPTION)
|
||||
chat_interface.render()
|
||||
|
||||
if __name__ == "__main__":
|
||||
demo.queue().launch(share=True)
|
9
demo/requirement.txt
Normal file
9
demo/requirement.txt
Normal file
@ -0,0 +1,9 @@
|
||||
accelerate==0.23.0
|
||||
bitsandbytes==0.41.1
|
||||
gradio==3.48.0
|
||||
protobuf==3.20.3
|
||||
scipy==1.10.1
|
||||
sentencepiece==0.1.99
|
||||
spaces==0.16.1
|
||||
torch==2.0.0
|
||||
transformers>=4.35.0
|
16
demo/style.css
Normal file
16
demo/style.css
Normal file
@ -0,0 +1,16 @@
|
||||
h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#duplicate-button {
|
||||
margin: auto;
|
||||
color: white;
|
||||
background: #1565c0;
|
||||
border-radius: 100vh;
|
||||
}
|
||||
|
||||
.contain {
|
||||
max-width: 900px;
|
||||
margin: auto;
|
||||
padding-top: 1.5rem;
|
||||
}
|
@ -1,4 +1,8 @@
|
||||
torch>=2.0
|
||||
tokenizers>=0.14.0
|
||||
transformers>=4..35.0
|
||||
accelerate
|
||||
transformers>=4.35.0
|
||||
accelerate
|
||||
sympy==1.12
|
||||
pebble
|
||||
timeout-decorator
|
||||
attrdict
|
||||
|
Loading…
Reference in New Issue
Block a user