Update README.md
Browse files
README.md
CHANGED
@@ -20,7 +20,9 @@ widget:
|
|
20 |
# From modern Chinese to Ancient Chinese
|
21 |
> This model translate modern Chinese to Classical Chinese, so I guess who's interested in the problemset can speak at least modern Chinese, so... let me continue the documentation in Chinese
|
22 |
|
23 |
-
> 从现代文到文言文的翻译器,
|
|
|
|
|
24 |
|
25 |
## 推荐的inference 通道
|
26 |
**注意**, 你必须将```generate```函数的```eos_token_id```设置为102就可以翻译出完整的语句, 不然翻译完了会有残留的语句(因为做熵的时候用pad标签=-100导致)。
|
@@ -56,6 +58,8 @@ def inference(text):
|
|
56 |
```
|
57 |
|
58 |
## 目前版本的案例
|
|
|
|
|
59 |
```python
|
60 |
>>> inference('你连一百块都不肯给我')
|
61 |
['不 肯 与 我 百 钱 。']
|
|
|
20 |
# From modern Chinese to Ancient Chinese
|
21 |
> This model translate modern Chinese to Classical Chinese, so I guess who's interested in the problemset can speak at least modern Chinese, so... let me continue the documentation in Chinese
|
22 |
|
23 |
+
> 从现代文到文言文的翻译器, 欢迎前往[我的github文言诗词项目页面探讨加⭐️ ](https://github.com/raynardj/yuan)
|
24 |
+
|
25 |
+
> 训练语料是就是九十多万句句对, [数据集链接📚](https://github.com/BangBOOM/Classical-Chinese)。
|
26 |
|
27 |
## 推荐的inference 通道
|
28 |
**注意**, 你必须将```generate```函数的```eos_token_id```设置为102就可以翻译出完整的语句, 不然翻译完了会有残留的语句(因为做熵的时候用pad标签=-100导致)。
|
|
|
58 |
```
|
59 |
|
60 |
## 目前版本的案例
|
61 |
+
> 大家如果有好玩的调戏案例, 也欢迎反馈
|
62 |
+
|
63 |
```python
|
64 |
>>> inference('你连一百块都不肯给我')
|
65 |
['不 肯 与 我 百 钱 。']
|