AdamCodd commited on
Commit
1bf3e8b
1 Parent(s): b5c967a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -4
README.md CHANGED
@@ -49,10 +49,12 @@ More information needed
49
  from transformers import pipeline
50
  summarizer = pipeline("text2text-generation", model="AdamCodd/bart-large-cnn-samsum")
51
 
52
- conversation = '''Sugi: I am tired of everything in my life.
53
- Tommy: What? How happy your life is! I do envy you.
54
- Sugi: You don't know that I have been overprotected by my mother these years. I am really about to leave the family and spread my wings.
55
- Tommy: Maybe you are right.
 
 
56
  '''
57
  summarizer(conversation)
58
  ```
 
49
  from transformers import pipeline
50
  summarizer = pipeline("text2text-generation", model="AdamCodd/bart-large-cnn-samsum")
51
 
52
+ conversation = '''Emily: Hey Alex, have you heard about the new restaurant that opened downtown?
53
+ Alex: No, I haven't. What's it called?
54
+ Emily: It's called "Savory Bites." They say it has the best pasta in town.
55
+ Alex: That sounds delicious. When are you thinking of checking it out?
56
+ Emily: How about this Saturday? We can make it a dinner date.
57
+ Alex: Sounds like a plan, Emily. I'm looking forward to it.
58
  '''
59
  summarizer(conversation)
60
  ```