izhx commited on
Commit
b7ea01b
1 Parent(s): 57a6e4f

Update README.md (#1)

Browse files

- Update README.md (0f16496636d2f2c879c45bda7e5aae1f975d6ad1)
- Create README_zh.md (226cea533d0ba063a80ca9edcb5c135407632c96)

Files changed (2) hide show
  1. README.md +79 -0
  2. README_zh.md +81 -0
README.md CHANGED
@@ -1,3 +1,82 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+
5
+ **English** | [中文](./README_zh.md)
6
+
7
+ ## Code implementation of new GTE embeddings
8
+
9
+ This model is a BERT-like encoder with the following optimizations implemented:
10
+
11
+ 1. Replacing absolute position embeddings with RoPE [^1].
12
+ 2. Substituting the conventional activation functions with Gated Linear Units (GLU) [^2].
13
+ 3. Setting attention dropout to 0 to use `xformers` and `flash_attn`.
14
+ 4. Using unpadding to eliminate the needless computations for padding tokens [^3]. (this is off by default and should be used in conjunction with `xformers` for optimal acceleration).
15
+ 5. Setting `vocab_size` as a multiple of 64.
16
+
17
+ ### Recommendation: Enable Unpadding and Acceleration with `xformers`
18
+
19
+ This code supports the acceleration of attention computations using `xformers`, which can automatically choose the optimal implementation based on the type of device, such as `flash_attn`. Therefore, we can also achieve significant acceleration on old devices like the V100.
20
+
21
+
22
+ Firstly, install `xformers` (with `pytorch` pre-installed):
23
+ ```
24
+ if pytorch is installed using conda:
25
+ conda install xformers -c xformers
26
+ elif pytorch is installed using pip:
27
+ # cuda 11.8 version
28
+ pip3 install -U xformers --index-url https://download.pytorch.org/whl/cu118
29
+ # cuda 12.1 version
30
+ pip3 install -U xformers --index-url https://download.pytorch.org/whl/cu121
31
+ ```
32
+ For more information, refer to [Installing xformers](https://github.com/facebookresearch/xformers?tab=readme-ov-file#installing-xformers).
33
+
34
+ Then, when loading the model, set `unpad_inputs` and `use_memory_efficient_attention` to `true`, and enable `fp16` mixed precision computation to achieve the fastest acceleration.
35
+
36
+ ```python
37
+ import torch
38
+ from transformers import AutoModel, AutoTokenizer
39
+
40
+ path = 'Alibaba-NLP/gte-base-en-v1.5'
41
+ device = torch.device('cuda')
42
+ tokenzier = AutoTokenizer.from_pretrained(path)
43
+ model = AutoModel.from_pretrained(
44
+ path,
45
+ trust_remote_code=True,
46
+ unpad_inputs=True,
47
+ use_memory_efficient_attention=True,
48
+ ).to(device)
49
+
50
+ with torch.autocast(device_type=device.type, dtype=torch.float16): # or bfloat16
51
+ with torch.inference_mode():
52
+ outputs = model(**inputs.to(device))
53
+
54
+ ```
55
+
56
+ Alternatively, you can directly modify the `unpad_inputs` and `use_memory_efficient_attention` settings to `true` in the model's `config.json`, eliminating the need to set them in the code.
57
+
58
+
59
+ ---
60
+
61
+ <details>
62
+ <summary> Clarification of Relationship with nomic-embed and nomicBERT </summary>
63
+
64
+ One may question the originality of our work and consider it a mere replication of `nomicBERT`. To clarify, our work is parallel but stems from the same idea as `nomicBERT`.
65
+
66
+ Applying RoPE and GLU to BERT to support longer texts is a straightforward idea. Our exploration of the transformer++ encoder (i.e., BERT + RoPE + GLU) began in August 2023.
67
+ And by November 2023, we had completed the `gte-base-en-v1.1`. Then, I went on to prepare for the ACL submission of the other project...
68
+
69
+ The release of `nomic-embed` [^4] brought to our attention the pressure, as well as provided us with more resources, which allowed us to continue with this project.
70
+ Without the outstanding work of `nomicai`, the release of `gte-v1.5` could have been delayed much longer. Thanks!
71
+
72
+ </details>
73
+
74
+ ---
75
+
76
+ [^1]: Su, Jianlin, Murtadha Ahmed, Yu Lu, Shengfeng Pan, Wen Bo, and Yunfeng Liu. "Roformer: Enhanced transformer with rotary position embedding." Neurocomputing 568 (2024): 127063.
77
+
78
+ [^2]: Shazeer, Noam. "Glu variants improve transformer." arXiv preprint arXiv:2002.05202 (2020).
79
+
80
+ [^3]: Portes, Jacob, Alexander Trott, Sam Havens, Daniel King, Abhinav Venigalla, Moin Nadeem, Nikhil Sardana, Daya Khudia, and Jonathan Frankle. "MosaicBERT: A Bidirectional Encoder Optimized for Fast Pretraining." Advances in Neural Information Processing Systems 36 (2024).
81
+
82
+ [^4]: Nussbaum, Zach, John X. Morris, Brandon Duderstadt, and Andriy Mulyar. "Nomic Embed: Training a Reproducible Long Context Text Embedder." arXiv preprint arXiv:2402.01613 (2024).
README_zh.md ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+
5
+ [English](./README.md) | **中文**
6
+
7
+ ## GTE 新模型代码实现
8
+
9
+ 此模型为 BERT-like 编码器模型,加入了以下优化:
10
+
11
+ 1. 使用 RoPE [^1] 旋转位置编码替换 absolute position embedding。
12
+ 2. 使用 GLU (Gated Linear Unit) [^2] 替换普通的激活函数。
13
+ 3. 设置 attention dropout 为 0 以方便应用 `xformers` 和 `flash_attn` 等优化。
14
+ 4. 使用 Unpadding 技术去除对 padding token 的无用计算 [^3](默认关闭,需要结合 `flash_attn` 或 `xformers` 使用来获得最高加速)。
15
+ 5. 设置 `vocab_size % 64 = 0`。
16
+
17
+
18
+ ### 推荐:启用 Unpadding 和 xformers 加速
19
+
20
+ 此代码支持使用 `xformers` 加速 attention 计算,可以根据设备类型自动选择优化实现,比如 `flash_attn`。通过 `xformers`,在不能支持 `flash_attn` 的旧设备比如`V100`上也可以获得极大的加速。
21
+
22
+ 首先,安装 `xformers`(需要预先安装`pytorch`):
23
+ ```
24
+ if pytorch 使用 conda 安装 :
25
+ conda install xformers -c xformers
26
+
27
+ elif pytorch 使用 pip 安装 :
28
+ # cuda 11.8 version
29
+ pip3 install -U xformers --index-url https://download.pytorch.org/whl/cu118
30
+ # cuda 12.1 version
31
+ pip3 install -U xformers --index-url https://download.pytorch.org/whl/cu121
32
+ ```
33
+ 更多信息可参考 [installing-xformers](https://github.com/facebookresearch/xformers?tab=readme-ov-file#installing-xformers)。
34
+
35
+ 然后,加载模型时设置 `unpad_inputs` 和 `use_memory_efficient_attention` 为 `true`,并启用 `fp16` 混合精度计算,即可获得最快加速。
36
+
37
+ ```python
38
+ import torch
39
+ from transformers import AutoModel, AutoTokenizer
40
+
41
+ path = 'Alibaba-NLP/gte-base-en-v1.5'
42
+ device = torch.device('cuda')
43
+ tokenzier = AutoTokenizer.from_pretrained(path)
44
+ model = AutoModel.from_pretrained(
45
+ path,
46
+ trust_remote_code=True,
47
+ unpad_inputs=True,
48
+ use_memory_efficient_attention=True,
49
+ ).to(device)
50
+
51
+ with torch.autocast(device_type=device.type, dtype=torch.float16): # 或bfloat16
52
+ with torch.inference_mode():
53
+ outputs = model(**inputs.to(device))
54
+
55
+ ```
56
+ 也可以直接修改模型的 `config.json` 中 `unpad_inputs` 和 `use_memory_efficient_attention` 为 `true`,省去代码中的设置。
57
+
58
+
59
+ ---
60
+
61
+ <details>
62
+ <summary> 与 nomic-embed 和 nomicBERT 的关系 </summary>
63
+
64
+ 可能有人会质疑我们的原创性,认为这只是对 `nomicBERT` 的复刻。
65
+ 在此澄清,我们是工作与 `nomicBERT` 平行并源自相同的想法。
66
+
67
+ 应用 RoPE 和 GLU 到 BERT 上支持长文本是一个简单直接的想法。我们从2023年8月开始了探索。在2023年11月,完成了 `gte-base-en-v1.1` 的开发,然后我去忙别的课题的ACL投稿了。
68
+
69
+ `nomic-embed` [^4] 的发布让我们感受到了压力,也获得了更多资源得以加速继续开发这一项目。如果没有 `nomicai` 的杰出工作,`gte-v1.5` 系列可能还要延期很久。感谢!
70
+
71
+ </details>
72
+
73
+ ---
74
+
75
+ [^1]: Su, Jianlin, Murtadha Ahmed, Yu Lu, Shengfeng Pan, Wen Bo, and Yunfeng Liu. "Roformer: Enhanced transformer with rotary position embedding." Neurocomputing 568 (2024): 127063.
76
+
77
+ [^2]: Shazeer, Noam. "Glu variants improve transformer." arXiv preprint arXiv:2002.05202 (2020).
78
+
79
+ [^3]: Portes, Jacob, Alexander Trott, Sam Havens, Daniel King, Abhinav Venigalla, Moin Nadeem, Nikhil Sardana, Daya Khudia, and Jonathan Frankle. "MosaicBERT: A Bidirectional Encoder Optimized for Fast Pretraining." Advances in Neural Information Processing Systems 36 (2024).
80
+
81
+ [^4]: Nussbaum, Zach, John X. Morris, Brandon Duderstadt, and Andriy Mulyar. "Nomic Embed: Training a Reproducible Long Context Text Embedder." arXiv preprint arXiv:2402.01613 (2024).