Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,51 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
+
language:
|
4 |
+
- zh
|
5 |
+
- en
|
6 |
+
tags:
|
7 |
+
- openba
|
8 |
---
|
9 |
+
|
10 |
+
# Introduction
|
11 |
+
|
12 |
+
OpenBA is an open-source bilingual language model equipped with 15 billion parameters, built on the T5 architecture.
|
13 |
+
|
14 |
+
## Open Source Plan
|
15 |
+
|
16 |
+
We are excited to unveil two distinguished versions of our model, with another on the horizon:
|
17 |
+
|
18 |
+
- [OpenBA-LM](https://huggingface.co/OpenBA/OpenBA-LM): The backbone language models was pre-trained on 340B English, Chinese, and code tokens.
|
19 |
+
- [OpenBA-Flan](https://huggingface.co/OpenBA/OpenBA-Flan): We perform supervised fine-tuning on the base model with additional 40B tokens using our collected BiFlan Dataset.
|
20 |
+
- OpenBA-Chat: coming soon
|
21 |
+
|
22 |
+
## Model Description
|
23 |
+
- **Model type:** Language model
|
24 |
+
- **Language(s) (NLP):** zh, en (We also offer the possibility for multilingual learning, by using a multilingual tokenizer.)
|
25 |
+
- **License:** Apache 2.0
|
26 |
+
- **Resources for more information:**
|
27 |
+
- [Research paper]()
|
28 |
+
- [GitHub Repo](https://github.com/OpenBA/OpenBA-LM/)
|
29 |
+
|
30 |
+
# Usage
|
31 |
+
|
32 |
+
## Install requirements
|
33 |
+
|
34 |
+
```bash
|
35 |
+
pip install transformers torch>=2.0 sentencepiece
|
36 |
+
```
|
37 |
+
|
38 |
+
## Demo usage
|
39 |
+
|
40 |
+
```python
|
41 |
+
>>> from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
|
42 |
+
>>> tokenizer = AutoTokenizer.from_pretrained("OpenBA/OpenBA-Flan", trust_remote_code=True)
|
43 |
+
>>> model = AutoModelForSeq2SeqLM.from_pretrained("OpenBA/OpenBA-Flan", trust_remote_code=True).half().cuda()
|
44 |
+
>>> model = model.eval()
|
45 |
+
>>> query = "<S>" + "介绍一下中国的四大名著,并分别概括其主要内容" + "<extra_id_0>"
|
46 |
+
>>> inputs = tokenizer(query, return_tensors="pt").to("cuda")
|
47 |
+
>>> outputs = model.generate(**inputs, do_sample=True, max_new_tokens=256)
|
48 |
+
>>> response = tokenizer.decode(outputs[0], skip_special_tokens=True)
|
49 |
+
>>> print(response)
|
50 |
+
中国的四大名著分别是《红楼梦》、《西游记》、《水浒传》和《三国演义》。它们分别包括故事情节、文化内涵和历史背景等方面的不同特点。《红楼梦》是一部中国古典小说,讲述了贾宝玉、林黛玉、薛宝钗等一群人物在贾府的生活和爱情故事。《西游记》是中国著名小说,描述了孙悟空、猪八戒、沙悟净等一众妖魔鬼怪的冒险历程和故事。《水浒传》是一部中国古典小说,描述了宋江等一百零八位好汉的反抗故事。《三国演义》是中国古代著名小说,讲述了三国时期的历史和战争故事。这些小说在文学、历史、哲学和文化等方面都有着不同的影响和地位。
|
51 |
+
```
|