Update README.md
Browse files
README.md
CHANGED
|
@@ -58,6 +58,9 @@ decoded_sequences = tokenizer.batch_decode(outputs, skip_special_tokens=True)
|
|
| 58 |
|
| 59 |
# Print the decoded sequences
|
| 60 |
print(decoded_sequences)
|
|
|
|
|
|
|
|
|
|
| 61 |
```
|
| 62 |
|
| 63 |
### Simple example2: embedding
|
|
|
|
| 58 |
|
| 59 |
# Print the decoded sequences
|
| 60 |
print(decoded_sequences)
|
| 61 |
+
|
| 62 |
+
# It is expected to observe non-sense decoded sequences (e.g., 'AAAAAA')
|
| 63 |
+
# The input sequences are too short to provide sufficient context.
|
| 64 |
```
|
| 65 |
|
| 66 |
### Simple example2: embedding
|