File size: 912 Bytes
4e442f5
 
 
 
 
b20c26b
4e442f5
 
 
c77e585
4e442f5
68d1932
4e442f5
768d514
bf13373
 
 
ebc5c9c
 
bf13373
 
 
 
 
686b86e
376288b
d7c3f57
f1793d1
 
bf13373
f1793d1
 
d7c3f57
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
language: 
  - en
  - zh
thumbnail: "url to a thumbnail used in social sharing"
tags:
- translation
license: apache-2.0
datasets:
- THUOCL清华大学开放中文词库
metrics:
- bleu

---
# Model Details
- **Model Description:**
This model has been pre-trained for English-Chinese Translation, and use datasets of THUOCL to fine tune the model.
- **source group**: English 
- **target group**: Chinese 
- **Parent Model:** Helsinki-NLP/opus-mt-en-zh, see https://huggingface.co/Helsinki-NLP/opus-mt-en-zh
- **Model Type:** Translation
#### Training Data
- 清华大学中文开放词库(THUOCL)
- **Data link**: http://thuocl.thunlp.org/
## How to Get Started With the Model

```python
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM

tokenizer = AutoTokenizer.from_pretrained("BubbleSheep/Hgn_trans_en2zh")

model = AutoModelForSeq2SeqLM.from_pretrained("BubbleSheep/Hgn_trans_en2zh")

```