ClueAI commited on
Commit
15653ee
1 Parent(s): 29c6f43

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -77,7 +77,7 @@ input_list = [input_text0, input_text1, input_text2, input_text3, input_text4, i
77
  for i, input_text in enumerate(input_list):
78
  input_text = "用户:" + input_text + "\n小元:"
79
  print(f"示例{i}".center(50, "="))
80
- output_text = answer(input_text, top_p=0.9)
81
  print(f"{input_text}{output_text}")
82
  ```
83
 
@@ -174,7 +174,7 @@ print(context)
174
  input_text = "用什么后遗症么?"
175
  print(f"示例".center(50, "="))
176
  input_text = context + "\n用户:" + input_text + "\n小元:"
177
- output_text = answer(input_text, top_p=0.9)
178
  print(f"{input_text}{output_text}")
179
  ```
180
  ========================示例========================
 
77
  for i, input_text in enumerate(input_list):
78
  input_text = "用户:" + input_text + "\n小元:"
79
  print(f"示例{i}".center(50, "="))
80
+ output_text = answer(input_text)
81
  print(f"{input_text}{output_text}")
82
  ```
83
 
 
174
  input_text = "用什么后遗症么?"
175
  print(f"示例".center(50, "="))
176
  input_text = context + "\n用户:" + input_text + "\n小元:"
177
+ output_text = answer(input_text)
178
  print(f"{input_text}{output_text}")
179
  ```
180
  ========================示例========================