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