Bo1015 commited on
Commit
1d9eb82
·
verified ·
1 Parent(s): 3d7c736

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -35,7 +35,7 @@ prompt=['', 'MLFVVL', 'LDL', 'VTQA']
35
 
36
  for idx, each in enumerate(prompt):
37
  print(f"Begin generating idx: {idx} with prompt {each}")
38
- output = model.chat(tokenizer, each)
39
  print(f"\nEnd generation with length: {len(output.split())} - seqs: {output}\n")
40
  ```
41
 
 
35
 
36
  for idx, each in enumerate(prompt):
37
  print(f"Begin generating idx: {idx} with prompt {each}")
38
+ output = model.chat(tokenizer, each, **gen_kwargs)
39
  print(f"\nEnd generation with length: {len(output.split())} - seqs: {output}\n")
40
  ```
41