Norod78 commited on
Commit
63ed48d
1 Parent(s): 28d7c2d

Updated README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -4
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 * '-' + "\nOutput:\n" + 100 * '-')
 
 
99
  for i, sample_output in enumerate(sample_outputs):
100
- print("\n{}: {}".format(i, tokenizer.decode(sample_output, skip_special_tokens=True)))
101
- print("\n" + 100 * '-')
 
 
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
  ```