Commit
·
81b7b62
1
Parent(s):
609cb90
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
license: apache-2.0
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
tags:
|
| 5 |
+
- text generation
|
| 6 |
+
- pytorch
|
| 7 |
+
- causal-lm
|
| 8 |
license: apache-2.0
|
| 9 |
---
|
| 10 |
+
# ReGPT-125M-200G
|
| 11 |
+
This model was trained on GPT-Neo-125M with [Mengzi Retrieval LM](https://github.com/Langboat/mengzi-retrieval-lm).
|
| 12 |
+
|
| 13 |
+
For more details, please refer to this [document](https://github.com/Langboat/mengzi-retrieval-lm/blob/main/README.md).
|
| 14 |
+
|
| 15 |
+
# How to use
|
| 16 |
+
You have to use a forked transformers: https://github.com/Langboat/transformers
|
| 17 |
+
```python
|
| 18 |
+
from transformers import Re_gptForCausalLM
|
| 19 |
+
model = Re_gptForCausalLM.from_pretrained('Langboat/ReGPT-125M-200G')
|
| 20 |
+
```
|