Update README.md
Browse files
README.md
CHANGED
@@ -5,9 +5,9 @@ license_link: LICENSE
|
|
5 |
---
|
6 |
|
7 |
<p align="center">
|
8 |
-
<img width="
|
9 |
</p>
|
10 |
-
<p align="center"><a href="https://www.deepseek.com/">[🏠Homepage]</a> | <a href="https://chat.deepseek.com/">[🤖 Chat with DeepSeek LLM]</a> | <a href="https://discord.gg/Tc7c45Zzu5">[Discord]</a> | <a href="https://github.com/
|
11 |
<hr>
|
12 |
|
13 |
|
@@ -15,29 +15,19 @@ license_link: LICENSE
|
|
15 |
|
16 |
### 1. Introduction of Deepseek LLM
|
17 |
|
18 |
-
Introducing DeepSeek LLM, an advanced language model comprising
|
19 |
|
20 |
-
<div align="center">
|
21 |
-
<img src="images/llm_radar.png" alt="result" width="70%">
|
22 |
-
</div>
|
23 |
-
|
24 |
-
- **Superior General Capabilities:** DeepSeek LLM 67B Base outperforms Llama2 70B Base in areas such as reasoning, coding, math, and Chinese comprehension.
|
25 |
-
|
26 |
-
- **Proficient in Coding and Math:** DeepSeek LLM 67B Chat exhibits outstanding performance in coding (HumanEval Pass@1: 73.78) and mathematics (GSM8K 0-shot: 84.1, Math 4-shot: 32.6). It also demonstrates remarkable generalization abilities, as evidenced by its exceptional score of 65 on the Hungarian National High School Exam.
|
27 |
-
|
28 |
-
- **Mastery in Chinese Language:** Based on our evaluation, DeepSeek LLM 67B Chat surpasses GPT-3.5 in Chinese.
|
29 |
-
|
30 |
|
31 |
### 2. Model Summary
|
32 |
deepseek-llm-7b-base is a 7B parameter model with Multi-Head Attention trained on 2 trillion tokens from scratch.
|
33 |
- **Home Page:** [DeepSeek](https://deepseek.com/)
|
34 |
-
- **Repository:** [deepseek-ai/deepseek-
|
35 |
-
- **Chat With DeepSeek Coder:** [DeepSeek-
|
36 |
|
37 |
|
38 |
### 3. How to Use
|
39 |
Here give some examples of how to use our model.
|
40 |
-
####
|
41 |
```python
|
42 |
import torch
|
43 |
from transformers import AutoTokenizer, AutoModelForCausalLM, GenerationConfig
|
|
|
5 |
---
|
6 |
|
7 |
<p align="center">
|
8 |
+
<img width="500px" alt="DeepSeek Chat" src="https://github.com/deepseek-ai/DeepSeek-LLM/blob/main/images/logo.png?raw=true">
|
9 |
</p>
|
10 |
+
<p align="center"><a href="https://www.deepseek.com/">[🏠Homepage]</a> | <a href="https://chat.deepseek.com/">[🤖 Chat with DeepSeek LLM]</a> | <a href="https://discord.gg/Tc7c45Zzu5">[Discord]</a> | <a href="https://github.com/deepseek-ai/DeepSeek-LLM/blob/main/images/qr.jpeg">[Wechat(微信)]</a> </p>
|
11 |
<hr>
|
12 |
|
13 |
|
|
|
15 |
|
16 |
### 1. Introduction of Deepseek LLM
|
17 |
|
18 |
+
Introducing DeepSeek LLM, an advanced language model comprising 7 billion parameters. It has been trained from scratch on a vast dataset of 2 trillion tokens in both English and Chinese. In order to foster research, we have made DeepSeek LLM 7B/67B Base and DeepSeek LLM 7B/67B Chat open source for the research community.
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
### 2. Model Summary
|
22 |
deepseek-llm-7b-base is a 7B parameter model with Multi-Head Attention trained on 2 trillion tokens from scratch.
|
23 |
- **Home Page:** [DeepSeek](https://deepseek.com/)
|
24 |
+
- **Repository:** [deepseek-ai/deepseek-LLM](https://github.com/deepseek-ai/deepseek-LLM)
|
25 |
+
- **Chat With DeepSeek Coder:** [DeepSeek-LLM](https://chat.deepseek.com/)
|
26 |
|
27 |
|
28 |
### 3. How to Use
|
29 |
Here give some examples of how to use our model.
|
30 |
+
#### Text Completion
|
31 |
```python
|
32 |
import torch
|
33 |
from transformers import AutoTokenizer, AutoModelForCausalLM, GenerationConfig
|