update readme.md
Browse files
README.md
CHANGED
|
@@ -46,7 +46,7 @@ prompt = 'Q: What is the largest bird?\nA:'
|
|
| 46 |
input_ids = tokenizer(prompt, return_tensors="pt").input_ids
|
| 47 |
tokens = model.generate(input_ids, max_length=20)
|
| 48 |
print( tokenizer.decode(tokens[0].tolist(), skip_special_tokens=True) )
|
| 49 |
-
# Q: What is the largest bird?\nA: The largest bird is
|
| 50 |
```
|
| 51 |
|
| 52 |
## Evaluation
|
|
|
|
| 46 |
input_ids = tokenizer(prompt, return_tensors="pt").input_ids
|
| 47 |
tokens = model.generate(input_ids, max_length=20)
|
| 48 |
print( tokenizer.decode(tokens[0].tolist(), skip_special_tokens=True) )
|
| 49 |
+
# Q: What is the largest bird?\nA: The largest bird is a black-headed gull.
|
| 50 |
```
|
| 51 |
|
| 52 |
## Evaluation
|