Update README.md
Browse files
README.md
CHANGED
@@ -22,7 +22,12 @@ Deepseek-Coder-7B-Instruct-v1.5 is continue pre-trained from Deepseek-LLM 7B on
|
|
22 |
- **Chat With DeepSeek Coder:** [DeepSeek-Coder](https://coder.deepseek.com/)
|
23 |
|
24 |
|
25 |
-
### 2.
|
|
|
|
|
|
|
|
|
|
|
26 |
Here give some examples of how to use our model.
|
27 |
#### Chat Model Inference
|
28 |
```python
|
@@ -38,12 +43,12 @@ outputs = model.generate(inputs, max_new_tokens=512, do_sample=False, top_k=50,
|
|
38 |
print(tokenizer.decode(outputs[0][len(inputs[0]):], skip_special_tokens=True))
|
39 |
```
|
40 |
|
41 |
-
###
|
42 |
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.
|
43 |
|
44 |
See the [LICENSE-MODEL](https://github.com/deepseek-ai/deepseek-coder/blob/main/LICENSE-MODEL) for more details.
|
45 |
|
46 |
-
###
|
47 |
|
48 |
If you have any questions, please raise an issue or contact us at [service@deepseek.com](mailto:service@deepseek.com).
|
49 |
|
|
|
22 |
- **Chat With DeepSeek Coder:** [DeepSeek-Coder](https://coder.deepseek.com/)
|
23 |
|
24 |
|
25 |
+
### 2. Evaluation Results
|
26 |
+
<img width="1000px" alt="DeepSeek Coder" src="https://cdn-uploads.huggingface.co/production/uploads/6538815d1bdb3c40db94fbfa/xOtCTW5xdoLCKY4FR6tri.png">
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
### 3. How to Use
|
31 |
Here give some examples of how to use our model.
|
32 |
#### Chat Model Inference
|
33 |
```python
|
|
|
43 |
print(tokenizer.decode(outputs[0][len(inputs[0]):], skip_special_tokens=True))
|
44 |
```
|
45 |
|
46 |
+
### 4. License
|
47 |
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.
|
48 |
|
49 |
See the [LICENSE-MODEL](https://github.com/deepseek-ai/deepseek-coder/blob/main/LICENSE-MODEL) for more details.
|
50 |
|
51 |
+
### 5. Contact
|
52 |
|
53 |
If you have any questions, please raise an issue or contact us at [service@deepseek.com](mailto:service@deepseek.com).
|
54 |
|