Updated README.md
Browse files
README.md
CHANGED
@@ -7,7 +7,6 @@ widget:
|
|
7 |
- text: "קוראים לי דורון ואני מעוניין ל"
|
8 |
- text: "קוראים לי איציק ואני חושב ש"
|
9 |
- text: "החתול שלך מאוד חמוד ו"
|
10 |
-
- text: "ובדרך ראינו שהגן"
|
11 |
|
12 |
license: mit
|
13 |
---
|
@@ -95,9 +94,13 @@ sample_outputs = model.generate(
|
|
95 |
num_return_sequences=sample_output_num
|
96 |
)
|
97 |
|
98 |
-
print(100 * '-' + "\
|
|
|
|
|
99 |
for i, sample_output in enumerate(sample_outputs):
|
100 |
-
print("\
|
101 |
-
|
|
|
|
|
102 |
|
103 |
```
|
|
|
7 |
- text: "קוראים לי דורון ואני מעוניין ל"
|
8 |
- text: "קוראים לי איציק ואני חושב ש"
|
9 |
- text: "החתול שלך מאוד חמוד ו"
|
|
|
10 |
|
11 |
license: mit
|
12 |
---
|
|
|
94 |
num_return_sequences=sample_output_num
|
95 |
)
|
96 |
|
97 |
+
print(100 * '-' + "\
|
98 |
+
Output:\
|
99 |
+
" + 100 * '-')
|
100 |
for i, sample_output in enumerate(sample_outputs):
|
101 |
+
print("\
|
102 |
+
{}: {}".format(i, tokenizer.decode(sample_output, skip_special_tokens=True)))
|
103 |
+
print("\
|
104 |
+
" + 100 * '-')
|
105 |
|
106 |
```
|