README.md 4.17 KB
Newer Older
1
2
3
4
5
6
7
8
9
# InternLM-Math

## 论文

`InternLM-Math: Open Math Large Language Models Toward Verifiable Reasoning`

- [https://arxiv.org/abs/2402.06332]
## 算法原理

zhougaofeng's avatar
zhougaofeng committed
10
11
12
13
InternLM-Math是基于InternLM2-Base模型进行数学预训练得到的大型语言模型。融合了链式推理、奖励建模、数据增强和形式推理等多种能力,不仅可以解决数学问题,还可以验证推理过程的正确性。竞赛级别的MATH基准测试的准确率优于更大参数量的qwen-72B、Llemma-34B等模型
<div align=center>
    <img src="./doc/model_accuracy.png"/>
</div>
14
15
16
17
18
19
20
21
22


## 环境配置

### Docker(方法一)

此处提供[光源](https://www.sourcefind.cn/#/service-details)拉取 docker 镜像的地址与使用步骤

```
zhougaofeng's avatar
zhougaofeng committed
23
docker pull image.sourcefind.cn:5000/dcu/admin/base/pytorch:2.1.0-centos7.6-dtk24.04-py310
zhougaofeng's avatar
zhougaofeng committed
24
docker run -it --shm-size=1024G -v <Host Path>:<Container Path> -v /opt/hyhal:/opt/hyhal --privileged=true --device=/dev/kfd --device=/dev/dri/ --group-add video --name internlm-math  <your IMAGE ID> bash  # <your IMAGE ID>为以上拉取的docker的镜像ID替换,本镜像为:c85ed27005f2
25
cd /home/internlm-math-pytorch
zhougaofeng's avatar
zhougaofeng committed
26
pip install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/  --trusted-host mirrors.aliyun.com
zhougaofeng's avatar
zhougaofeng committed
27
pip uninstall vllm
zhougaofeng's avatar
zhougaofeng committed
28
# bitsandbytes可从whl.zip文件里获取安装:
29
30
31
32
33
34
35
36
37
38
pip install bitsandbytes-0.42.0-py3-none-any.whl

```

### Dockerfile(方法二)

此处提供 dockerfile 的使用方法

```
docker build  -t internlm-math-df:latest .
zhougaofeng's avatar
zhougaofeng committed
39
docker run -it --shm-size=1024G -v <Host Path>:<Container Path> -v /opt/hyhal:/opt/hyhal --privileged=true --device=/dev/kfd --device=/dev/dri/ --group-add video --name internlm-math  internlm-math-df:latest  bash
zhougaofeng's avatar
zhougaofeng committed
40
41
pip install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/  --trusted-host mirrors.aliyun.com
# bitsandbytes可从whl.zip文件里获取安装:
42
pip install bitsandbytes-0.42.0-py3-none-any.whl
zhougaofeng's avatar
zhougaofeng committed
43
pip uninstall vllm
44
45
46
47
48
49
50
51
52
```

### Anaconda(方法三)

此处提供本地配置、编译的详细步骤,例如:

关于本项目 DCU 显卡所需的特殊深度学习库可从[光合](https://developer.hpccube.com/tool/)开发者社区下载安装。

```
53
DTK驱动:dtk24.04
54
55
56
57
58
59
60
61
62
63
64
65
66
67
python:python3.10
torch: 2.1.0
torchvision: 0.16.0
deepspeed:0.12.3
bitsandbytes: 0.42.0
triton:2.1.0
```

`Tips:以上dtk驱动、python、paddle等DCU相关工具版本需要严格一一对应`

其它非深度学习库参照 requirements.txt 安装:

```
pip install -r requirements.txt
zhougaofeng's avatar
zhougaofeng committed
68
pip uninstall vllm
69
70
71
```

## 数据集
72
使用alpaca_en.json数据集,已经包含在finetune/data目录中,具体文件为alpaca_en_demo.json
73
74
75
76
77
78
79
80
81
82
项目中已提供用于试验训练的迷你数据集,训练数据目录结构如下,用于正常训练的完整数据集请按此目录结构进行制备:

```
 ── data
    ├── alpaca_en_demo.json.json
    └── alpaca_zh_demo.json.json
```

## 训练

zhougaofeng's avatar
zhougaofeng committed
83
根据实际路径修改模型路径和数据集路径
84
85
86
87

### 单机单卡

```
88
cd finetune
zhougaofeng's avatar
zhougaofeng committed
89
sh single_node.sh
90
91
92
93
```
### 单机多卡

```
zhougaofeng's avatar
zhougaofeng committed
94
cd finetune
95
96
97
98
99
100
101
sh multi_node.sh
```


## 推理

```
zhougaofeng's avatar
zhougaofeng committed
102
cd inference
zhougaofeng's avatar
zhougaofeng committed
103
python single_dcu.py
104
105
106
107
108
109
110
```

## result

使用的加速卡:2张 DCU-K100-64G

<div align=center>
zhougaofeng's avatar
zhougaofeng committed
111
    <img src="./doc/inf_result.png"/>
112
113
114
115
116
117
118
119
120
121
122
</div>

### 精度
测试数据:[alpaca_en_demo.json],使用的加速卡:K100-64G,2卡训练。

根据测试结果情况填写表格:
| device | train_loss | 
| :------: | :------: | 
| DCU-K100 | 1.0941 | 
| GPU-A800 | 1.0944 | 

zhougaofeng's avatar
zhougaofeng committed
123
使用[opencompass](https://github.com/open-compass/opencompass)得到的测试结果对比
124
125
126
<div align=center>
    <img src="./doc/result.png"/>
</div>
zhougaofeng's avatar
zhougaofeng committed
127

128
129
130
131
132
133
134
135
136

### 算法类别

数学推理

### 热点应用行业

`科研,教育,金融`

zhougaofeng's avatar
zhougaofeng committed
137
### 预训练权重
zhougaofeng's avatar
zhougaofeng committed
138
预训练权重下载中心: [huggingface](https://huggingface.co/internlm/internlm2-math-7b)
zhougaofeng's avatar
zhougaofeng committed
139
快速下载通道:[AiModels](http://113.200.138.88:18080/aimodels/internlm/internlm2-math-7b)
zhougaofeng's avatar
zhougaofeng committed
140
141
142
143
模型目录结构如下:
<div align=center>
    <img src="./doc/model.png"/>
</div>
144
145
146
147
148
149
150
151
152
153
154

## 源码仓库及问题反馈

- https://github.com/InternLM/InternLM-Math

## 参考资料

- https://github.com/hiyouga/LLaMA-Factory/tree/main
- https://github.com/InternLM/InternLM-Math
- https://hf-mirror.com/internlm/internlm2-math-7b