Update README.md
Browse files
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 |
|