RealFalconsAI commited on
Commit
9c4c473
·
verified ·
1 Parent(s): a35361c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
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=2048, min_length=1024, do_sample=False)
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
  ```