Update README.md
Browse files
README.md
CHANGED
@@ -108,7 +108,7 @@ from transformers import pipeline
|
|
108 |
|
109 |
convo1 = 'Your conversation text here.'
|
110 |
pipe = pipeline("summarization", model="Falconsai/arc_of_conversation")
|
111 |
-
res1 = pipe(convo1, max_length=
|
112 |
print(res1)
|
113 |
|
114 |
```
|
|
|
108 |
|
109 |
convo1 = 'Your conversation text here.'
|
110 |
pipe = pipeline("summarization", model="Falconsai/arc_of_conversation")
|
111 |
+
res1 = pipe(convo1, max_length=1024, min_length=512, do_sample=False)
|
112 |
print(res1)
|
113 |
|
114 |
```
|