shibing624 commited on
Commit
cdd7cb0
1 Parent(s): 96507bc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -21,7 +21,7 @@ The overall performance of GPT2 on dialog **test**:
21
 
22
  |input_text|target_text|
23
  |:-- |:--- |
24
- |今天你的病好点了吗?|一天比一天严重|
25
 
26
  在常见中文闲聊数据集(包含小黄鸡语料、豆瓣语料、电视剧对白语料、贴吧论坛回帖语料、微博语料、PTT八卦语料、青云语料等)上,基本能语义正确的回答问题。
27
 
@@ -42,7 +42,7 @@ pip install -U dialogbot
42
  >>> from dialogbot import GPTBot
43
  >>> model = GPTBot("shibing624/gpt2-dialogbot-base-chinese")
44
  >>> r = model.answer("今天你的病好点了吗?")
45
- '一天比一天严重'
46
  ```
47
 
48
 
 
21
 
22
  |input_text|target_text|
23
  |:-- |:--- |
24
+ |今天你的病好点了吗?|好多了,谢谢你的关心|
25
 
26
  在常见中文闲聊数据集(包含小黄鸡语料、豆瓣语料、电视剧对白语料、贴吧论坛回帖语料、微博语料、PTT八卦语料、青云语料等)上,基本能语义正确的回答问题。
27
 
 
42
  >>> from dialogbot import GPTBot
43
  >>> model = GPTBot("shibing624/gpt2-dialogbot-base-chinese")
44
  >>> r = model.answer("今天你的病好点了吗?")
45
+ '好多了,谢谢你的关心'
46
  ```
47
 
48