LukasStankevicius commited on
Commit
1735088
1 Parent(s): bb2a9be

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -3
README.md CHANGED
@@ -30,9 +30,8 @@ Tarp žaidėjų, kurie sužaidė bent po 50 oficialių rungtynių Lietuvos rinkt
30
  The summary can be obtained by:
31
  ```python
32
  text = ' '.join(text.strip().split())
33
- g_kwargs = dict(max_length=512, num_beams=10, no_repeat_ngram_size=2,
34
- early_stopping=True)
35
- my_pipeline(text, truncation=True, **g_kwargs)[0]["generated_text"]
36
  ```
37
  Output from above would be:
38
 
 
30
  The summary can be obtained by:
31
  ```python
32
  text = ' '.join(text.strip().split())
33
+
34
+ my_pipeline(text)[0]["generated_text"]
 
35
  ```
36
  Output from above would be:
37