Bo1015 commited on
Commit
2422094
·
verified ·
1 Parent(s): b561d65

Update README.md

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