Update README.md
Browse files
README.md
CHANGED
@@ -20,7 +20,12 @@ Deepseek-Coder-7B-Base-v1.5 is continue pre-trained from Deepseek-LLM 7B on 2T t
|
|
20 |
- **Chat With DeepSeek Coder:** [DeepSeek-Coder](https://coder.deepseek.com/)
|
21 |
|
22 |
|
23 |
-
### 2.
|
|
|
|
|
|
|
|
|
|
|
24 |
Here give an example of how to use our model.
|
25 |
```python
|
26 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
@@ -33,11 +38,11 @@ outputs = model.generate(**inputs, max_length=128)
|
|
33 |
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
34 |
```
|
35 |
|
36 |
-
###
|
37 |
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.
|
38 |
|
39 |
See the [LICENSE-MODEL](https://github.com/deepseek-ai/deepseek-coder/blob/main/LICENSE-MODEL) for more details.
|
40 |
|
41 |
-
###
|
42 |
|
43 |
If you have any questions, please raise an issue or contact us at [service@deepseek.com](mailto:service@deepseek.com).
|
|
|
20 |
- **Chat With DeepSeek Coder:** [DeepSeek-Coder](https://coder.deepseek.com/)
|
21 |
|
22 |
|
23 |
+
### 2. Evaluation Results
|
24 |
+
<img width="1000px" alt="DeepSeek Coder" src="https://cdn-uploads.huggingface.co/production/uploads/6538815d1bdb3c40db94fbfa/xOtCTW5xdoLCKY4FR6tri.png">
|
25 |
+
|
26 |
+
|
27 |
+
|
28 |
+
### 3. How to Use
|
29 |
Here give an example of how to use our model.
|
30 |
```python
|
31 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
|
|
38 |
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
39 |
```
|
40 |
|
41 |
+
### 4. License
|
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 |
+
### 5. Contact
|
47 |
|
48 |
If you have any questions, please raise an issue or contact us at [service@deepseek.com](mailto:service@deepseek.com).
|