└── swap-net-summer ├── README.md ├── data ├── read_batcher.py └── read_data.py ├── decode └── seq2seq_attention_decode.py ├── generated summaries ├── out_ind.txt ├── system_summary │ ├── system.0.txt │ ├── system.1.txt │ ├── system.10.txt │ ├── system.11.txt │ ├── system.12.txt │ ├── system.13.txt │ ├── system.14.txt │ ├── system.15.txt │ ├── system.16.txt │ ├── system.17.txt │ ├── system.18.txt │ ├── system.19.txt │ ├── system.2.txt │ ├── system.20.txt │ ├── system.21.txt │ ├── system.22.txt │ ├── system.23.txt │ ├── system.24.txt │ ├── system.25.txt │ ├── system.26.txt │ ├── system.27.txt │ ├── system.28.txt │ ├── system.29.txt │ ├── system.3.txt │ ├── system.30.txt │ ├── system.31.txt │ ├── system.32.txt │ ├── system.33.txt │ ├── system.34.txt │ ├── system.35.txt │ ├── system.36.txt │ ├── system.37.txt │ ├── system.38.txt │ ├── system.39.txt │ ├── system.4.txt │ ├── system.40.txt │ ├── system.41.txt │ ├── system.42.txt │ ├── system.43.txt │ ├── system.44.txt │ ├── system.45.txt │ ├── system.46.txt │ ├── system.47.txt │ ├── system.48.txt │ ├── system.49.txt │ ├── system.5.txt │ ├── system.50.txt │ ├── system.51.txt │ ├── system.52.txt │ ├── system.53.txt │ ├── system.54.txt │ ├── system.55.txt │ ├── system.56.txt │ ├── system.57.txt │ ├── system.58.txt │ ├── system.59.txt │ ├── system.6.txt │ ├── system.60.txt │ ├── system.61.txt │ ├── system.62.txt │ ├── system.63.txt │ ├── system.64.txt │ ├── system.65.txt │ ├── system.66.txt │ ├── system.67.txt │ ├── system.68.txt │ ├── system.69.txt │ ├── system.7.txt │ ├── system.70.txt │ ├── system.71.txt │ ├── system.72.txt │ ├── system.73.txt │ ├── system.74.txt │ ├── system.75.txt │ ├── system.76.txt │ ├── system.77.txt │ ├── system.78.txt │ ├── system.79.txt │ ├── system.8.txt │ ├── system.80.txt │ ├── system.81.txt │ ├── system.82.txt │ ├── system.83.txt │ ├── system.84.txt │ ├── system.85.txt │ ├── system.86.txt │ ├── system.87.txt │ ├── system.88.txt │ ├── system.89.txt │ ├── system.9.txt │ ├── system.90.txt │ ├── system.91.txt │ ├── system.92.txt │ ├── system.93.txt │ ├── system.94.txt │ ├── system.95.txt │ ├── system.96.txt │ ├── system.97.txt │ ├── system.98.txt │ └── system.99.txt └── testfile_list.txt ├── model ├── seq2seq.py └── seq2seq_attention_model.py ├── preprocess.py └── training ├── seq2seq_attention.py └── seq2seq_attention_eval.py /swap-net-summer/README.md: -------------------------------------------------------------------------------- 1 | # SWAP-NET 2 | 3 | This repository contains code for the ACL 2018 paper 4 | **Extractive Summarization with SWAP-NET: Sentences and Words from Alternating Pointer Networks**. 5 | 6 | The code is written in Tensorflow 0.12.1 version 7 | 8 | ## Parameter Settings: 9 | 10 | - Dimension of LSTM hidden states: 200 11 | - Dimension of word embeddings: 100 12 | - Batch size: 16 13 | - Vocabulary Size: 150000 14 | - max timesteps of encoder (max input text words): 800 15 | - max timesteps of decoder: 50 16 | - Number of layers of LSTM: 1 17 | - Optimizer: Adam with default parameters as 18 | learning_rate=0.001, 19 | beta1=0.9, 20 | beta2=0.999 21 | - Gradient Clipping Threshold: 2 22 | - Number of GPUs: 2,Tesla K-80 23 | - Training time: 4 days 24 | 25 | This code is based on [Textsum code](https://github.com/tensorflow/models/tree/master/textsum) and [pointer-generator](https://github.com/abisee/pointer-generator#help-ive-got-nans) 26 | 27 | ------------ 28 | 29 | *Parameter Settings used by baseline Nallapati et al.: 30 | Dimension of LSTM hidden states: 200, Dimension of word embeddings: 100, Batch size: 64, Vocabulary Size: 150000, max timesteps of encoder (max input text words): 50 words per sentence, Optimizer: adadelta* 31 | 32 | 33 | ------------ 34 | 35 | 36 | ## Dataset 37 | Create a new directory dataset\. Then download CNN / Daily Mail dataset from [here](https://docs.google.com/uc?id=0B0Obe9L1qtsnSXZEd0JCenIyejg&export=download). 38 | 39 | 40 | Install RAKE from [here](https://github.com/zelandiya/RAKE-tutorial) 41 | 42 | Install gensim from [here](https://radimrehurek.com/gensim/install.html) 43 | 44 | ## How To Run: 45 | 46 | Now run 47 | 48 | python preprosses.py 49 | 50 | This will create following in dataset/finished_files directory: 51 | 52 | - Files with processed data : train.bin, test.bin, val.bin 53 | - Vocabulary file : vocab.txt 54 | - File generated from RAKE : keyword.txt 55 | - word2vec model : embed_model.bin 56 | 57 | 58 | ### Training: 59 | 60 | 61 | 62 | python training/seq2seq_attention.py 63 | 64 | ### Evaluation: 65 | 66 | 67 | 68 | python training/seq2seq_attention_eval.py 69 | 70 | ### Extractive Summerization: 71 | 72 | Install pyrouge to obtain rouge scores 73 | 74 | 75 | 76 | python decode/seq2seq_attention_decode.py 77 | 78 | ## Results 79 | ### Summaries Generated by Model: 80 | 81 | Sample articles and corrosponding summaries can be found in generated_summaries/system_summary 82 | 83 | 84 | ------------ 85 | 86 | 87 | 88 | 89 | -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.0.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | a mysterious @entity0 has delivered chocolate eggs to every house in a village of 3,000 people 3 | residents from @entity6 , @entity7 , woke to discover a chocolate egg on their doorsteps 4 | @entity10 , 0, said : ' it is just such a lovely gesture 5 | every house in the village got one as far as we are aware 6 | local residents in @entity6 , @entity7 , pictured , awoke on sunday to find an @entity16 on every doorstep ' we walked around the village and everyone seemed to have been left one of these chocolate foil wrapped eggs 7 | ' my daughter said everyone was talking about it on @entity27 8 | it 's never happened before 9 | it must have been quite some operation 10 | ' @entity30 added : ' it 's just such a beautiful thing 11 | everyone is on @entity27 going absolutely crazy about it 12 | ' it looks like everyone was left an egg 13 | it 's very vicar of dibley ! ' it 's a wonderful act of random kindness and i think that explains where it has come from 14 | ' it 's just such a lovely thing to do 15 | it 's never happened before and i 've lived here for 0years 16 | ' residents of the picturesque @entity7 village described the deed as ' a wonderful act of random kindness ' 17 | 18 | Summary Generated: 19 | residents from @entity6 , @entity7 , woke to discover a chocolate egg on their doorsteps 20 | @entity10 , 0, said : ' it is just such a lovely gesture 21 | local residents in @entity6 , @entity7 , pictured , awoke on sunday to find an @entity16 on every doorstep ' we walked around the village and everyone seemed to have been left one of these chocolate foil wrapped eggs -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.1.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | an eight - year - old girl from @entity1 is well on her way to building a successful business empire after it was revealed that her playful videos , featuring her easy - to - follow confectionery recipes , are bringing in around $ 127,000 a month in ad revenue alone 3 | the @entity7 , who is known simply as @entity8 , has turned her popular channel , @entity10 into @entity12 's largest food channel in less than three years - beating household names such as celebrity chef @entity14 to claim the prestigious -- and lucrative -- title 4 | according to data compiled by online video advertising company @entity17 , @entity8 's channel earned the young entrepreneur an estimated $ 127,777 -lrb- aud $ 163,893 -rrb- in march alone -- and that is after @entity12 's share of the profits 5 | meanwhile , @entity8 and her five - year - old sister @entity31 , who serves as the channel 's ' chief taste tester ' , are raking in an average of 0million views per month for their crafty how - to videos 6 | @entity10 , which features child friendly tutorials for making everything from @entity40 pops out of @entity41 to princess teacup cookies , also has more than 320,000 subscribers who eagerly await their weekly posts 7 | the tutorials even have their own short opening credits featuring @entity8 and @entity31 's cartoon likenesses , with one of the girl 's singing : ' welcome to @entity8 's @entity51 where you can eat what you make ' 8 | big numbers : @entity8 and her five - year - old sister @entity31 's how to video on making @entity57 - inspired ice pops has earned 0million views since it was posted last july being silly : the sisters made a mess while eating their ' shark ' @entity64 cups many of clips are inspired by the holidays , with a demonstration on how to make a @entity69 receiving more than two million views since it was posted in december 9 | one particular video featuring a simple recipe for ' rainbow ' donuts has been watched more than 6.5 million times after it was shared in 0 10 | a video which sees the dynamic duo creating @entity64 ' tip ' ice pops inspired - by the hit @entity82 film @entity57 has amassed an incredible 0million views since it was posted last june 11 | 12 | Summary Generated: 13 | an eight - year - old girl from @entity1 is well on her way to building a successful business empire after it was revealed that her playful videos , featuring her easy - to - follow confectionery recipes , are bringing in around $ 127,000 a month in ad revenue alone 14 | the @entity7 , who is known simply as @entity8 , has turned her popular channel , @entity10 into @entity12 's largest food channel in less than three years - beating household names such as celebrity chef @entity14 to claim the prestigious -- and lucrative -- title 15 | meanwhile , @entity8 and her five - year - old sister @entity31 , who serves as the channel 's ' chief taste tester ' , are raking in an average of 0million views per month for their crafty how - to videos -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.10.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity0 will make his first appearance since finishing second in the masters in the @entity4 , an event where he has an impressive recent record 3 | former @entity9 champion @entity8 , who was joint second with @entity11 behind @entity12 at @entity13 , has not been outside the top 0on his last three outings at @entity15 4 | since missing the cut in 0, the 0- year - old @entity17 star has finished 10th , 15th and eighth and is a total of 0under par , with his last 0rounds all at par or better 5 | @entity0 finished joint second in the masters at @entity13 earlier this month @entity8 returns to action at the @entity4 at @entity15 this week @entity8 will play alongside two other players who performed well in the masters for the first two rounds , world number 0@entity29 finishing 12th and @entity31 - 28th in his first tournament of 0 6 | @entity31 underwent back surgery in december last year and will continue to play a limited schedule as he works his way back to full fitness , but the 0- year - old has not given up hope of another @entity17 appearance even though the @entity40 looms when he turns 0 7 | ' no matter what tournament i go to i want to be prepared and to play well and this is no different , ' @entity31 told a pre-tournament press conference 8 | ' even though it 's only my second event , i have high expectations of what i can do and what i should do 9 | so i come here thinking that i can play well , but deep down i know it 's a process and i 've got some work to do 10 | @entity8 looks on as @entity12 celebrates becoming @entity51 champion earlier this month ' i 'm probably a little more relaxed with things now than i was say 0years ago when i was trying to find my game 11 | i would say that i 'm more comfortable in my own skin and what i do out here on tour is just kind of bonus 12 | ' i 've kind of relaxed my schedule the last few years , so that 's probably why i have this attitude about playing 13 | i 'm much more excited to play when i do come to an event because i 'm not playing as much 14 | i enjoy my time at home probably more so because i 'm spending bigger blocks of time at home 15 | @entity31 -lrb- right -rrb- is making his way back to full fitness after back surgery last december and will also play in the @entity4 ' so right now i have really the best of both worlds and that 's what i 'll continue to do all the way up to the senior tour when i start playing some of that 16 | ' i 'm still very competitive though 17 | i say i 'm pretty relaxed and casual with things 18 | but when it comes down to it , i really still want to win again and play well and maybe make another team event before all is said and done 19 | so i still have some drive in there 20 | 21 | Summary Generated: 22 | @entity0 will make his first appearance since finishing second in the masters in the @entity4 , an event where he has an impressive recent record 23 | former @entity9 champion @entity8 , who was joint second with @entity11 behind @entity12 at @entity13 , has not been outside the top 0on his last three outings at @entity15 24 | @entity0 finished joint second in the masters at @entity13 earlier this month @entity8 returns to action at the @entity4 at @entity15 this week @entity8 will play alongside two other players who performed well in the masters for the first two rounds , world number 0@entity29 finishing 12th and @entity31 - 28th in his first tournament of 0 -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.11.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | four burly @entity1 cops put their @entity3 vacation on hold to answer the call of duty on a @entity7 subway train last night 3 | the friends were on their way to see @entity10 on @entity11 , @entity12 reports , and rushed in to stop a brutal assault on a crowded rush - hour 0train 4 | ' we came here for vacation 5 | we 've been here one day 6 | we 're no heroes , just tourists , ' @entity18 , a 0- year - old officer with the police @entity20 , @entity1 , told the @entity21 7 | ' we 're no heroes , just tourists ' : the @entity1 cops -lrb- pictured left to right -rrb- @entity24 , 0, @entity25 , 0, @entity18 , 0, and @entity26 , 0, said they were just answering the call of duty mr @entity28 , along with @entity29 , @entity25 and @entity26 , subdued an enraged homeless man who was viciously beating another rider on the train 8 | the @entity33 stopped the violence and held the attacker until the @entity36 could arrive , the @entity21 reports 9 | video from the incident shows @entity25 and @entity28 holding the suspect down and trying to calm him down as he screams 10 | ' i ca n't breath ! i ca n't breath ! ' he screams 11 | ' take it easy , just calm down , ' @entity28 tells him 12 | the friends sprang into action after a frantic conductor yelled over the intercom : ' are there any police officers on the train ? ' as the train pulled into the @entity55 station , the @entity53 lawmen found a homeless man pummeling another rider in the next car 13 | three of the @entity1 tended to the aggressor -lrb- background -rrb- and held him for police , while the fourth stayed with the victim , who had been badly beaten in the fight the @entity53 tourists kept both men calm until @entity36 cops showed up to sort out the scene the victim had a bloody mouth and seemed to be badly beaten and was not defending himself the @entity1 told the @entity21 14 | one of the officers put the attacker in an arm lock , while two others held him down to the floor of the train 15 | ' one of the guys tried to wrestle us so -lsb- we -rsb- wrestled him to the floor until the police came , ' @entity25 , 0, who is also an officer , told @entity12 16 | ' we do n't have authority or anything but we thought somebody might need help , ' he said 17 | 18 | Summary Generated: 19 | four burly @entity1 cops put their @entity3 vacation on hold to answer the call of duty on a @entity7 subway train last night 20 | the friends were on their way to see @entity10 on @entity11 , @entity12 reports , and rushed in to stop a brutal assault on a crowded rush - hour 0train 21 | we 're no heroes , just tourists , ' @entity18 , a 0- year - old officer with the police @entity20 , @entity1 , told the @entity21 -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.12.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity0 is on the verge of signing a new long - term contract as @entity3 prepares to re-launch the exciting teenager 's season 3 | @entity6 offered @entity0 fresh terms in february after he had a deep impression in a sequence of games , particularly against @entity11 and @entity12 , that coincided with an improvement in the club 's fortunes 4 | a deal has now been agreed and it is simply a case of the highly - regarded @entity0 , who has been absent since damaging knee ligaments against @entity20 on february 0, putting pen to paper 5 | @entity0 in training for @entity6 at @entity24 as he prepares to make a return from injury @entity0 is set to sign a new long - term deal at @entity6 after breaking into the first team this season @entity3 says @entity0 , 0, has looked ` absolutely sensational ' after stepping up his rehabilitation work in the last couple of weeks and he could come straight back into the starting line - up against @entity32 on monday night 6 | the issue @entity3 must address is whether to stick with the 0- 0- 0formation he used at @entity35 in the @entity36 last wednesday or revert to the 0- 0- 0system that had been the catalyst for an improvement in results 7 | one thing @entity6 's manager has conceded , though , is that @entity42 is unlikely to recapture his very best form this season , given all the injuries he has suffered 8 | @entity0 , pictured in action against @entity12 , damaged his knee ligaments while playing against @entity20 @entity42 , who has only scored four goals in his last 0games , admitted last week that he felt it would have to wait until the new campaign to show last year 's sparkle and his manager agrees , following 0months in which he has suffered thigh , calf and hip issues 9 | 10 | Summary Generated: 11 | @entity0 is on the verge of signing a new long - term contract as @entity3 prepares to re-launch the exciting teenager 's season 12 | @entity6 offered @entity0 fresh terms in february after he had a deep impression in a sequence of games , particularly against @entity11 and @entity12 , that coincided with an improvement in the club 's fortunes 13 | a deal has now been agreed and it is simply a case of the highly - regarded @entity0 , who has been absent since damaging knee ligaments against @entity20 on february 0, putting pen to paper -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.14.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | recorder @entity0 , 0, from @entity2 was seen to fall asleep during the rape trial of @entity4 at @entity5 a judge who fell asleep while a child abuse victim gave evidence and caused the trial to collapse has been reprimanded by his bosses the part - time judge , recorder @entity0 , 0, from @entity2 was seen to fall asleep during the rape trial of @entity4 at @entity5 last summer 3 | a retrial had to be ordered and with the child having to give evidence for a second time , the @entity14 reported 4 | while the jury was out of the room , the judge was confronted with the claim that he had slept through part of the cross-examination of the witness , who was giving evidence via videolink because of her age 5 | the incident was witnessed by the family of the victim in the trial of @entity32 , which was expected to last five days the girl giving evidence was the first of two young girls expected to testify that they were abused in offences spanning from 0to 0 6 | the body that regulates the judiciary , the @entity40 office has rapped the @entity44 recorder over the incident 7 | the lord chancellor and lord chief justice were quoted as saying they found evidence of serious misconduct following complaints that @entity0 gave the appearance of falling asleep 8 | the cost of the abandoned trial and the retrial is believed to have cost the taxpayer # 10,000 9 | the defendant , @entity4 , 0, of @entity44 was found guilty of child sex charges and jailed for 0years 10 | leading criminal barrister , @entity59 , who specialises in child sex crime , told the @entity14 , when the trial was suspended , that it is always devastating for a victim to have a trial delayed so long while an investigation takes place 11 | ` this is no doubt a traumatic time for the family and this will only serve to make matters worse for them , ' she explained 12 | 13 | Summary Generated: 14 | recorder @entity0 , 0, from @entity2 was seen to fall asleep during the rape trial of @entity4 at @entity5 a judge who fell asleep while a child abuse victim gave evidence and caused the trial to collapse has been reprimanded by his bosses the part - time judge , recorder @entity0 , 0, from @entity2 was seen to fall asleep during the rape trial of @entity4 at @entity5 last summer 15 | a retrial had to be ordered and with the child having to give evidence for a second time , the @entity14 reported 16 | the incident was witnessed by the family of the victim in the trial of @entity32 , which was expected to last five days the girl giving evidence was the first of two young girls expected to testify that they were abused in offences spanning from 0to 0 -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.15.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | rampant @entity0 carry an eight - game winning streak in @entity3 into saturday 's match at league leaders @entity6 3 | the @entity7 , who have scored 0goals and conceded just one in their last six @entity11 league games , will attempt to solidify their grip on second place 4 | a victory would leave them nine points behind @entity6 with seven games remaining 5 | @entity0 , lead by @entity19 and @entity20 , have won eight games in a row in @entity3 head coach @entity23 says his side will go ' all out for victory ' against @entity6 on saturday @entity6 are unbeaten at home this season but they did slip to just their second defeat of the campaign last weekend in a major upset at bottom - side @entity31 6 | ' i 'm satisfied with what we have done , ' @entity0 coach @entity23 said to the @entity11 press 7 | however , he stressed : ' we have not achieved anything yet 8 | ' we need to continue to work with focus 9 | ' there are many games left to play before we can celebrate 10 | ' against @entity6 we will try to go all out for victory 11 | ' we do n't want to have any regrets after the game 12 | ' the clash with @entity0 comes at the start of a challenging week for @entity6 13 | @entity46 's team travels to @entity47 on tuesday for the return leg of their @entity50 quarter - final against @entity51 holding a 0- 0advantage 14 | the @entity6 will then take on @entity53 four days later in the @entity55 derby 15 | @entity56 celebrates after scoring during the 0- 0rout against @entity59 last sunday @entity0 face @entity46 's -lrb- pictured -rrb- @entity6 , and will cut the gap to nine points with victory @entity64 have won just two of their last eight league games to fall to third in the standings , one point adrift of @entity0 16 | the @entity69 hold the last @entity50 qualifying spot and host @entity71 on sunday 17 | at the other end of the table , bottom - side @entity31 go into sunday 's match at @entity59 following another major blow 18 | the club was docked four points on thursday as punishment related to their financial troubles 19 | @entity31 had already been hit with a three - point deduction earlier this season for failing to pay players 20 | the latest setback has left @entity31 0points adrift of safety with 0points still up for grabs 21 | 22 | Summary Generated: 23 | rampant @entity0 carry an eight - game winning streak in @entity3 into saturday 's match at league leaders @entity6 24 | a victory would leave them nine points behind @entity6 with seven games remaining 25 | @entity0 , lead by @entity19 and @entity20 , have won eight games in a row in @entity3 head coach @entity23 says his side will go ' all out for victory ' against @entity6 on saturday @entity6 are unbeaten at home this season but they did slip to just their second defeat of the campaign last weekend in a major upset at bottom - side @entity31 -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.16.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity0 considered the bombing of the @entity4 federal building 0years ago a failure because the structure was still standing after the blast that killed 0people 3 | @entity0 also viewed himself as a ' @entity9 - type messenger ' and even suggested his defense team should receive $ 800,000 from the government , according an archive of documents donated by the convicted bomber 's lead attorney 4 | the estimated one million pages of paper documents from @entity18 now fill 0file cabinet - sized boxes at the @entity21 at the @entity22 5 | the trove , which was delivered to the school where the attorney received his undergraduate degree in three phases since 0, only became fully organized late last year 6 | although the blast killed 0, including 0children , the examiner concluded that ' in @entity0 's mind , he believed that he had definitely screwed up because he left the building still standing ' 7 | @entity0 was executed by injection in 0at age 0 8 | co-conspirator @entity56 was convicted separately and sentenced to life in prison 9 | even as he stood accused of orchestrating what until the sept. 0attacks was considered the deadliest act of terrorism on @entity64 soil , @entity0 appeared to be driven by profit and thought his attorneys should be entitled to ' $ 800,000 -lrb- after fees , taxes -rrb- 10 | ' ' if i 'm gon na die anyway , i want to make some money 11 | not for me , but to try to make up for what my family has been put thru , as well as to shell out some ` bonuses ' to my legal team . , ' he wrote in one note to his defense team included in the archive 12 | in another , he doodled a tank ramming a house and wrote : ' this is the @entity31 ! ... send out your women and children 13 | we know you 're in there and we know you have bibles and a copy of the @entity90 ! ' the collection also includes a copy of a published cartoon showing 0jurors frowning and one smiling , with an arrow pointing to her and the note : ' my choice , potential juror 14 | 15 | Summary Generated: 16 | @entity0 also viewed himself as a ' @entity9 - type messenger ' and even suggested his defense team should receive $ 800,000 from the government , according an archive of documents donated by the convicted bomber 's lead attorney 17 | the estimated one million pages of paper documents from @entity18 now fill 0file cabinet - sized boxes at the @entity21 at the @entity22 18 | @entity0 was executed by injection in 0at age 0 -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.19.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | it 's every chocoholic 's dream come true - a mountain of @entity5 eggs covering the entire house 3 | but while @entity7 - pictured among the treats - does have two chocolate - loving daughters , this incredible bounty is not for them 4 | @entity11 , 0, and @entity12 , five , lost their eight - year - old brother @entity13 last year to a mystery illness , and when @entity5 approached they decided to donate all their eggs to the patients at @entity19 where he was cared for 5 | @entity7 - pictured among the treats - has two chocolate - loving daughters but this incredible bounty is not for them 6 | instead the eggs will be donated to @entity19 once the family , from @entity23 , @entity24 , posted on @entity25 , kind strangers began to send eggs - and now there are more than 1,000 7 | some donations have come from as far afield as the @entity29 , with many from @entity31 and @entity32 and the length and breadth of @entity35 8 | the girls came up with the inspirational idea after spending three easters in a row by @entity13 's side at the hospital where they were all lucky enough to receive @entity42 9 | @entity11 said : ' i thought it was going to be never - ending ! it feels really nice to remember him and i do n't think the hospital were expecting as many 10 | @entity47 , 0, and @entity48 -lrb- both above with mother @entity50 -rrb- , five , came up with the idea in memory of their brother @entity13 ' it feels a bit strange at the moment 11 | i 've never had this much chocolate in my house before 12 | ' their 0- year - old mother , who was a full - time carer for @entity13 and now works as a support worker for disabled children , said : ' i was taken aback by it all 13 | we did n't expect to get the response that we did 14 | it 's really touching what the girls are doing 15 | ' they were really close to @entity13 , they had a really tight bond 16 | the hospital think it 's amazing and a really nice thing to do 17 | ' on the second day i thought 0eggs was an amazing response but when it continued the girls were a bit overwhelmed by it all and a bit speechless 18 | the eggs are still arriving 19 | it feels really good to be able to give something back 20 | 21 | Summary Generated: 22 | but while @entity7 - pictured among the treats - does have two chocolate - loving daughters , this incredible bounty is not for them 23 | @entity11 , 0, and @entity12 , five , lost their eight - year - old brother @entity13 last year to a mystery illness , and when @entity5 approached they decided to donate all their eggs to the patients at @entity19 where he was cared for 24 | instead the eggs will be donated to @entity19 once the family , from @entity23 , @entity24 , posted on @entity25 , kind strangers began to send eggs - and now there are more than 1,000 -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.2.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | a 0- year - old @entity1 man was arrested and charged on thursday with lying to federal agents about his involvement with @entity5 militants fighting in @entity6 , which has been documented on his @entity9 page 3 | @entity10 faced two counts of making false statements involving international terrorism matters in @entity14 of the @entity15 4 | @entity17 , who was born in @entity6 and became a naturalized @entity19 citizen in 0at age 0, is accused of making false statements during interviews with the @entity22 and other @entity19 authorities at the @entity24 in @entity25 , @entity26 , in march , the @entity16 said 5 | 6 | Summary Generated: 7 | a 0- year - old @entity1 man was arrested and charged on thursday with lying to federal agents about his involvement with @entity5 militants fighting in @entity6 , which has been documented on his @entity9 page 8 | @entity10 faced two counts of making false statements involving international terrorism matters in @entity14 of the @entity15 9 | @entity17 , who was born in @entity6 and became a naturalized @entity19 citizen in 0at age 0, is accused of making false statements during interviews with the @entity22 and other @entity19 authorities at the @entity24 in @entity25 , @entity26 , in march , the @entity16 said -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.20.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | these two @entity1 dogs have got talent ! a pair of border collies were caught on camera performing a balancing act 3 | using a human as their base , pooches @entity10 and @entity11 stood up high on their hind legs , with their front paws up 4 | once @entity11 is up , @entity21 stretches his hands up toward the sky 5 | soon enough , @entity11 and @entity10 stand up solely on their hind legs - and hold the pose for several seconds 6 | this is n't the first time the dogs have shown off their skills 7 | @entity21 's instagram page and @entity46 pages feature multiple videos of @entity10 and @entity11 doing tricks 8 | @entity21 also works as a dog trainer , and runs the @entity51 , @entity1 - based company @entity50 9 | neat trick : the trio are seen performing their stunt together ta - da ! @entity11 and @entity10 finish the trick by standing on their hind legs family : ace -lrb- far left -rrb- and @entity11 -lrb- far right -rrb- are seen with their owner and trainer , @entity21 10 | @entity21 runs the @entity51 , @entity1 - based dog training company @entity50 puppy tales pointed out that the tv show ' @entity66 ' deemed @entity68 's @entity67 in 0 11 | @entity21 told the website in january 0: ' i only use positive reinforcement in the training that i do 12 | ' and , equally importantly , i always have fun with my dogs 13 | ' i actually do n't really use the word '' training '' -- we are just having a good time together and learning new things 14 | ' @entity21 also told @entity65 : ' i have had a few dogs in my life and i have never learned properly about dog training 15 | ' with @entity11 and @entity10 , i wanted to spend quality time with them and have happy long lives together , so i undertook a course on canine behaviour 16 | ' ' the most important things in training your dogs are consistency , patience , respect and love , ' @entity21 revealed to the website 17 | 18 | Summary Generated: 19 | these two @entity1 dogs have got talent ! a pair of border collies were caught on camera performing a balancing act 20 | using a human as their base , pooches @entity10 and @entity11 stood up high on their hind legs , with their front paws up 21 | soon enough , @entity11 and @entity10 stand up solely on their hind legs - and hold the pose for several seconds -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.21.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | the devastated husband of a woman who drowned in a ` freak ' snorkelling accident has posted a heartbreaking tribute to her on @entity5 3 | @entity6 , known affectionately to her friends and family as @entity9 , died on april 0after reportedly getting into trouble in the water near @entity12 off the coast of @entity14 in @entity15 4 | the mother of two , from @entity17 , was caught in strong currents and lost consciousness before being pulled from the water 5 | lifeguards and paramedics were unable to revive her with @entity24 6 | mrs @entity6 's husband @entity25 posted on her @entity5 page : ` hello to all of @entity28 's beautiful @entity5 friends and family 7 | this message is from @entity6 's husband @entity25 and is one of the few messages i have ever posted on @entity5 but it is by far the hardest i will ever need to 8 | 9 | Summary Generated: 10 | the devastated husband of a woman who drowned in a ` freak ' snorkelling accident has posted a heartbreaking tribute to her on @entity5 11 | @entity6 , known affectionately to her friends and family as @entity9 , died on april 0after reportedly getting into trouble in the water near @entity12 off the coast of @entity14 in @entity15 12 | the mother of two , from @entity17 , was caught in strong currents and lost consciousness before being pulled from the water -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.22.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | a war hero pilot who survived almost 0skirmishes with the @entity2 has died after being knocked down by a hit - and - run driver near his home 3 | @entity5 , 0, had popped out for his daily newspaper when he was struck by a car outside a petrol station 4 | the @entity10 pilot suffered a serious head injury and was flown to hospital by air ambulance , but died two weeks later 5 | 92 , only retired from his job as a stunt pilot two years ago 6 | he was awarded the @entity17 after surviving almost 0missions over @entity20 - occupied @entity19 fighter pilot : the 0- year - old had survived 0missions against the @entity2 during the @entity24 7 | he flew @entity26 and @entity27 before testing aircraft , including models of @entity30 and @entity31 mr @entity5 began flying during the @entity24 and was awarded the @entity17 for his gallantry in 0combat missions over @entity20 - occupied @entity19 8 | having volunteered for the @entity34 as early as he could , straight after his 18th birthday in 0, mr @entity5 flew @entity26 and @entity27 9 | he also tested a wide range of aircraft , including @entity30 and @entity31 10 | a veteran of d - day , the @entity34 's @entity41 bombing campaign and night sorties all over @entity19 , he recalled years later : ` i was n't shot down but i was shot at 11 | luckily they missed -- most of the time 12 | ' mr @entity5 also survived a brain haemorrhage in 0 13 | he only retired from his role as a stunt pilot at the age of 0 14 | 15 | Summary Generated: 16 | a war hero pilot who survived almost 0skirmishes with the @entity2 has died after being knocked down by a hit - and - run driver near his home 17 | 92 , only retired from his job as a stunt pilot two years ago 18 | he was awarded the @entity17 after surviving almost 0missions over @entity20 - occupied @entity19 fighter pilot : the 0- year - old had survived 0missions against the @entity2 during the @entity24 -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.23.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity0 has told the @entity1 they must hold bungling officials to account 3 | the former @entity4 striker has branded additional official @entity10 ' idiotic ' for failing to see a handball by @entity7 defender @entity6 in sunday 's @entity8 semi-final 4 | @entity6 is now fighting a ban from the @entity12 following a notice of @entity14 from the @entity1 compliance officer 5 | @entity7 defender @entity6 -lrb- left -rrb- blocks a goal - bound header from @entity19 -lrb- right -rrb- with his hand @entity4 's @entity21 -lrb- centre -rrb- surges forward with the ball during the @entity8 semi-final former @entity25 striker @entity0 -lrb- pictured in 0-rrb- has called for more accountability for officials insisting the officials should not escape scot free either , however , @entity28 says @entity10 should be kept away from high - profile games if he 's not up to the job 6 | ' there 's not a conspiracy theory or anything like that , ' he insisted 7 | ' it was just an absolute shocker 8 | i just ca n't work out what he was thinking 9 | ' it was just idiotic how he did n't see it 10 | it was n't a conspiracy , i just ca n't remember a decision that bad from someone standing so close 11 | ' there is no way he could have thought that ball hit the player on the head , he must be an idiot not to see it 12 | ' a goal ahead at the time , @entity4 reacted to ' supporter pressure ' by writing to the @entity1 seeking clarification on the failure of referee @entity58 to award a penalty and send @entity6 off 13 | @entity28 infamously triggered a huge row in 0when he accused @entity62 of ' lying down ' to @entity63 to pip @entity4 to the title on the final day 14 | insisting sunday was a question of incompetence rather than integrity , however , he added : ' it 's not a conspiracy , it 's just a rubbish and inept decision 15 | ' it should n't happen and it does n't reflect well on the @entity75 game if decisions like that are made 16 | ' i do n't know if maybe he -lrb- @entity10 -rrb- panicked , but he has a job to do and if he is not up to the job -- which he clearly was n't -- then he should n't do it again 17 | ' you can understand the frustration of the @entity4 fans and players and the manager 's frustration 18 | ' i 'm not saying that changes the perception of what @entity92 has done 19 | as the season has gone on @entity4 have got stronger -- but you have to say it 's a chance to win a @entity97 missed due to not just a poor decision , but an awful one 20 | ' @entity4 captain @entity99 -lrb- left -rrb- appeals to referee @entity58 during the @entity8 semi-final @entity4 's @entity102 -lrb- right -rrb- slides in with a strong challenge on @entity104 -lrb- left -rrb- during sunday 's game speaking at a charity golf day for the @entity107 , @entity28 echoed his former team - mate in querying the club 's decision to write to the @entity1 -- an action which has infuriated fans of other clubs 21 | 22 | Summary Generated: 23 | @entity0 has told the @entity1 they must hold bungling officials to account 24 | the former @entity4 striker has branded additional official @entity10 ' idiotic ' for failing to see a handball by @entity7 defender @entity6 in sunday 's @entity8 semi-final 25 | @entity6 is now fighting a ban from the @entity12 following a notice of @entity14 from the @entity1 compliance officer -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.24.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity0 has hit back at @entity2 's criticism of the @entity4 pitch 3 | after the @entity7 club 's 0- 0win on friday night , @entity2 branded most surfaces in the @entity9 ` terrible ' and argued that artificial pitches would make for better spectacles 4 | but @entity0 insists the @entity13 's criticism was unjustified and unfair on the @entity16 club 's award - winning groundsman , @entity17 5 | @entity19 's @entity18 slots home his penalty to put his side 0- 0up against @entity22 @entity0 hit back at @entity19 boss @entity2 for his criticism of the @entity4 pitch on monday night ` i was surprised because i think our pitch is the best in the league , ' stated @entity0 6 | ` it 's maybe a bit firm but it 's an excellent surface 7 | @entity31 , our groundsman , wins `` @entity33 '' year after year and that 's a great acknowledgement for him and a great accolade for him 8 | ` so i was surprised at the comments because i 've seen a lot of the pitches in the @entity40 this year and a lot of them leave a lot to be desired 9 | but ours is great and all credit to the groundsman 10 | ' @entity2 branded most surfaces in the @entity9 ` terrible ' and said artificial pitches would be better @entity0 feels @entity2 's criticism unfair on the @entity16 club 's award - winning groundsman , @entity17 11 | 12 | Summary Generated: 13 | @entity0 has hit back at @entity2 's criticism of the @entity4 pitch 14 | after the @entity7 club 's 0- 0win on friday night , @entity2 branded most surfaces in the @entity9 ` terrible ' and argued that artificial pitches would make for better spectacles 15 | @entity19 's @entity18 slots home his penalty to put his side 0- 0up against @entity22 @entity0 hit back at @entity19 boss @entity2 for his criticism of the @entity4 pitch on monday night ` i was surprised because i think our pitch is the best in the league , ' stated @entity0 -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.25.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | it 's legal just one day a year , and this @entity1 took advantage of the opportunity to play the century - old tradition of two - up in pubs and clubs all around the country 3 | the game , which dates back to @entity11 's goldfields and the first recorded games are believed to have taken place in the late 1790s , made a resurgence as a way to pass time in the trenches 4 | on saturday , as @entity11 commemorated the centenary of the landing at @entity21 , thousands of men and women took their chances with the coin game in the spirit of the diggers 5 | after participating in dawn services and memorial services to remember the sacrifice and bravery of those who landed at @entity21 in 0, and to honour all other active and returned servicemen and women , the crowds wandered down to their local rsl or pub to take part in the game of chance 6 | up and down the country men and women , most with a beverage in hand , were yelling ' heads ' or ' tails ' as coins were thrown in the air 7 | while the game is considered a form of gambling and is illegal at all other times , two - up is allowed on @entity53 across @entity55 clubs -lrb- @entity34 -rrb- and pubs 8 | versions vary between the original two - coined game -lrb- with three outcomes -rrb- and three - coined version -lrb- with two outcomes -rrb- , the latter preferred by many venues prefer for ease of betting between punters 9 | wagering expert @entity66 , who writes for website @entity68 , told @entity69 that : ' it 's that one time of the year when the law permits men and women across this great country of ours to follow in the footsteps of our brave @entity11 diggers and keep to the old gambling tradition 10 | ' ' @entity80 is a pretty simple game , all you need are coins , a wooden stick -lrb- the kip -rrb- to flip them into the air and a crowd of screaming punters yelling '' heads '' or '' tails '' 11 | 12 | Summary Generated: 13 | the game , which dates back to @entity11 's goldfields and the first recorded games are believed to have taken place in the late 1790s , made a resurgence as a way to pass time in the trenches 14 | on saturday , as @entity11 commemorated the centenary of the landing at @entity21 , thousands of men and women took their chances with the coin game in the spirit of the diggers 15 | while the game is considered a form of gambling and is illegal at all other times , two - up is allowed on @entity53 across @entity55 clubs -lrb- @entity34 -rrb- and pubs -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.26.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | the @entity0 doubled down today on president @entity3 's @entity2 message that climate change is ' a problem now ' and knocked political figures who disagree with him as climate deniers and opportunists 3 | ' the preponderance of scientific evidence is on the side of the president in making this argument 4 | and the president believes that to deny the existence of climate change is to deny an observable fact that is substantiated by science , ' press secretary @entity15 said today after he was asked about a @entity22 study that claimed the earth is n't heating up as quickly as expected 5 | he then added , without any nudging , ' and there are some who are involved in politics that choose to deny that fact because it 's inconvenient to their case and it might be inconvenient to some of their strongest political supporters 6 | ' @entity15 's channeling of former vice president @entity34 , star of the 0global warming documentary an @entity35 , followed the president 's gas - guzzling , 1,836 mile trip on wednesday , @entity2 , to the @entity39 aboard @entity40 7 | 8 | Summary Generated: 9 | the @entity0 doubled down today on president @entity3 's @entity2 message that climate change is ' a problem now ' and knocked political figures who disagree with him as climate deniers and opportunists 10 | and the president believes that to deny the existence of climate change is to deny an observable fact that is substantiated by science , ' press secretary @entity15 said today after he was asked about a @entity22 study that claimed the earth is n't heating up as quickly as expected 11 | ' @entity15 's channeling of former vice president @entity34 , star of the 0global warming documentary an @entity35 , followed the president 's gas - guzzling , 1,836 mile trip on wednesday , @entity2 , to the @entity39 aboard @entity40 -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.27.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | the nation 's largest suppliers of @entity2 and @entity4 medical care is accused of bilking @entity5 and @entity6 in an elaborate $ 0million dollar scam that spanned 0- states , according to a lawsuit filed in @entity11 federal court 3 | three former managers of the @entity13 filed a suit last week alleging the company paid employees and patients kickbacks for patient referrals in an effort to boost funding from federal health programs 4 | employees were paid $ 0bonuses for referring patients with positive test results to its clinics and pharmacies 5 | the lawsuit alleges kickbacks started in 0at the company 's @entity31 headquarters and spread to programs in @entity11 and several other locations 6 | 7 | Summary Generated: 8 | the nation 's largest suppliers of @entity2 and @entity4 medical care is accused of bilking @entity5 and @entity6 in an elaborate $ 0million dollar scam that spanned 0- states , according to a lawsuit filed in @entity11 federal court 9 | three former managers of the @entity13 filed a suit last week alleging the company paid employees and patients kickbacks for patient referrals in an effort to boost funding from federal health programs 10 | employees were paid $ 0bonuses for referring patients with positive test results to its clinics and pharmacies -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.28.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity0 may hold all the cards in his contract dispute with @entity3 , but he needs to focus on his football rather than his pay - packet , according to former @entity7 boss @entity6 3 | @entity6 insisted that @entity0 is not ready to move to the likes of @entity9 at this stage of his career , so should stay at the club who have helped him develop so far 4 | however , the 0- year - old also conceded that , if he wants to force a move , there is very little @entity3 can do to stop him 5 | @entity0 should focus on his football rather than his contract according to @entity6 @entity0 has turned down a new deal with @entity3 and put off contract talks until the summer ' @entity0 is not going to go to @entity9 at the moment i would n't think , so where could he go better in @entity23 ? ' said @entity6 while working as a pundit for @entity25 6 | ' i think he 's at a great club , he 's working under a manger who obviously works hard with him on the training ground , eh 's improved him 7 | i think he needs to sign his contract and get on with his football 8 | ' it 's very hard to keep players who really make up their mind they want to leave 9 | ' ' when they want to go , they 've got all the power 10 | if he decides to down tools , they 've got a problem 11 | ' the 0- year - old gave an interview to the @entity43 on wednesday giving his reasons for his decision @entity46 insists that his relationship with @entity0 is as strong as ever despite the disputes @entity6 made the comments while working as a pundit for @entity25 on saturday the last @entity3 player to run down his contract and leave for @entity9 , @entity53 , branded @entity0 's behaviour ' ridiculous ' and ' baffling ' and suggested the player has been poorly advised 12 | ' i think it 's ridiculous and you have to remember he 's only a 0- year - old boy , starting off his career , ' said @entity53 13 | the people who are trying to guide him through his life have been ill - informed really 14 | he 's now put himself under a huge amount of pressure , and he should n't have 15 | @entity0 -lrb- right -rrb- has confirmed that he rejected an offer of # 100,000 - a - week to stay at @entity3 ' you do n't want to discuss your contract and leave it to the end of the season 16 | do n't go and do an interview talking about your contract 17 | it 's baffling , absolutely baffling 18 | ' ' i think he wants to stay at @entity3 it 's just about getting the best deal off the club 19 | you ca n't just play great football for one year and suddenly think you 're the best player in the world 20 | 21 | Summary Generated: 22 | @entity0 may hold all the cards in his contract dispute with @entity3 , but he needs to focus on his football rather than his pay - packet , according to former @entity7 boss @entity6 23 | @entity6 insisted that @entity0 is not ready to move to the likes of @entity9 at this stage of his career , so should stay at the club who have helped him develop so far 24 | @entity0 should focus on his football rather than his contract according to @entity6 @entity0 has turned down a new deal with @entity3 and put off contract talks until the summer ' @entity0 is not going to go to @entity9 at the moment i would n't think , so where could he go better in @entity23 ? ' said @entity6 while working as a pundit for @entity25 -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.29.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | we are used to seeing celebrities airbrushed to perfection but this weekend two fabulous famous females have spoken out about their normal bodies 3 | model @entity5 proudly showed off her stretch marks in an @entity9 post that has been praised by her fans 4 | and the singer @entity11 hit back at critics who fat shamed her for an outfit she wore to a recent charity event alongside her husband @entity16 5 | stretchies say hi ! ' she received praise from many fans , such as @entity9 user @ saraelizabef who said : ' love it ! real women have stretch marks # respect ' 6 | another follower , @ emmalittle5 , commented : ' i have so much respect for you ! i have stretchies too and i appreciate someone being real about them and acknowledging them thanks 7 | ' meanwhile , @entity11 took to @entity48 to speak out against those who had commented on her weight at an event she attended to support a doctor friend 8 | she said : ' i can see that some of you are concerned about me from your comments about my weight 9 | ' you 're referring to the pictures of me from last night 's cancer benefit that i attended to support my dear friend dr @entity60 10 | the singer @entity11 hit back at those who criticised her weight at an event recently , saying that she was happy with her body in a message posted to her @entity48 account @entity11 jokingly referred to herself as ' cheesecake ' and said that she felt beautiful in her dress she continued : ' she was given the @entity68 for her tireless efforts and stellar contributions to the eradication of cancer 11 | but unfortunately , my weight seems much more important to some of you 12 | ' while i admit that the dress did n't photograph as well as it did in my kitchen , i will also admit that i felt very pretty 13 | in fact , i feel beautiful 14 | ' so , my good and concerned peoples , please do n't worry about me 15 | i 'm not worried about me 16 | and i 'm not worried about you either : -rrb- ... ' i am perfectly fine , perfectly happy , and my healthy , voluptuous and crazy strong body is having some much deserved time off 17 | ' and @entity5 and @entity11 are n't the first stars to make comments about their bodies or to be keen to show off their more natural selves 18 | @entity88 recently gave an interview to @entity90 in which she said that she was used to being bullied about her weight recently @entity88 gave an interview to @entity94 chat show host @entity90 in which she discussed how she had been facing criticism for her weight for years 19 | she said : ' i 'm such a creative person that i yo yo 20 | so sometimes i 'm more fit and i get into kickboxing hardcore 21 | and then sometimes i do n't and i 'm like 22 | . i 'd rather have wine 23 | ' ' we are who we are 24 | whatever size , ' @entity88 told @entity90 , prompting applause from the studio audience 25 | ' you know , if it 's you , you 're just like whatever , ' she said 26 | ' i think what hurts my feelings ... 27 | . is that i 'll have a meet and greet after the show and a girl who is , like , bigger than me will be in the meet and greet and be like , ' wow , if they think you 're big , i must be so fat to them 28 | ' in 0@entity117 star and producer @entity116 hit back after she was criticised for wearing a pair of short shorts on the red carpet 29 | in 0@entity116 recieved harsh criticism for this outfit 30 | 31 | Summary Generated: 32 | model @entity5 proudly showed off her stretch marks in an @entity9 post that has been praised by her fans 33 | and the singer @entity11 hit back at critics who fat shamed her for an outfit she wore to a recent charity event alongside her husband @entity16 34 | ' meanwhile , @entity11 took to @entity48 to speak out against those who had commented on her weight at an event she attended to support a doctor friend -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.30.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity2 's @entity1 stadium in @entity3 is up for sale as the company that owns it is suffering from cash flow problems following a corruption scandal 3 | @entity3 's @entity8 is being sold by owner @entity9 , with the company also trying to sell the 0percent share it owns of the @entity13 arena in @entity14 4 | the company has struggled for months with the impact of a corruption investigation at state - controlled oil company @entity18 , which undercut the builder 's access to financing 5 | a general view of @entity3 's @entity8 during the @entity1 match between @entity24 and @entity25 last year an economic downturn , government austerity and a slumping currency has also taken its toll , leading to @entity9 to announce it is selling its stakes in the stadiums and other businesses to focus on the core construction business 6 | @entity9 spent 0million reais -lrb- around # 0million -rrb- on completely rebuilding the old @entity13 arena in @entity14 and 0million reais -lrb- # 0million -rrb- on the new @entity8 area 7 | the @entity13 hosted six games in the 0tournament and the @entity8 four 8 | the announcement was the latest in a string of bad news for @entity44 football @entity42 9 | @entity45 take on @entity46 in a @entity1 quarter - final at @entity14 's @entity13 arena last july earlier this week @entity49 , one of the biggest clubs in @entity14 , said they were abandoning plans to use the @entity13 because they felt the owners did not respect their fans 10 | several other stadiums have seen bigger crowds for concerts and religious events than for football and the ground in @entity61 was closed because of structural problems . 11 | 12 | Summary Generated: 13 | @entity2 's @entity1 stadium in @entity3 is up for sale as the company that owns it is suffering from cash flow problems following a corruption scandal 14 | @entity3 's @entity8 is being sold by owner @entity9 , with the company also trying to sell the 0percent share it owns of the @entity13 arena in @entity14 15 | the company has struggled for months with the impact of a corruption investigation at state - controlled oil company @entity18 , which undercut the builder 's access to financing -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.31.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | a new anti-smoking advert warning people that they could get colon cancer and be forced to use an ostomy bag for the rest of their lives has drawn the anger of a 0- year - old student who uses one as a consequence of her fight with inflammatory bowel disease 3 | @entity12 blogs about her experience of living with an ostomy bag after she underwent emergency surgery for ulcerative colitis 4 | she has called for the new tips from former smokers ad , commissioned by the @entity19 , to be banned 5 | the 0second ad features her warning smokers that she has to use an ostomy bag taped to a hole in her abdomen as a consequence of smoking 6 | ' i 'm @entity25 , i smoked and i got colon cancer 7 | i had chemo and two surgeries 8 | but what i hated the most , was the colostomy bag 9 | that 's where they re-route your intestines so you have bowel movements that go into a bag , ' she says 10 | ' through a hole in your stomach 11 | my tip is : get over being squeamish 12 | you 're going to be emptying your bag 0times a day 13 | ' the video ends with @entity25 holding up an ostomy bag , with a voiceover telling people where they can seek help to quit smoking 14 | @entity12 , who is @entity62 , writes on her @entity64 blog that the ad ' came as a complete shock ' and left her feeling angry and disgusted 15 | @entity12 has called for the new tips from former smokers ad , commissioned by the @entity19 , to be banned ' watching this video bought out so much anger that i did n't know was there 16 | 17 | Summary Generated: 18 | a new anti-smoking advert warning people that they could get colon cancer and be forced to use an ostomy bag for the rest of their lives has drawn the anger of a 0- year - old student who uses one as a consequence of her fight with inflammatory bowel disease 19 | @entity12 blogs about her experience of living with an ostomy bag after she underwent emergency surgery for ulcerative colitis 20 | @entity12 has called for the new tips from former smokers ad , commissioned by the @entity19 , to be banned ' watching this video bought out so much anger that i did n't know was there -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.32.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity0 is known as ' @entity1 ' and the boxing superstar gave a further glimpse to his incredible wealth on wednesday 3 | the 0- year - old took to his shots account to upload a picture inside his private jet 4 | accompanied with the caption ' @entity13 , ' the @entity10 and @entity11 welterweight world champion can be seen inside his aircraft alongside a member of his brand @entity16 5 | the social media post would have come as a minor respite for @entity0 as he prepares for the most expensive bout in boxing history on may 0 6 | @entity0 -lrb- right -rrb- gave fans an inside look of his private jet via his shots account on wednesday the orthodox fighter is putting his two belts , and his unbeaten record , on the line when he takes on @entity29 star @entity28 7 | the unification bout against @entity31 champion @entity28 at the @entity32 in @entity33 is expected to total $ 300million 8 | ahead of the highly - anticipated fight , boxing legend @entity35 wants to see @entity28 emerge triumphant come may 0, according to his daughter 9 | @entity37 revealed that her father respects @entity28 's boxing capabilities but also admires how he handles himself away from the ring 10 | ' my dad is team @entity28 all the way , ' she told @entity45 on tuesday 11 | ' my dad really likes @entity28 , he 's a huge fan of his 12 | @entity35 wants @entity28 -lrb- right -rrb- to beat @entity0 when they clash on may 0in @entity33 ' he knows @entity28 's a great fighter but it 's more about what he does outside the ring 13 | he 's such a charitable person 14 | ' @entity35 added that her father acknowledges @entity0 's own boxing capabilities but admitted they are two very different personalities 15 | ' my dad stood for things 16 | @entity0 ... i do n't think there 's a comparison , ' she said , before revealing that @entity35 will not be in attendance for the fight in @entity33 on may 0but will watch it on television 17 | ' there 's no question he 's going to order it , ' she added 18 | ' it takes my dad way back to when he was fighting 19 | ' @entity35 is widely considered as the greatest boxer ever and his daughter said he ' really likes ' @entity28 20 | 21 | Summary Generated: 22 | @entity0 is known as ' @entity1 ' and the boxing superstar gave a further glimpse to his incredible wealth on wednesday 23 | the 0- year - old took to his shots account to upload a picture inside his private jet 24 | accompanied with the caption ' @entity13 , ' the @entity10 and @entity11 welterweight world champion can be seen inside his aircraft alongside a member of his brand @entity16 -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.33.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | a handful of peanuts a day may help prevent food poisoning , a study has found 3 | eating the kernels without their skins can improve gut health and the ability to ward off bugs like @entity9 , according to the research 4 | scientists from the @entity12 found that flour made from peanut kernel significantly stimulated the growth of @entity16 and @entity17 , the type of friendly bacteria more commonly associated with yoghurt drinks 5 | eating peanut kernels without their skins can improve gut health and the ability to ward off bugs like @entity9 , according to research by the @entity12 by increasing the amount of good bacteria , the peanut flour was able to reduce the amount of a dangerous bacterium , @entity9 , which can cause severe food poisoning 6 | the friendly bacteria out - competes the harmful bacteria by occupying space on intestinal walls and by producing antimicrobial substances 7 | four made from peanut kernel stimulates the growth of friendly bacteria , research has found lead researcher dr @entity38 said : ` eating approximately 50g of peanut kernels a day could improve the gut microflora and would help to protect against foodborne illnesses caused by common foodborne bacterial pathogens 8 | ' when the scientists tested the peanut skin , however , they found it had the opposite effect to the peanut kernel , inhibiting the growth of good bacteria and promoting the growth of the harmful @entity9 and @entity53 bacteria 9 | writing in the @entity54 , the researchers concluded : ` these results suggest that peanut kernels , by improving the beneficial effect of lactobacillus , might reduce the risk of foodborne pathogens infection in the gut 10 | ` however , the role of peanut skin in human health remains to be further investigated 11 | ' @entity9 can be transmitted by eating undercooked meat such as mince , or contaminated vegetables that have n't been washed properly 12 | @entity53 is found in the gut of many animals , especially poultry 13 | proper cooking usually destroys it 14 | undercooked eggs can also be a source . 15 | 16 | Summary Generated: 17 | scientists from the @entity12 found that flour made from peanut kernel significantly stimulated the growth of @entity16 and @entity17 , the type of friendly bacteria more commonly associated with yoghurt drinks 18 | eating peanut kernels without their skins can improve gut health and the ability to ward off bugs like @entity9 , according to research by the @entity12 by increasing the amount of good bacteria , the peanut flour was able to reduce the amount of a dangerous bacterium , @entity9 , which can cause severe food poisoning 19 | the friendly bacteria out - competes the harmful bacteria by occupying space on intestinal walls and by producing antimicrobial substances -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.34.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity1 star @entity0 believes the pain of @entity5 's @entity4 exit can be a driving force in their push to make this season 's @entity10 play - offs 3 | @entity0 and company were left to reflect on what might have been at @entity15 's @entity14 as six @entity17 penalties gave three - time @entity20 champions @entity18 a tense 0- 0quarter - final success 4 | @entity5 dominated for large parts of the second period and claimed tries through fly - half @entity25 and captain @entity27 , but hopes of reaching a first top - flight @entity20 semi-final since 0floundered on their indiscipline 5 | @entity0 carries during an impressive @entity5 performance , but the @entity34 side came up short attention will now quickly return to the @entity10 , with @entity5 having four games left - against @entity37 , @entity38 , @entity39 and @entity40 - in the quest for a top - four finish 6 | ' the overriding emotion is that we are absolutely disappointed , ' said @entity5 full - back @entity0 , whose counter-attacking brilliance was repeatedly showcased against an often stretched @entity18 defence 7 | ' to have battled out of the group as we did -lrb- @entity5 lost their first two games -rrb- and then obviously to get into the quarter - final , to get so close and then fail at the end , it is obviously massively disappointing 8 | ' but we have to try to take the positives , and i think a disappointment like this is going to help us in the @entity10 9 | ' @entity5 stayed true to the ball - in - hand attacking principles that have lit up much of this season 's @entity10 campaign , and at times , @entity18 struggled to cope 10 | @entity17 was perfect from the tee to hand @entity18 the victory in a game where they were second best in @entity17 , though , they had a relentless marksman , whose 0per cent goalkicking return ultimately sent @entity18 marching on and @entity5 left to focus solely on domestic matters 11 | ' to put on an attacking performance and go through the phases like we did against a quality side like @entity18 is just going to add more confidence , ' @entity0 added 12 | ' i think the way we have been playing this year has been a revelation to be a part of , and i have really enjoyed playing for this club 13 | ' i think the progress we have made throughout the year has been awesome 14 | i think the ethos and everything we are building at the club is going in the right direction 15 | 16 | Summary Generated: 17 | @entity1 star @entity0 believes the pain of @entity5 's @entity4 exit can be a driving force in their push to make this season 's @entity10 play - offs 18 | @entity5 dominated for large parts of the second period and claimed tries through fly - half @entity25 and captain @entity27 , but hopes of reaching a first top - flight @entity20 semi-final since 0floundered on their indiscipline 19 | @entity0 carries during an impressive @entity5 performance , but the @entity34 side came up short attention will now quickly return to the @entity10 , with @entity5 having four games left - against @entity37 , @entity38 , @entity39 and @entity40 - in the quest for a top - four finish -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.35.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity2 's @entity1 - winning batsman @entity0 has had surgery on his left hamstring and will be sidelined for up to three months 3 | the pugnacious opener , captain of @entity2 's @entity8 team , sustained the injury playing for the @entity10 in the @entity11 and returned to @entity12 to have the operation on tuesday 4 | ' @entity0 had scans that confirmed a high grade hamstring injury , ' @entity15 team physiotherapist @entity14 said on wednesday 5 | @entity18 batsman @entity0 faces three months out of action after surgery on his hamstring @entity22 was part of @entity2 's @entity1 - winning side and was injured while playing in the @entity11 ' as such , @entity0 was assessed by a surgeon who felt that he would have a better outcome with surgery 6 | @entity0 subsequently had surgery yesterday that has gone well 7 | ' @entity0 will now commence his rehabilitation and we expect that rehabilitation to take up to 0weeks 8 | ' @entity22 has never played @entity32 cricket and was not included in the @entity2 squad for june 's series in @entity35 or the @entity37 tour which follows 9 | the 0- year - old was scheduled to join @entity39 at the end of may . 10 | 11 | Summary Generated: 12 | @entity2 's @entity1 - winning batsman @entity0 has had surgery on his left hamstring and will be sidelined for up to three months 13 | the pugnacious opener , captain of @entity2 's @entity8 team , sustained the injury playing for the @entity10 in the @entity11 and returned to @entity12 to have the operation on tuesday 14 | ' @entity0 had scans that confirmed a high grade hamstring injury , ' @entity15 team physiotherapist @entity14 said on wednesday -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.36.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | alarming footage has surfaced of a crowd of street racers threatening the police officers who rescued their friends from a serious crash 3 | captured at a known hoon hotspot in @entity9 on the @entity10 , the body cam vision shows the officers saving several victims from inside a flipped @entity13 despite the threat of smouldering flames on the car 4 | a 0- year - old man has been charged with a medley of offences after he flipped the vehicle on saturday night in an intense police chase that left one passenger with a broken neck 5 | officers can be seen extinguishing the flames and administering first aid as they wait for paramedics to transport the injured victims to hospital , according to 0news 6 | police rescue victims from a flipped @entity13 after a dramatic police chase over the weekend that ended in a serious crash one woman claiming to be a passenger in the car desperately pleads with police to save her boyfriend , who is trapped inside 7 | ` get my boyfriend out ! ' ` we 've got the ambulance coming ok ? ' the officer says 8 | ` just stay with us 9 | ' but rather than gratitude , some friends of the injured can later be heard threatening police 10 | ' take off your badge , let 's go , come on ' says a shirtless man who appears to be in in his 20s as his friends struggle to hold him back 11 | a 0- year - old was hospitalised with a broken neck , along with the driver , 0, and another 0- year - old passenger , both of whom suffered bruising and shock 12 | the vision was captured at a known hoon - hotspot in @entity9 on the @entity10 , where police were alerted after spotting a driver doing burnouts rather than gratitude , this young man can be heard threatening the very officers who rescued his friends paramedics transport the injured victims to hospital 13 | 14 | Summary Generated: 15 | alarming footage has surfaced of a crowd of street racers threatening the police officers who rescued their friends from a serious crash 16 | captured at a known hoon hotspot in @entity9 on the @entity10 , the body cam vision shows the officers saving several victims from inside a flipped @entity13 despite the threat of smouldering flames on the car 17 | a 0- year - old man has been charged with a medley of offences after he flipped the vehicle on saturday night in an intense police chase that left one passenger with a broken neck -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.37.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | former @entity1 tight end @entity0 has been moved to a new prison a week after he was convicted of first - degree murder and sentenced to life behind bars 3 | a state prisons official says @entity0 , 0, was moved wednesday to the maximum - security @entity7 in @entity9 , @entity10 4 | @entity0 had been at @entity12 prison in @entity13 since he was convicted april 0of killing 0- year - old @entity14 in 0 5 | @entity14 was dating the sister of @entity0 's fiancee 6 | he was sentenced to life in prison though @entity0 spent his first week after being convicted at @entity12 prison , he was moved on wednesday to @entity7 -lrb- pictured -rrb- in @entity9 , @entity10 @entity21 is a maximum - security prison about 0miles west of @entity23 , @entity10 @entity24 is the state department of @entity27 's newest prison 7 | it opened in 0and is about 0miles west of @entity23 8 | it houses more than 1,000 inmates , many of whom are serving life sentences , and is named for two department employees killed during a failed escape attempt in 0 9 | 10 | Summary Generated: 11 | former @entity1 tight end @entity0 has been moved to a new prison a week after he was convicted of first - degree murder and sentenced to life behind bars 12 | a state prisons official says @entity0 , 0, was moved wednesday to the maximum - security @entity7 in @entity9 , @entity10 13 | @entity0 had been at @entity12 prison in @entity13 since he was convicted april 0of killing 0- year - old @entity14 in 0 -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.38.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | big - hearted @entity0 left back @entity1 has seemingly paid off his mother 's debts in his latest act of generosity 3 | the 0- year - old posted a text message conversation between him and his mother on his @entity10 account 4 | his mother thanked him for wiping ' all my debt away for the first time ever in my life ' , adding that ' my worries have all gone 5 | ' @entity1 has seemingly paid off his mother 's debts in an act of generosity @entity1 posted a screengrab of a text message conversation on his @entity10 account @entity1 replied two minutes later : ' aww mumma you deserve every penny 6 | thankyou for all the years of hard work ' before adding ' and that 's just the start 7 | ' alongside the screengrab , @entity1 wrote : ' this is why i do it , this makes worth it -lsb- sic -rsb- ' his apparent act of generosity drew over 2,000 ' likes ' and lots of praise from his followers , with many saying he was a role model that children should look up to 8 | an @entity0 spokesman said the post was ' a private matter between @entity43 and his mum 9 | ' it is not the first time that @entity1 has acted out of the kindness of his heart 10 | left - back @entity1 has been a key player in @entity0 's push for promotion this season @entity1 has been linked with a move to @entity54 side @entity53 following impressive performances in march 0, he gave @entity56 two tickets for an @entity0 game after the fan tweeted that he was ' skint ' 11 | the father - of - two from @entity61 was saving for a new house and could n't afford to go to the match 12 | 13 | Summary Generated: 14 | big - hearted @entity0 left back @entity1 has seemingly paid off his mother 's debts in his latest act of generosity 15 | the 0- year - old posted a text message conversation between him and his mother on his @entity10 account 16 | his mother thanked him for wiping ' all my debt away for the first time ever in my life ' , adding that ' my worries have all gone -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.39.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity0 were made to work hard for their three points against @entity2 at @entity3 on saturday but @entity4 starred for @entity6 's team 3 | he slotted @entity0 ahead in typically composed fashion from the penalty spot before @entity9 equalised with an astonishing strike from inside his own half shortly before half time 4 | @entity2 continued to make things difficult for @entity0 until an @entity14 error led to @entity15 tapping in the winner 5 | here , @entity18 's @entity17 gives his player ratings 6 | @entity0 -lrb- 0- 0- 0- 0-rrb- @entity20 -- 5.5 never called into action in the opening 0minutes but beaten by @entity9 with an incredible strike from inside @entity2 's half 7 | too far off his line and one of the world 's best goalkeepers was left embarrassed 8 | @entity20 was on the winning team but will want to forget @entity9 beating him from his own half @entity32 -lrb- left -rrb- and @entity33 leap up to block an attempt at goal from @entity2 's @entity36 @entity37 -- 6.5 tidied up well on the rare occasion @entity2 threatened 9 | played with more freedom once @entity0 had the lead and tried to help in attack down the wing 10 | @entity32 -- 0.5 looked cool when called into action and was able to clear the danger as @entity2 tried to cross their way into the lead in the second half 11 | @entity33 -- 0manned the back well and it took a goal - of - the - season contender for his team to concede against a @entity2 side that ran out of ideas at times 12 | always the man that remained at the back to kill off any threat 13 | @entity58 -- 6.5 tried to get forward and help hazard down the left 14 | closed down well and put in a tireless performance 15 | @entity61 -- 0a few too many misplaced passes and a hurried clearance almost spelled danger for @entity0 16 | cleaned up well when needed to win back possession , however 17 | @entity66 -- 0won the penalty with a clever cut back that fooled @entity36 18 | kept the midfield ticking over well 19 | @entity71 international @entity70 -lrb- left -rrb- also produced an impressive display for @entity0 in the win over @entity2 @entity4 put @entity0 into the lead with from the penalty spot in the first half @entity78 's -lrb- right -rrb- game was curtailed 0minutes after coming on with what looked like a hamstring injury @entity70 -- 7.5 a handful for @entity2 as he , @entity82 and hazard linked up well to create chances in the first half , though they were never taken 20 | never short of a run 21 | @entity82 -- 6.5 scuppered one of @entity0 's best chances to take the lead by placing his shot wide of the far post , and was ultimately -- and unfortunately -- sacrificed for @entity78 at half time 22 | @entity4 -- 8.5 a live wire 23 | master of the one - two and creating chances 24 | ultimately kept his cool from the spot to give @entity0 a much - needed lead before @entity9 's equaliser 25 | did n't look tired , despite his weariness during international break 26 | @entity15 - 7.5 looked a worthy replacement for @entity78 as he twice went close to giving @entity0 the lead in the opening seven minutes 27 | scored in the second half when @entity6 really needed it , and it was deserved 28 | 29 | Summary Generated: 30 | @entity0 were made to work hard for their three points against @entity2 at @entity3 on saturday but @entity4 starred for @entity6 's team 31 | he slotted @entity0 ahead in typically composed fashion from the penalty spot before @entity9 equalised with an astonishing strike from inside his own half shortly before half time 32 | @entity2 continued to make things difficult for @entity0 until an @entity14 error led to @entity15 tapping in the winner -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.4.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | a senior @entity1 party official convicted of crimes against humanity has been executed in @entity4 3 | @entity5 was hanged around 10.30 pm on saturday inside a jail in @entity7 4 | the assistant secretary general of the @entity10 headed a militia group that collaborated with the @entity13 army in the 0independence war and was behind the killing of around 0unarmed farmers , prosecutors said 5 | above , @entity4 security personnel escort an ambulance leaving @entity21 carrying his body but the move has been slammed by the man 's supporters , who have called for a nationwide general strike 6 | his execution took place after he refused to seek presidential clemency 7 | the country 's @entity30 rejected his final legal appeal against the death sentence , which he received in may 0 8 | members of @entity5 's family visited him yesterday afternoon for the last time , his lawyer @entity34 said 9 | shortly after tv footage showed an ambulance , thought to be carrying @entity40 's body , leaving the jail under police escort 10 | in a statement @entity10 , @entity4 's largest @entity1 political party , denounced the execution and called for a protest against the government 's action 11 | a @entity49 - based @entity48 urged officials not to carry out the execution , claiming that @entity40 's trial did not meet ` fair international ' standards 12 | his execution took place after he refused to seek presidential clemency 13 | the country 's @entity30 rejected his final legal appeal against the death sentence , which he received in may 0@entity4 security personnel stand guard outside @entity21 14 | in a statement @entity10 , the country 's largest @entity1 political party , denounced the execution and called for a protest against the government 's action a spokesman from the @entity65 added : ` we have seen progress , but still believe that further improvements ... could ensure these proceedings meet domestic and international obligations 15 | ' @entity4 blames @entity13 soldiers and local collaborators for the deaths of 3million people during the nine - month war seeking independence from @entity13 more than 0years ago 16 | an estimated 200,000 women were raped and around 10million people were forced to take shelter in refugee camps in neighbouring @entity81 . 17 | 18 | Summary Generated: 19 | @entity5 was hanged around 10.30 pm on saturday inside a jail in @entity7 20 | the assistant secretary general of the @entity10 headed a militia group that collaborated with the @entity13 army in the 0independence war and was behind the killing of around 0unarmed farmers , prosecutors said 21 | above , @entity4 security personnel escort an ambulance leaving @entity21 carrying his body but the move has been slammed by the man 's supporters , who have called for a nationwide general strike -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.41.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | the mother of a baby born with deformed hands and feet in @entity3 is pleading for her husband to come home -- four months after he told her he was going out to earn money for the girl 's surgery 3 | worried @entity9 says she has now run out of cash and ca n't even afford food , let alone medical treatment , for @entity13 and their older daughter 4 | she told @entity16 : ` doctors said it 's best for @entity13 to have her operation between the age of four to six months 5 | ` but she is now six - and - a - half months and we simply do not have the money for her to have the operation - and her hands have started to fester 6 | ' desperate plight : @entity26 pictured with her daughter @entity13 , has n't seen her husband for months the family 's plight has attracted the attention of local media in @entity33 , who have cruelly compared @entity13 's webbed hands and feet to ` pigs ' trotters ' 7 | her father , who has not been named , left the family home in @entity40 in @entity41 at the start of the year - telling them he was heading to @entity33 to find work 8 | he has not been heard from since 9 | @entity46 's hands are severely deformed and doctors have recommended corrective surgery her feet are webbed , and local reporters have cruelly dubbed the deformed extremities as ' trotters ' his wife phoned a restaurant where he previously worked but was told he had left his job a while ago 10 | she says she ca n't understand why her husband has disappeared , as they had been happily married for more than a decade 11 | the couple 's oldest daughter is aged ten 12 | a local charity has offered to pay for @entity13 's basic medical care after hearing about her from local news sources - and she is being tended to at a hospital near her home 13 | in need of surgery : @entity68 is receiving basic medical treatment that is being paid for by a charity doing her best : @entity72 looks after @entity46 at home but is struggling to pay for even food distraught : @entity9 breaks down while telling @entity3 reporters about her dire situation 14 | 15 | Summary Generated: 16 | the mother of a baby born with deformed hands and feet in @entity3 is pleading for her husband to come home -- four months after he told her he was going out to earn money for the girl 's surgery 17 | worried @entity9 says she has now run out of cash and ca n't even afford food , let alone medical treatment , for @entity13 and their older daughter 18 | her father , who has not been named , left the family home in @entity40 in @entity41 at the start of the year - telling them he was heading to @entity33 to find work -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.42.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity0 : @entity1 is the first woman to be appointed head chef at the @entity3 a former @entity5 semi-finalist has become the first woman to run the prestigious @entity3 kitchen in its 0- year history 3 | @entity1 has been appointed head chef at the famous venue , which has hosted lunches for the likes of prime ministers , musicians and captains of industry for decades 4 | the 0- year - old follows in the footsteps of a string of maître chefs who have headed the kitchen since its opening in the @entity21 , @entity22 in 0 5 | @entity23 -- dubbed ` chef of kings ' -- was installed by hotel manager @entity26 when the @entity3 first opened 6 | since then , a number of well - known chefs have followed , including @entity29 and @entity30 -- but never a woman ms @entity1 , who lives in @entity32 , said : ` it is an absolute honour for me to be the head chef here in one of @entity22 's most iconic restaurants 7 | obviously there is so much history here , and the people who come through the door come here for the classic dishes that the grill is famous for 8 | ' at the five - star , art deco grill , which is now part of the @entity46 stable , @entity43 will head a team of about 0chefs , of whom some 0per cent are women 9 | it marks her return to the venue -- she was a sous chef between 0and 0, before becoming head chef at the @entity56 & @entity57 gastropub in @entity32 10 | she reached the semi-final of the 0series of @entity5 : the professionals 11 | the @entity62 - born chef said she would continue the ` masculine '' culinary traditions established by @entity23 , including a daily roast trolley , and classics such as @entity66 and @entity68 sole 12 | it was more important to keep the grill true to its traditions of `` great quality cuts of meat and fish '' rather than regain the @entity76 star lost when it closed for refurbishment in 0, she said , adding : ` people are here because it is a classic grill 13 | ' as well as powerful men , the @entity3 has been a magnet to some of the world 's most famous women including @entity87 , @entity88 , @entity89 and @entity90 14 | it was also where @entity91 met her future husband @entity93 15 | heritage : but the @entity95 contestant has promised to continue the ' masculine ' traditions of five - star grill @entity23 created a number of famous dishes at the @entity3 , including @entity100 in 0, in honour of @entity103 singer @entity102 , and @entity104 in 0 16 | another signature dish , @entity106 , was created for the novelist and is still on the menu 17 | 18 | Summary Generated: 19 | @entity0 : @entity1 is the first woman to be appointed head chef at the @entity3 a former @entity5 semi-finalist has become the first woman to run the prestigious @entity3 kitchen in its 0- year history 20 | @entity1 has been appointed head chef at the famous venue , which has hosted lunches for the likes of prime ministers , musicians and captains of industry for decades 21 | the @entity62 - born chef said she would continue the ` masculine '' culinary traditions established by @entity23 , including a daily roast trolley , and classics such as @entity66 and @entity68 sole -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.43.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | countryfile presenter @entity0 said that she completely ' accepts ' that she will one day be replaced on the @entity2 show 3 | the 0- year - old , who has defended her image against criticism that she 's too ' @entity6 ' , told @entity7 : ' you 're hot one year but completely out of favour the next 4 | ' but the mother - of - two , who joined the programme in 0, said she 'd love to stay where she is for ' a long time ' 5 | ' she continued to say that she knew that she would become less popular 6 | ' you are hot one year but completely out of favour the next 7 | i know next year someone will be hotfooting it 8 | i accept that and i know that 9 | ' for @entity0 her appearance has always been a sensitive area on @entity16 as in december 0she revealed that she was told to tone down her look 10 | after her first appearance on the @entity2 show in 0she was told her flowing blonde tresses were ' too present 11 | ' she was asked by producers on the sunday evening show to be more countryside , ' less @entity6 ' in her appearance - a statement she believes was related to the long blonde locks that have earned her fame 12 | @entity0 says that as a woman ' what you get is not down to you ' and she would n't be surprised if she was replaced in 0@entity0 was asked by producers to be ' less present ' a comment she believes was directed at her blonde hair 13 | pictured : presenters -lrb- @entity49 -rrb- @entity50 , @entity0 , @entity51 , @entity52 and @entity53 at the time she said the statement was an example of the problems she has encountered because of her good looks , as well as the different culture in the @entity60 compared to the @entity61 - which she said was far more welcoming 14 | ' it is celebratory over there ; they really want you to do well , ' the mother - of - two told @entity68 magazine 15 | ' it 's like over here they would almost rather you were on the edge of a breakdown 16 | ' in 0@entity73 successfully sued the @entity2 for age discrimination after being dropped by the show in a revamp @entity0 previously worked for the @entity77 in @entity61 and has spoken about the problem of being viewed first for her looks and regarded as a ' blonde , fluffy thing 17 | ' her long blonde hair has attracted much debate among viewers of @entity16 and the presenter previously admitted her tresses get much attention 18 | she added : ' i get asked a lot about my hair 19 | it 's a subject that always seems to come up 20 | ' @entity0 has previously spoken about her looks being a barrier to her career , with people presuming because she is attractive she will not be able to do her job properly 21 | the journalist said : ' it can get in the way of people thinking you 're credible , so i try and shrug it off 22 | ' i 've had people approach me -- inside and outside tv -- who are surprised i can string a sentence together 23 | 24 | Summary Generated: 25 | countryfile presenter @entity0 said that she completely ' accepts ' that she will one day be replaced on the @entity2 show 26 | the 0- year - old , who has defended her image against criticism that she 's too ' @entity6 ' , told @entity7 : ' you 're hot one year but completely out of favour the next 27 | ' she was asked by producers on the sunday evening show to be more countryside , ' less @entity6 ' in her appearance - a statement she believes was related to the long blonde locks that have earned her fame -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.45.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | the parents of an 0- year - old autistic boy who miraculously survived four - and - a - half - days alone in the bush after he vanished from their favourite campground have vowed to continue holidaying at the camping spot 3 | @entity5 , who went without food or water since @entity8 , has been going to the @entity9 at @entity10 , northeast of @entity11 , since he was just one year old , his parents @entity12 and @entity13 revealed in an emotional press conference on thursday 4 | a desperate search for @entity5 in the park was mounted after he disappeared from the campground on friday 5 | the hunt ended on tuesday when a police helicopter guided on - ground searchers to @entity5 's location 6 | ` one thing in his favour is he has been going there since he was one - year - old , every year he 's been up and down the hills and visiting the lake , ' @entity5 's father @entity23 said 7 | i guess that gave him lots of confidence but ultimately that place gives him lots of pleasure and that 's what we are on about regarding spending time there 8 | ' his parents believe the communities prayers and @entity5 's own resilience is what saw him survive the terrifying ordeal 9 | ` sometimes we do n't give our kids enough credit for their resilience - but he sure showed us , ' @entity12 said 10 | the moment @entity5 was found was captured on video , he was seen peering out from behind trees before a uniformed police officer reached him and took his hand to reassure him he was finally safe 11 | @entity23 said : ` we admire everyone 's professionalism , determination and commitment to finding @entity5 12 | 13 | Summary Generated: 14 | the parents of an 0- year - old autistic boy who miraculously survived four - and - a - half - days alone in the bush after he vanished from their favourite campground have vowed to continue holidaying at the camping spot 15 | @entity5 , who went without food or water since @entity8 , has been going to the @entity9 at @entity10 , northeast of @entity11 , since he was just one year old , his parents @entity12 and @entity13 revealed in an emotional press conference on thursday 16 | the hunt ended on tuesday when a police helicopter guided on - ground searchers to @entity5 's location -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.46.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | a mum who says she felt like a ' rabbit in headlights ' after having her first child has designed an app to guide mothers through pregnancy and early motherhood , which even tells breastfeeding mothers which boob to use next 3 | @entity10 , 0, from @entity11 , @entity12 , came up with the idea for @entity14 when she was pregnant with daughter @entity15 , now three months old 4 | like most first - time mums , @entity10 and husband @entity17 , had no idea what to expect when they brought their first child home from hospital 5 | @entity10 , 0, from @entity11 -lrb- left , with @entity15 and right with @entity15 and husband @entity17 -rrb- came up with the idea for @entity14 when she was pregnant tech - savvy mum @entity10 , who designed the new app , with baby @entity15 , now three months @entity10 said : ' i had absolutely no idea what to do - i was forever turning to @entity28 to find out information , and some of the things i found were n't right 6 | ' she also admits she even struggled to remember which boob she had used last when breastfeeding so included a breast - tracking feature 7 | the mum - of - one designed the mobile app to contain a huge amount of information on everything from late stage pregnancy and birth to breastfeeding 8 | the app , which is available on all mobile platforms , has already been downloaded 20,000 times and is getting rave reviews 9 | 10 | Summary Generated: 11 | a mum who says she felt like a ' rabbit in headlights ' after having her first child has designed an app to guide mothers through pregnancy and early motherhood , which even tells breastfeeding mothers which boob to use next 12 | @entity10 , 0, from @entity11 , @entity12 , came up with the idea for @entity14 when she was pregnant with daughter @entity15 , now three months old 13 | @entity10 , 0, from @entity11 -lrb- left , with @entity15 and right with @entity15 and husband @entity17 -rrb- came up with the idea for @entity14 when she was pregnant tech - savvy mum @entity10 , who designed the new app , with baby @entity15 , now three months @entity10 said : ' i had absolutely no idea what to do - i was forever turning to @entity28 to find out information , and some of the things i found were n't right -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.47.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | they 're the best of friends who work and play together , so it 's hardly surprising that @entity3 has picked up some words of wisdom from @entity6 3 | the 0- year - old model took inspiration from the @entity10 star when it came to learning how to deal with negative feedback , particularly on social media 4 | speaking to @entity13 , @entity3 said : ' from @entity6 i learned how to deal with the haters 5 | she has a really good sense of when to stand up -lsb- on social media -rsb- and when to back off 6 | she added : ' i think she does such a good job of showing who she is 7 | she lets her personality really shine in her @entity33 8 | ' while @entity6 is taking the fashion world by the storm , she has her fair share of haters 9 | the fledgling model 's meteoric rise as a professional runway model reportedly sparked the ire and resentment of some of her colleagues , according to a report 10 | at @entity46 , @entity6 was allegedly bullied by her fellow models , who even went so far as to put cigarettes out in her drink 11 | in another incident , @entity52 , along with fellow model @entity51 , left cruel comments on a pre-show image of @entity6 shared on @entity57 's @entity33 feed 12 | the 0- year - old model took inspiration from the @entity10 star when it came to learning how to deal with negative feedback @entity3 said that @entity6 has a really good sense of when to stand up -lsb- on social media -rsb- and when to back off @entity52 , 0, tagged her friend @entity64 , 0, in the comment : ' @ binxwalton she 's never looked better , ' with a crying with laughter emoticon 13 | @entity67 cover star @entity64 replied : ' that 's f * * * * d up , ' with the same animated laughing face 14 | the two comments have since been deleted from the @entity57 photo , but followers ' horrified responses remain 15 | @entity52 has since apologised for the comment 16 | in a statement issued via a representative to @entity78 news , she said : ' i was n't thinking and made a silly comment 17 | @entity6 's had a killer nyfw 18 | a big congrats to her ! ' @entity3 , centre , is best friends with fellow supermodels @entity88 , left , and @entity6 , right the latter remark is certainly true 19 | @entity6 is unarguably one of the world 's most in - demand stars 20 | her appearance in a @entity95 fashion show in @entity96 on tuesday was case in point 21 | @entity6 and her best friend @entity88 were linked as they closed the @entity103 - @entity102 2014/15 @entity101 at @entity104 in two very unique and elaborate ensembles - @entity6 in black , @entity88 in white 22 | and shadowing the young beauties was the designer himself , @entity107 23 | 24 | Summary Generated: 25 | the 0- year - old model took inspiration from the @entity10 star when it came to learning how to deal with negative feedback , particularly on social media 26 | speaking to @entity13 , @entity3 said : ' from @entity6 i learned how to deal with the haters 27 | ' while @entity6 is taking the fashion world by the storm , she has her fair share of haters -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.48.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | a 0- year - old man is to appear in court today charged with the murder of his 0- year - old mother at her home 3 | police arrested @entity6 after the pensioner 's body was discovered at her home in @entity10 , @entity11 , @entity12 on thursday night 4 | although the body has not yet been formally identified , she is understood to be his mother @entity15 5 | police arrested @entity6 after the pensioner 's body was discovered at her home in @entity10 -lrb- pictured -rrb- , @entity11 , @entity12 - on - @entity18 according to the @entity19 , mr @entity6 was arrested after detectives were called to his home on thursday 6 | detective inspector @entity22 from @entity23 said : ' at this stage of the investigation we are not looking for anyone else in connection with this incident 7 | ' police were called to the scene at around 8pm on thursday 8 | mr @entity6 , of @entity32 , @entity33 , @entity34 , is due to appear before magistrates at @entity37 - under - @entity36 today he said officers were due to have finished forensic examinations by late last night with a @entity41 post-mortem taking place today 9 | mr @entity6 , of @entity32 , @entity33 , @entity34 , is due to appear before magistrates at @entity37 - under - @entity44 today 10 | family members affected by the death are being supported by a police family liaison officer 11 | 12 | Summary Generated: 13 | a 0- year - old man is to appear in court today charged with the murder of his 0- year - old mother at her home 14 | police arrested @entity6 after the pensioner 's body was discovered at her home in @entity10 , @entity11 , @entity12 on thursday night 15 | police arrested @entity6 after the pensioner 's body was discovered at her home in @entity10 -lrb- pictured -rrb- , @entity11 , @entity12 - on - @entity18 according to the @entity19 , mr @entity6 was arrested after detectives were called to his home on thursday -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.49.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | investigative journalists looking into possible exaggerations told by @entity2 about his reporting are focusing on another episode from the @entity6 broadcasters career , his time reporting in @entity9 3 | a team at @entity6 tasked with delving into allegations that the former network star has misrepresented his experiences in war zones is looking at tales he 's told about the @entity18 anti-government uprising in early 0 4 | a february clip from @entity21 's @entity20 with @entity22 sees the anchor launch into a story about how he ' made eye contact ' with a government soldier on a horse who was beating protesters 5 | however , there is no footage of @entity2 actually on the square during what he called the moment demonstrations ' turned sour ' and descended into violence 6 | however , doubts have been raised about whether @entity2 , who said the violence he witnessed turned the city into a ' do n't leave your hotel ' situation , was at @entity18 7 | his dispatches from the country at the time said that he was reporting from a balcony above the protest center , according to the @entity71 8 | it is not known exactly which parts of @entity2 's @entity9 reporting are being focused on by the @entity6 committee investigating him 9 | in other parts of the @entity22 interview , the longtime @entity77 anchor tells about seeing streams of protesters coming in from suburban @entity49 along the @entity82 with banners 10 | @entity2 was suspended in february amid allegations that he had lied about being in a helicopter that was shot down in @entity86 in 0@entity2 -lrb- pictured in @entity87 in march 0-rrb- has been questioned about the accuracy of his reporting from war zones he also said that his crew in @entity9 had no body armor and that his ' security guys ' were unarmed because of the country 's gun laws 11 | 12 | Summary Generated: 13 | investigative journalists looking into possible exaggerations told by @entity2 about his reporting are focusing on another episode from the @entity6 broadcasters career , his time reporting in @entity9 14 | a team at @entity6 tasked with delving into allegations that the former network star has misrepresented his experiences in war zones is looking at tales he 's told about the @entity18 anti-government uprising in early 0 15 | a february clip from @entity21 's @entity20 with @entity22 sees the anchor launch into a story about how he ' made eye contact ' with a government soldier on a horse who was beating protesters -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.5.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity1 's hopes of a fairytale ending to his @entity4 career were shattered as his side suffered a 0- 0defeat to @entity7 in the semi-finals of the @entity9 3 | the final on may 0, also by coincidence @entity1 's 35th birthday , would have been the midfielder 's final game in a @entity4 shirt before he leaves for the @entity16 in the summer , but - although he was handed a starting role by manager @entity18 - he was unable to influence the outcome 4 | here , @entity20 takes a closer look at @entity1 's performance at @entity23 5 | @entity4 midfielder @entity1 -lrb- left -rrb- competes for posession with @entity25 role @entity1 started the game in an advanced role behind @entity29 and to the right of @entity31 in a 0- 0- 0- 0formation but midway through the first half , @entity4 adjusted their shape to 0- 0- 0- 0, pushing @entity31 wide left and allowing @entity1 to adopt a more central position behind the striker 6 | @entity18 tweaked @entity4 , and @entity1 's , shape for a third time at the interval , as the @entity40 went 0- 0- 0- 0with @entity1 playing deepest of the midfield three 7 | @entity1 controls possession under pressure from @entity7 's @entity44 at @entity23 @entity1 almost snatched a dramatic equaliser with four minutes left , but his header was cleared off the line possession the first half largely passed @entity1 by as playing further forward starved him of any sustained spells of possession and @entity7 crowded out the space in front of their back four to good effect 8 | dropping back into central midfield after the interval allowed the @entity4 captain to collect the ball from his defenders but his passing was cautious and occasionally wayward 9 | 10 | Summary Generated: 11 | @entity1 's hopes of a fairytale ending to his @entity4 career were shattered as his side suffered a 0- 0defeat to @entity7 in the semi-finals of the @entity9 12 | the final on may 0, also by coincidence @entity1 's 35th birthday , would have been the midfielder 's final game in a @entity4 shirt before he leaves for the @entity16 in the summer , but - although he was handed a starting role by manager @entity18 - he was unable to influence the outcome 13 | @entity4 midfielder @entity1 -lrb- left -rrb- competes for posession with @entity25 role @entity1 started the game in an advanced role behind @entity29 and to the right of @entity31 in a 0- 0- 0- 0formation but midway through the first half , @entity4 adjusted their shape to 0- 0- 0- 0, pushing @entity31 wide left and allowing @entity1 to adopt a more central position behind the striker -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.50.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | overcoming terminal cancer through healthy eating - that statement in print appears dubious at best 3 | but it becomes completely believable when it is brought to life through the inspirational , optimistic , comeback story of a charismatic , beautiful , young woman named @entity7 4 | @entity7 cast a spell through her endearing vulnerability and charming personality , collecting an enormous social media following who were enamoured with her brave account of reclaiming her health 5 | wellness warrior @entity7 has admitted that she never had cancer and does not want forgiveness now that @entity7 has admitted she made her story up , we ask ourselves , how could we have fallen so hard for an account of what many have called a medical miracle , without a shred of supporting evidence ? the answer is very simple 6 | and we did not so much believe in @entity25 ´ s story , as we believed in @entity25 7 | everyone loves a heart - warming account of overcoming the odds 8 | we were enchanted by @entity25 s journey , as well as by @entity7 herself 9 | a beautiful , young , inspirational woman , we fell in love with her story as well as with her -- which caused us even to downplay the rumours and suspicions of sceptics within the medical community as the fabric of her brave fight against cancer began to unravel 10 | here are five ways that the @entity7 ´ s of the world win us over 11 | she founded the @entity45 - a book and app which over 300,000 people have downloaded appearances are reality -- and @entity51 believe it or not , studies show that people can not distinguish between behaviour that is honest and behaviour that is deceptive 12 | this causes us to make the easier judgement -- that other people are truthful 13 | to make matters worse , when we like someone , we are likely to believe they are truthful , even when they are lying 14 | how do we overcome the truthfulness bias ? one way is to closely examine a person ´ s motives 15 | when someone relays a heart - warming story , as @entity7 did , what is she getting out of it ? while many people do not want to spoil a happy ending with a cloud of suspicion , examining prospective outcomes for the storyteller often raises suspicions about potential ulterior motives that might otherwise never come to light 16 | @entity80 says we fell for @entity7 because ' we love heartwarming stories -- especially comeback stories ' born to @entity84 - there is a bit of @entity7 in @entity86 we love heart - warming stories -- especially comeback stories 17 | especially when we feel an affinity to the heroine 18 | 19 | Summary Generated: 20 | overcoming terminal cancer through healthy eating - that statement in print appears dubious at best 21 | wellness warrior @entity7 has admitted that she never had cancer and does not want forgiveness now that @entity7 has admitted she made her story up , we ask ourselves , how could we have fallen so hard for an account of what many have called a medical miracle , without a shred of supporting evidence ? the answer is very simple 22 | here are five ways that the @entity7 ´ s of the world win us over -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.51.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | on a fenced - in artificial pitch , on the edge of one of @entity4 's most notorious estates , a group of men with what you could call lived - in faces are finishing a game of football 3 | some are dressed in jeans and shoes - they have no kit or boots 4 | stories of strife are swapped 5 | ' i 'm only here so i can get a shower , ' says one as he rolls a cigarette 6 | ' the wife booted me out a week ago and i 've been on a settee since 7 | ' @entity26 helped coach youngsters from @entity30 's @entity29 project another is reflecting on how this kickabout , for those who may have suffered from mental health issues , is the latest tentative step on a long journey back from the brink 8 | ' i was on a bridge over a motorway , ' he says as he looks into the distance 9 | ' they sectioned me for five years 10 | ' into this environment walks a man who knows all about adversity 11 | @entity26 , he of hand in sleeve and knee often in cast , is back in @entity50 12 | the @entity51 , now 0, was a key cog in sir @entity54 's treble - winning machine , making 0appearances in that memorable season following a # 4.4 m switch from @entity58 13 | the midfielder -lrb- left -rrb- was a crucial player in @entity30 's treble winning season of 0- 0but his 0minutes in the late , late @entity63 win over @entity64 in @entity65 would be his last in a red shirt 14 | three operations and two gruelling years of rehab later he was on his way to @entity70 but would continue to be haunted by injury before eventual retirement 15 | he is here on sunday to coach youngsters from the @entity30 's @entity76 project , but given his background he may also be well suited to having a word with those vacating the pitch 16 | @entity26 now helps his brother lecture people on how to handle setbacks using his previous experiences the years have been kind 17 | @entity26 's long hair remains and is now accompanied by a beard which makes him look suited to the role he currently performs 18 | ' i lecture with my brother , ' he explains 19 | ' he 's a psychologist so he talks about how to handle setbacks and how to keep on performing 20 | i can relate to that and give some real life examples from my career both good times and bad times 21 | we speak to people from companies who have team building days 22 | ' @entity26 celebrates their semi-final win over @entity104 with @entity105 -lrb- centre -rrb- and @entity107 @entity26 had the world at his tricky feet when he signed for @entity30 in 0 23 | he was one of few players sir @entity54 had to try more than once to convince to move to the club , after he spurned the @entity112 's advances to sign for @entity58 and @entity113 after a frustrating year on @entity115 's bench 24 | ' i liked @entity116 , ' he explains , apologetically 25 | ' it was nothing to do with @entity50 26 | i had learned the language and i had settled in 27 | i enjoyed the life and i enjoyed @entity58 , but then @entity113 left 28 | 29 | Summary Generated: 30 | ' @entity26 helped coach youngsters from @entity30 's @entity29 project another is reflecting on how this kickabout , for those who may have suffered from mental health issues , is the latest tentative step on a long journey back from the brink 31 | the @entity51 , now 0, was a key cog in sir @entity54 's treble - winning machine , making 0appearances in that memorable season following a # 4.4 m switch from @entity58 32 | the midfielder -lrb- left -rrb- was a crucial player in @entity30 's treble winning season of 0- 0but his 0minutes in the late , late @entity63 win over @entity64 in @entity65 would be his last in a red shirt -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.52.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity1 's dr @entity0 has abandoned his journalistic duties to scrub up and perform brain surgery on a teenager in an overstretched hospital in @entity6 3 | the neurosurgeon , who is in @entity8 to cover the aftermath of saturday 's deadly earthquake , performed a craniotomy on the 0- year - old girl , @entity12 , after a wall of her family 's home fell on her as she collected water outside 4 | @entity12 , who lives in a more remote area of the country , only reached @entity8 's @entity19 two days after the 7.8 - magnitude quake and by that point , blood had collected in the top of her brain , @entity1 reported 5 | more than 6,000 people were injured ' i was asked to do this by the doctors there at the hospital , ' dr @entity0 said during a telephone interview with the network 6 | ' i think they literally need another set of hands because the demand is so high 7 | ' during the procedure , he was forced to used basic equipment , such as a saw rather than an electric drill , and sterile water and iodine from a bottle , rather than a proper scrub sink , he told @entity1 8 | following the operation , she is ' doing well ' , @entity0 said , ' but her story is unfortunately very typical ' 9 | after the surgery , an eight - year - old girl arrived at the hospital needing a similar operation 10 | more than 4,300 people are believed to have been killed in the earthquake , but @entity6 officials have speculated that as many as 10,000 could have died 11 | around 6,000 have been injured and are pouring into the hospitals , which are struggling to keep up with the demand 12 | ' i 've seen a lot of situations around the world , and this is as bad as i 've ever seen it , ' @entity0 said 13 | hurt : another child with a similar head injury , pictured , came to the hospital shortly after the operation helping hand : as well as working for @entity1 , @entity0 is a neurosurgeon at @entity82 in @entity83 ' they need more resources , they need more personnel here right now , and they 're expecting many more patients as these rescue operations go on 14 | they 're barely able to keep up right now 15 | ' as well as serving as @entity1 's chief medical correspondent , @entity0 is a neurosurgeon at @entity82 in @entity83 16 | it is not the first time the married father - of - three , 0, has performed surgery while on a reporting job 17 | in 0, while covering the medical demands of the invasion of @entity99 , he performed emergency surgery on @entity102 soldiers and @entity99 civilians 18 | and while reporting in @entity105 following the 0earthquake , he and other doctors removed a piece of concrete from a 0- year - old girl 's skull aboard aircraft carrier @entity111 19 | 20 | Summary Generated: 21 | @entity1 's dr @entity0 has abandoned his journalistic duties to scrub up and perform brain surgery on a teenager in an overstretched hospital in @entity6 22 | the neurosurgeon , who is in @entity8 to cover the aftermath of saturday 's deadly earthquake , performed a craniotomy on the 0- year - old girl , @entity12 , after a wall of her family 's home fell on her as she collected water outside 23 | more than 6,000 people were injured ' i was asked to do this by the doctors there at the hospital , ' dr @entity0 said during a telephone interview with the network -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.53.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity0 will not take up their # 7.5 million purchase option on @entity2 despite his winning goal against @entity4 on wednesday 3 | @entity5 and @entity0 agreed a potential deal last season worth around # 15m to include the @entity8 's season loan 4 | @entity9 , @entity10 , @entity11 , @entity12 , @entity13 and @entity14 are among clubs interested in the 0- year - old 5 | @entity2 celebrates after scoring the winner for @entity0 against rivals @entity4 on wednesday the striker will leave @entity0 at the end of this season and return to @entity5 the @entity8 is wanted by a host of @entity23 clubs including @entity13 and @entity24 @entity2 has only started twice in @entity25 for @entity27 's side and faces the near - impossible task of earning a regular starting spot with the likes of @entity31 , @entity32 and @entity33 ahead of him in the pecking order 6 | the striker will return to @entity5 at the end of the season but does not feature in manager @entity38 's plans and will only have one year left on his contract at the @entity41 club 7 | meanwhile , @entity42 and proposed new franchise @entity43 are being considered by @entity31 as possible destinations when his contract ends at @entity0 8 | @entity31 , 0, is contracted to @entity4 until 0. 9 | 10 | Summary Generated: 11 | @entity0 will not take up their # 7.5 million purchase option on @entity2 despite his winning goal against @entity4 on wednesday 12 | @entity5 and @entity0 agreed a potential deal last season worth around # 15m to include the @entity8 's season loan 13 | @entity2 celebrates after scoring the winner for @entity0 against rivals @entity4 on wednesday the striker will leave @entity0 at the end of this season and return to @entity5 the @entity8 is wanted by a host of @entity23 clubs including @entity13 and @entity24 @entity2 has only started twice in @entity25 for @entity27 's side and faces the near - impossible task of earning a regular starting spot with the likes of @entity31 , @entity32 and @entity33 ahead of him in the pecking order -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.54.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | with the polls refusing to shift , @entity0 today went looking for divine inspiration in the hopes of winning the election 3 | the self - confessed atheist @entity6 leader visited a @entity8 group in @entity9 on the latest stop o his campaign trail 4 | he bowed his head while church leaders ' put their hands forward towards @entity0 ' as they prayed for him in @entity9 5 | on friday night @entity25 addressed 45,000 christians at an event at the @entity28 before joining 15,000 sikhs for a @entity31 parade yesterday 6 | today mr @entity0 stopped off at @entity16 in @entity9 for a question and answer session with worshippers 7 | he told the congregation that a @entity6 government would install an envoy for religious freedom in the @entity39 to tackle persecution overseas 8 | ' we must do everything we can to make sure that religious freedom is protected , ' mr @entity0 said 9 | he was bombarded with requests for selfies , as is now commonplace on the campaign trail 10 | during the visit mr @entity0 ws bombarded with requests for selfies , as is now commonplace on the campaign trail last year mr @entity0 described himself as a ' jewish atheist ' , but all party leaders are now trying to reach religious groups in the scramble to win votes mr @entity0 was joined by @entity6 peer @entity54 , whose son @entity56 was murdered in 0 11 | mr @entity0 discussed his faith during a visit to @entity59 12 | he said : ' i have a particular faith 13 | i describe myself as a @entity63 atheist 14 | i 'm @entity63 by birth origin and it 's a part of who i am 15 | ' i do n't believe in @entity67 , but i think faith is a really , really important thing to a lot of people 16 | it provides nourishment for lots of people 17 | ' in a separate intervention today , the @entity6 leader made a direct pitch for the support of disaffected centre ground conservatives who feared the return of mr @entity25 to no 0could lead to rising inequality and jeopardise @entity85 's place in the @entity86 18 | mr @entity0 was joined by @entity6 peer @entity54 , whose son @entity56 was murdered in 0in an interview with @entity89 he said : ' i am a politician of the left , but i am positioned where the mainstream of politics is positioned 19 | i am on the centre ground of politics , ' ' i want to reach out to @entity98 voters , to @entity100 voters , to @entity101 voters , to non-voters ... to people who feel that @entity25 ca n't answer the challenge of our time , who worry about our place in the @entity86 , who really think to themselves , ' we can do a lot better as a country ' 20 | 21 | Summary Generated: 22 | with the polls refusing to shift , @entity0 today went looking for divine inspiration in the hopes of winning the election 23 | the self - confessed atheist @entity6 leader visited a @entity8 group in @entity9 on the latest stop o his campaign trail 24 | today mr @entity0 stopped off at @entity16 in @entity9 for a question and answer session with worshippers -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.56.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity0 looked in formidable form as he showed off his array of skills ahead of @entity6 's @entity5 quarter - final against city rivals @entity7 3 | the @entity8 pulled off a selection of back - heels and fancy flicks during monday 's training session , wowing forward partner @entity13 and sending @entity14 to the floor 4 | real looked in good spirits after a successful weekend , during which they cut the gap to @entity21 leaders @entity22 to just two points , and the @entity25 champions were further boosted by the return from injury of @entity29 winger @entity28 5 | @entity0 pulls a face at @entity32 left back @entity33 during @entity6 training on monday morning @entity0 nonchalantly controls the ball with his heel as @entity13 looks on impressed the @entity38 star was in the mood to show off his stunning skills as @entity6 prepared for the @entity6 derby @entity0 applauds a team - mate as @entity14 watches on ahead of tuesday 's @entity5 clash @entity38 defender @entity44 claimed the success in the league will give @entity6 a boost ahead of tuesday 's first leg , a repeat of last year 's @entity5 final 6 | ' the two point -lsb- gap -rsb- gives us a lift , ' he told as ahead of the game 7 | ' we will fight until the end , because that 's just what we did to win @entity59 8 | ' we must play against -lsb- @entity7 -rsb- with intensity and humility , which is how we are playing now and how we did before the international break 9 | we have to learn from our mistakes 10 | 11 | Summary Generated: 12 | @entity0 looked in formidable form as he showed off his array of skills ahead of @entity6 's @entity5 quarter - final against city rivals @entity7 13 | real looked in good spirits after a successful weekend , during which they cut the gap to @entity21 leaders @entity22 to just two points , and the @entity25 champions were further boosted by the return from injury of @entity29 winger @entity28 14 | @entity0 pulls a face at @entity32 left back @entity33 during @entity6 training on monday morning @entity0 nonchalantly controls the ball with his heel as @entity13 looks on impressed the @entity38 star was in the mood to show off his stunning skills as @entity6 prepared for the @entity6 derby @entity0 applauds a team - mate as @entity14 watches on ahead of tuesday 's @entity5 clash @entity38 defender @entity44 claimed the success in the league will give @entity6 a boost ahead of tuesday 's first leg , a repeat of last year 's @entity5 final -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.57.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity1 manager @entity0 says he would have no problem with sneaking through the ` back door ' into @entity5 football via the @entity6 3 | the @entity1 started the season strongly and looked a good bet for @entity5 qualification around @entity10 before their form fell away , with a mid-table finish now all - but certain 4 | but a reprieve could be granted by the @entity6 , with @entity0 's side topping the @entity16 table for their good behaviour , just ahead of @entity18 5 | if @entity1 finish top of the pile and @entity23 's top flight is within the top three ` fair - playing ' leagues in @entity25 -- which it was on last count - they will earn a @entity29 place 6 | @entity0 's @entity1 are top of the @entity31 table , sitting just above @entity18 the @entity1 have won once in their last 0league matches and drew 0- 0against @entity33 in their last match where do the @entity36 teams stand ? 0 7 | @entity40 qualification via @entity31 would see the @entity1 enter the competition at the first qualifying round , playing their first game on july 0and competing in up to six games before the @entity16 season even starts 8 | but @entity0 , who takes his charges to face champions @entity39 on sunday , just wants to qualify and does n't care how he does it , or when the season restarts 9 | ` it 's a headache but you 've got to take the opportunity if it arises , ' he said 10 | ` it might be seen as the back door , -lrb- but -rrb- it 's an opportunity to play in @entity25 11 | ` i think every player wants , not come back that bit earlier , but certainly to play in @entity25 because this club has n't been in that position to play in @entity25 for a long time 12 | ' @entity0 's @entity60 future hangs in the balance with his contract expiring in the summer and a section of fans demanding he is replaced at the end of the season , but he has already been involved in meetings concerning pre-season plans 13 | @entity0 is out of contract at @entity1 in the summer which leaves his managerial future in the balance ` the difficulty is the fact that we do n't know when , yet , whether we 're going to finish in that spot , ' he said 14 | ` and so we 've already planned for either 15 | one in it and one out of it , and obviously if we 're in it we 're back earlier , a few days earlier 16 | if we 're out of it -lrb- the @entity29 -rrb- we come back on july 0, which is one of the smallest close seasons we 've had in a long time 17 | ` and even then international players wo n't be back on that date , either earlier or on the first of july because they wo n't be finished international duties until the middle of june 18 | 19 | Summary Generated: 20 | @entity1 manager @entity0 says he would have no problem with sneaking through the ` back door ' into @entity5 football via the @entity6 21 | if @entity1 finish top of the pile and @entity23 's top flight is within the top three ` fair - playing ' leagues in @entity25 -- which it was on last count - they will earn a @entity29 place 22 | @entity0 's @entity1 are top of the @entity31 table , sitting just above @entity18 the @entity1 have won once in their last 0league matches and drew 0- 0against @entity33 in their last match where do the @entity36 teams stand ? 0 -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.58.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity0 , of @entity1 , @entity2 , @entity3 , denies fraud by abuse of position and conspiracy to commit fraud a @entity10 branch manager conned elderly customers out of their life savings by setting up bogus standing orders for hundreds of thousands of pounds 3 | @entity0 , 0, from @entity3 allegedly handed over customer names , account details and signatures to a gang of fraudsters while he was working at @entity10 , a court heard 4 | the alleged ringleader of the scheme , @entity23 , who is not before the court , set up standing orders by impersonating the victims , it is said 5 | @entity0 is on trial for fraud by abuse of position and conspiracy to commit fraud at the @entity32 6 | he is in the dock alongside seven others who are accused of using their accounts to siphon the funds away 7 | @entity37 , 0, @entity38 , 0, @entity39 , 0, @entity40 , 0, @entity41 , 0, @entity42 , 0, and @entity43 , 0, were allegedly paid around # 0each for letting the fraudsters use their bank accounts 8 | prosecutor @entity46 described the scam as a ` nasty little fraud ' that ` deliberately targeted elderly people with the aim of clearing them out of their life savings ' 9 | ` @entity0 is the inside man in this fraud and the remaining defendants in the dock allowed their accounts to be used for the stolen money to be passed through 10 | ` it was n't a particularly sophisticated fraud but it 's a fraud which , were it not detected , would have netted the fraudsters hundreds of thousands of pounds and caused a loss in life savings to the victims 11 | ` the set - up was quite straight forward - standing orders were set up from these elderly people 's accounts to withdraw money 12 | that 's it , it 's as simple as that 13 | @entity0 used the bank 's computer system to access nine customers ' details and signatures which he sold on to the fraudsters , the court was told 14 | he worked as a cashier at the @entity79 branch in @entity80 until february 0when he was promoted to branch manager in @entity82 , @entity80 15 | the fraud was allegedly carried out from may 0to may 0and many of the victims were elderly or vulnerable , four were in their 80s and another three were over 0 16 | ` we say mr @entity0 looked up those people 's details for a dishonest purpose , not because they came into the branch or were making a genuine enquiry , ' mr @entity46 said 17 | @entity0 is on trial for fraud by abuse of position and conspiracy to commit fraud at the @entity32 -lrb- pictured -rrb- 18 | 19 | Summary Generated: 20 | @entity0 , of @entity1 , @entity2 , @entity3 , denies fraud by abuse of position and conspiracy to commit fraud a @entity10 branch manager conned elderly customers out of their life savings by setting up bogus standing orders for hundreds of thousands of pounds 21 | @entity0 , 0, from @entity3 allegedly handed over customer names , account details and signatures to a gang of fraudsters while he was working at @entity10 , a court heard 22 | ` @entity0 is the inside man in this fraud and the remaining defendants in the dock allowed their accounts to be used for the stolen money to be passed through -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.59.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | taxpayers are having to find # 11billion a year to top up the wages of millions of people working in supermarkets and other low paid jobs 3 | the money , which amounts to a massive public subsidy for the companies involved , is paid to some 5.2 million workers in the form of tax credits and other benefits 4 | campaigners say the figures shine a light on how companies making huge profits are relying on the taxpayer to ensure their staff have enough money to put food on the table 5 | the total amount of benefits paid to staff at some companies exceeds what the firms pay in corporation tax , according to the study by citizens @entity30 6 | critics have accused supermarkets of relying on benefits to ensure their staff earn enough to put food on the table without them having to raise wages the charity is campaigning for the adoption of the @entity42 - # 9.15 an hour in @entity43 and # 7.85 for the rest of the @entity30 - across both the public and private sector 7 | it estimates this would reduce the need for in - work benefits by # 6.7 bn a year , which would make a massive dent in the # 12billion reduction in welfare spending which the @entity54 say is necessary 8 | the current minimum wage for those over 0is # 6.50 an hour and will rise to # 6.70 in october , but this is well below what the government accepts is needed by many people , particularly those with children , to make ends meet 9 | the charity 's report complains : ` the public subsidy enables profitable businesses to get away with paying low wages 10 | ' its report says @entity70 , @entity71 and @entity72 's posted combined profits of # 3.9 bn last year , but between them cost the taxpayer more than # 750m in benefits paid to their staff 11 | @entity70 paid # 519m in tax but received # 364m in public subsidy for its 209,000 low - paid workers 12 | @entity71 spent # 150m in tax but its 120,000 low - paid workers received # 221m in benefits 13 | 14 | Summary Generated: 15 | taxpayers are having to find # 11billion a year to top up the wages of millions of people working in supermarkets and other low paid jobs 16 | the total amount of benefits paid to staff at some companies exceeds what the firms pay in corporation tax , according to the study by citizens @entity30 17 | critics have accused supermarkets of relying on benefits to ensure their staff earn enough to put food on the table without them having to raise wages the charity is campaigning for the adoption of the @entity42 - # 9.15 an hour in @entity43 and # 7.85 for the rest of the @entity30 - across both the public and private sector -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.6.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity1 sporting director @entity0 checked on @entity3 pair @entity2 and @entity4 on tuesday night 3 | @entity0 , who also wants @entity7 's former @entity6 midfielder @entity5 , watched @entity3 in action against @entity9 having sent scouts to watch them in the first leg in @entity12 last week 4 | @entity4 , a 0- year - old @entity13 left - back , is wanted by @entity14 too while @entity15 and @entity9 have an interest in @entity17 winger @entity2 , 0 5 | @entity3 attacking midfielder @entity2 -lrb- right -rrb- is a prime transfer target for @entity1 team - mate @entity4 -lrb- right -rrb- is also on @entity1 's summer wish - list as they look to revamp their squad city are also keen admirers of @entity7 midfielder @entity5 , who used to play for rivals @entity6 with @entity1 's @entity26 title defence tailing off limply this season , the club are keen to revamp their squad yet again when the summer transfer window opens in june 6 | city are currently fourth in the table with 0points from 0games , 0behind the pace of leaders @entity6 who have played one fixture less 7 | manager @entity40 , having delivered the league title and @entity37 in his debut season , is now seemingly under pressure for failing to reach the same heights this term 8 | @entity1 's head of youth development @entity45 has been mooted as a possible replacement should the club decide to part company with the @entity50 9 | city boss @entity40 is facing pressure to deliver success at the heavy spending club 10 | 11 | Summary Generated: 12 | @entity1 sporting director @entity0 checked on @entity3 pair @entity2 and @entity4 on tuesday night 13 | @entity0 , who also wants @entity7 's former @entity6 midfielder @entity5 , watched @entity3 in action against @entity9 having sent scouts to watch them in the first leg in @entity12 last week 14 | @entity3 attacking midfielder @entity2 -lrb- right -rrb- is a prime transfer target for @entity1 team - mate @entity4 -lrb- right -rrb- is also on @entity1 's summer wish - list as they look to revamp their squad city are also keen admirers of @entity7 midfielder @entity5 , who used to play for rivals @entity6 with @entity1 's @entity26 title defence tailing off limply this season , the club are keen to revamp their squad yet again when the summer transfer window opens in june -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.60.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity0 , 0, who claimed to be ' @entity2 's vainest man ' , has been ordered to carry out 0hours unpaid work for harassing an ex-girlfriend , pictured today outside court a fitness fanatic dubbed ' @entity2 's vainest man ' who set up a fake website claiming his ex-girlfriend was a prostitute has been ordered to carry out 0hours of unpaid work for harassing her 3 | @entity0 , 0, bombarded @entity12 model @entity11 with up to 0messages a day and tried to blackmail her out of # 5,000 after their six - month relationship broke down 4 | when she refused to pay the bodybuilder , from @entity17 in @entity18 , he mocked - up an escort website profile on @entity20 and sent it to her mother and sister 5 | @entity0 failed to appear at @entity23 in february but was found guilty of two counts of harassment without violence in his absence 6 | the model , who claims he spends # 100,000 - a - year on his looks and is now working as a stripper , says he took an overdose and suffered a seizure days before the hearing , causing him to miss it 7 | sentencing him today , @entity36 , chair of the bench , said : ' it involves two periods of harassment over a long period of time , it also involves harassment electronically and wide dissemination 8 | ' this has had caused a great deal of distress for the complainant and possible impact on her work 9 | ' we have decided that these two offences are serious enough to sentence you to a community order 10 | ' @entity0 , dressed in a black jacket , a multi-coloured scarf , and black trousers , was given a 0month community order and told to do 0hours of unpaid work 11 | ms @entity36 added : ' we also decided we are going to impose a restraining order , we feel it 's a necessary precaution 12 | ' the pair had met in @entity60 and then went on to work at the same branch of @entity62 in @entity63 , central @entity64 but the six month relationship ended in october 0 13 | the personal trainer bombarded ms @entity11 , from @entity67 , with calls , texts and emails , then tried to blackmail her - although the blackmail did not form part of the harassment charge 14 | she estimated she was receiving at least 0phone calls and 0text messages a day from @entity0 trying to get her to meet up with him 15 | giving evidence ms @entity11 told magistrates : ' i went to @entity12 for three months to get away from him 16 | the day i got back - i do n't know how he found out - he left me a voicemail screaming '' are you back , are you back , are you back ? '' ' he kept asking me to meet him , he said he had problems with drugs and needed my friendship to move on and go back to the gym and move on my life 17 | i was getting 0calls a day 18 | 19 | Summary Generated: 20 | @entity0 , 0, who claimed to be ' @entity2 's vainest man ' , has been ordered to carry out 0hours unpaid work for harassing an ex-girlfriend , pictured today outside court a fitness fanatic dubbed ' @entity2 's vainest man ' who set up a fake website claiming his ex-girlfriend was a prostitute has been ordered to carry out 0hours of unpaid work for harassing her 21 | @entity0 , 0, bombarded @entity12 model @entity11 with up to 0messages a day and tried to blackmail her out of # 5,000 after their six - month relationship broke down 22 | the model , who claims he spends # 100,000 - a - year on his looks and is now working as a stripper , says he took an overdose and suffered a seizure days before the hearing , causing him to miss it -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.61.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity2 target @entity0 has admitted that he is open to ' new challenges ' and will not remain at @entity4 just to pick up his # 220,000 - a - week wages 3 | the @entity7 champions want to reshape their squad this summer after a disappointing season and they could look to offload the 0- year - old , who has struggled to hit top form 4 | @entity0 , who is wanted by his former manager @entity12 , appears open to a move away from the @entity14 if the right opportunity presents itself at the end of the season 5 | @entity4 midfielder @entity0 has hinted that he is open to leaving @entity4 this summer @entity0 is challenged by @entity19 's @entity18 during @entity4 's 0- 0win at the @entity14 on sunday afternoon @entity0 celebrates with @entity21 and @entity22 after the @entity24 's goal against @entity19 speaking to @entity25 , he said : ' no amount of wages will make me stay at a club if i feel that i no longer belong there or if no challenge exists for me 6 | ' it would be unjust on my part 7 | there comes a moment where numbers do n't stop us , it goes beyond that , even if the @entity40 press seem more interested in the numbers than the sport itself 8 | ' for the future , i do n't know more than you do , because i will always go where i am offered new challenges 9 | that is in my nature 10 | ' when i arrived at @entity4 , -lsb- @entity50 -rsb- @entity49 was not the coach 11 | just like the players , managers arrive and leave 12 | as i have said before , i owe it to the @entity4 fans to fight until the end of my career at this club 13 | ' my decisions will not be affected by changes in management , but more by the challenges that will be offered to me 14 | ' @entity4 find themselves fourth in the @entity7 table after a dismal run of form and out of the @entity66 after a two - legged defeat by @entity68 at the last 0stage 15 | @entity2 boss @entity12 wants to be reunited with @entity0 next season after managing him at @entity4 @entity0 's form has been disappointing this season and @entity4 are likely to try and sell him this summer whether @entity49 remains manager or is sacked this summer will not affect @entity0 's decision some of @entity0 's performances have been heavily criticised but the @entity76 remains defiant 16 | ' when things are not necessarily going well in a club , the key players take the fall , ' he added 17 | ' i am not the only one to have been attacked even if there is tendency to be harsher with me 18 | football is my passion , my job and that gives me two good reasons to do as well as i can 19 | 20 | Summary Generated: 21 | @entity2 target @entity0 has admitted that he is open to ' new challenges ' and will not remain at @entity4 just to pick up his # 220,000 - a - week wages 22 | the @entity7 champions want to reshape their squad this summer after a disappointing season and they could look to offload the 0- year - old , who has struggled to hit top form 23 | @entity0 , who is wanted by his former manager @entity12 , appears open to a move away from the @entity14 if the right opportunity presents itself at the end of the season -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.62.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | fancy bonding with a @entity1 , romancing a @entity2 , puckering up to a @entity3 or seducing a @entity4 ? a dating website is offering one lucky person the chance to scour the world for love , all without paying a penny 3 | @entity11 is seeking an outgoing , media - savvy person with a passion for travelling and meeting new people to hop around the globe and go on dates with locals 4 | the lucky singleton will be given a round - the - world ticket with stops at five different destinations : @entity33 , @entity34 , @entity35 , @entity36 and @entity3 5 | in each city they will sample the local dating scene and unearth the pearls of wisdom that could help turn @entity28 into better daters 6 | the lucky singleton will be given a round - the - world ticket with stops in @entity33 and four other cities the chosen candidate will be able to discover all that the dating scene in each city has to offer - from samba dancing in @entity1 and @entity4 saunas to coffee near @entity35 's @entity50 and strolling hand in hand along the @entity52 in @entity3 7 | the trip will last for six weeks and take place during june and july , with all hotel and travel costs covered 8 | it will also include a generous expenses budget to ensure they can go on as many dates as possible without breaking the bank 9 | the lucky winner could be romancing a @entity2 near the sparkling waters of the @entity50 a spokesperson for @entity11 said the website is hoping ` the chosen date explorer and their followers will be inspired by the savvy , no - nonsense approach of @entity33 , the passion of @entity2 , and the @entity71 ' ability to confidently charm their date ' 10 | as part of the application process candidates are asked to describe their best and worst dates and why they should be chosen for this adventure 11 | the deadline to enter the competition is april 0. 12 | 13 | Summary Generated: 14 | fancy bonding with a @entity1 , romancing a @entity2 , puckering up to a @entity3 or seducing a @entity4 ? a dating website is offering one lucky person the chance to scour the world for love , all without paying a penny 15 | the lucky singleton will be given a round - the - world ticket with stops at five different destinations : @entity33 , @entity34 , @entity35 , @entity36 and @entity3 16 | the trip will last for six weeks and take place during june and july , with all hotel and travel costs covered -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.63.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | former paramedic @entity0 had admitted that she used ice while driving and treating patients in an effort to raise awareness about the damaging drug a former ice addict , who worked as a paramedic while high on the drug , has made her story public in an attempt to raise awareness of the illegal substance and the lack of support available for its victims 3 | @entity0 was using crystal meth every day and spending up to $ 0a week to keep up her drug habit 4 | the 0- year - old , who took herself to the emergency room six times while suffering drug induced psychosis , has slammed health services for failing to offer her support despite claiming on numerous occasions that bugs were eating her eyes 5 | ' because i was awake all the time i had a staph infection , but i actually believed i might have bugs in my eyes and when i went to hospital , i was having drug - induced psychosis , i would say i had mites in my eyes or fleas or bugs , ' ms @entity0 told @entity41 6 | ' not once was i ever asked '' are you on meth or taking drugs or are you having a drug induced psychosis '' or '' should we get a social worker or a psych assessment '' 7 | ' i do n't know if they were trying to protect me because i was in the ambulance service , but either way they should n't have been protecting me because firstly , i was dealing with people and patients and secondly , like anyone else i deserve the best treatment and care 8 | ' i should have never been allowed to be released so many times without a psych consultation or councillor 9 | 10 | Summary Generated: 11 | former paramedic @entity0 had admitted that she used ice while driving and treating patients in an effort to raise awareness about the damaging drug a former ice addict , who worked as a paramedic while high on the drug , has made her story public in an attempt to raise awareness of the illegal substance and the lack of support available for its victims 12 | @entity0 was using crystal meth every day and spending up to $ 0a week to keep up her drug habit 13 | the 0- year - old , who took herself to the emergency room six times while suffering drug induced psychosis , has slammed health services for failing to offer her support despite claiming on numerous occasions that bugs were eating her eyes -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.64.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity2 voters would rather have a referendum on the @entity4 than another independence vote , a new survey has revealed 3 | the idea of having another referendum on @entity2 's future in the @entity9 before 0was ranked 19th on a list of 0policies presented to voters 4 | it comes after @entity2 first minister @entity14 last night refused to rule out staging a second independence vote if the @entity16 wins the 0@entity18 elections 5 | but she added it was ' another matter ' whether a vote for her party in the 0@entity18 elections would bring about a second vote on independence 6 | ms @entity14 has also vehemently criticised @entity34 's pledge to hold an in - out referendum on @entity36 7 | but a poll by @entity38 for @entity39 reveals that a referendum on the @entity9 's membership of the @entity4 was more popular with voters north of the border than another independence ballot 8 | more than 1,000 adults were questioned for the research , with pollsters asking them to give various issues a score of between one and 0, depending on how important these were to them 9 | a score of one meant a policy should not be implemented while 0was taken to mean it should be put into action immediately 10 | in last night 's tv showdown with the @entity2 leaders of @entity59 , the @entity60 and @entity61 , mr @entity56 refused to rule out a second independence vote before 0ms @entity14 has vehemently criticised @entity34 's pledge to hold an in - out referendum on @entity36 the most popular policy was increasing the minimum wage for those aged over 0, which was given a score of 8.2 11 | giving the @entity18 power over all welfare benefits was eighth most popular , with a score of 7.1 , while transferring full responsibility for income tax to @entity18 came 10th on the list at 6.8 12 | 13 | Summary Generated: 14 | @entity2 voters would rather have a referendum on the @entity4 than another independence vote , a new survey has revealed 15 | it comes after @entity2 first minister @entity14 last night refused to rule out staging a second independence vote if the @entity16 wins the 0@entity18 elections 16 | ms @entity14 has also vehemently criticised @entity34 's pledge to hold an in - out referendum on @entity36 -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.67.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | a best man left guests at his brother 's wedding in tears after composing an emotional song to use as his best man 's speech 3 | @entity9 singer @entity8 , who composed the tune to the popular music from artists such as @entity13 and the @entity14 , toasted his brother @entity15 and his new wife @entity16 at their march 0wedding in using his voice 4 | the unique speech performed by @entity8 at @entity20 in @entity21 , east of @entity9 , has been viewed over 100,000 times online and included tributes to his brother and his bride and also delves into his childhood and says he always looked up to his older sibling 5 | @entity9 singer @entity8 -lrb- pictured -rrb- left guests at his brother 's wedding in tears after composing an emotional song to use as his best man 's speech @entity8 , 0, started off his speech in a mellow tone on the keyboard , singing of his love for his brother to the tune of @entity40 , as his sibling began to well up at the top table 6 | ' guess it 's true what they say that you become a man , when you find the one and you take her hand , ' he sang 7 | ' when you moved out of home , i thought , ' thank the @entity52 , i wo n't be missing you ' , ' mr @entity8 sang 8 | 9 | Summary Generated: 10 | a best man left guests at his brother 's wedding in tears after composing an emotional song to use as his best man 's speech 11 | @entity9 singer @entity8 , who composed the tune to the popular music from artists such as @entity13 and the @entity14 , toasted his brother @entity15 and his new wife @entity16 at their march 0wedding in using his voice 12 | @entity9 singer @entity8 -lrb- pictured -rrb- left guests at his brother 's wedding in tears after composing an emotional song to use as his best man 's speech @entity8 , 0, started off his speech in a mellow tone on the keyboard , singing of his love for his brother to the tune of @entity40 , as his sibling began to well up at the top table -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.68.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | a former @entity1 investment banker faces trial in eastern @entity3 on charges he raped a woman he took home after celebrating his birthday at a @entity9 nightclub 3 | @entity10 , 0, a former managing director at @entity11 , was arrested in august 0after the woman accused him of attacking her in a bathroom at the home he had rented with his wife in the summer resort town of @entity18 4 | @entity10 has pleaded not guilty and is free on $ 100,000 bail 5 | he has opted for a non-jury trial before @entity21 6 | charged : former @entity11 managing director @entity10 , 0, faces charges of allegedly raping a 0- year - old @entity24 woman in the @entity9 in august 0@entity10 's attorney , @entity26 lawyer @entity25 , did not respond to email and telephone messages seeking comment 7 | a lawyer who represented @entity10 at his arraignment in 0said his client was innocent and that the sex was consensual 8 | prosecutors said @entity10 was celebrating his birthday at @entity37 restaurant and lounge in @entity39 when he invited the woman and her friends back to his rental home for a pool party 9 | 10 | Summary Generated: 11 | a former @entity1 investment banker faces trial in eastern @entity3 on charges he raped a woman he took home after celebrating his birthday at a @entity9 nightclub 12 | @entity10 , 0, a former managing director at @entity11 , was arrested in august 0after the woman accused him of attacking her in a bathroom at the home he had rented with his wife in the summer resort town of @entity18 13 | @entity10 has pleaded not guilty and is free on $ 100,000 bail -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.7.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | he was banned from using @entity2 during rush hours after rubbing himself up against a woman in a busy carriage a dry cleaner in his fifties has been banned from using the tube during rush hours after targeting a young woman and rubbing his crotch and pot belly on her bottom 3 | @entity15 , 0, of @entity16 , east @entity2 , got off his train at @entity18 and picked a target on the platform - a ' confident and articulate ' professional in her 20s , a court heard 4 | he then followed her onto a central line service and stood as close to her as he could 5 | @entity0 sidled up to the victim and pretended to accidentally slide his hand across her thigh as she stood with other passengers in the busy carriage on a hot summer 's day 6 | unable to leave the packed train , she tried to change position and lean as far away as possible to escape his advances 7 | but @entity0 moved even closer and began rubbing his crotch and pot belly against her thigh and bottom 8 | his behaviour was so obvious that it had attracted the attention of undercover police officers who were watching his every move 9 | eventually , the horrified young woman managed to attract the attention of one of them and @entity0 was arrested , finally putting an end to the nightmare ordeal 10 | detectives later discovered that @entity0 was charged with two similar offences in 0only to be cleared after the prosecution file failed to arrive in court in time 11 | at the @entity1 , judge @entity53 said that the experience was clearly very ' frightening and shocking ' for the victim , who cried while giving evidence , despite seeming very confident and self - assured 12 | he was convicted of sexual assault after a two - day trial at the @entity1 , but the judge decided not to jail @entity0 in the hope that he can tackle his problems under the supervision of probation officers - despite saying ' there must be a custodial sentence ' 13 | @entity0 was given a six - month prison sentence suspended for two years , a 0- month supervision order , told to complete to do 0hours of unpaid work and ordered to pay an # 0victim surcharge 14 | the judge also prohibited him from travelling on the @entity2 or entering any @entity2 station between 7am and 10am and 4pm and 8pm for five years 15 | undercover police officers first spotted @entity0 when he got off his train at @entity18 at around 8am on 0july last year 16 | 17 | Summary Generated: 18 | he was banned from using @entity2 during rush hours after rubbing himself up against a woman in a busy carriage a dry cleaner in his fifties has been banned from using the tube during rush hours after targeting a young woman and rubbing his crotch and pot belly on her bottom 19 | @entity15 , 0, of @entity16 , east @entity2 , got off his train at @entity18 and picked a target on the platform - a ' confident and articulate ' professional in her 20s , a court heard 20 | @entity0 sidled up to the victim and pretended to accidentally slide his hand across her thigh as she stood with other passengers in the busy carriage on a hot summer 's day -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.70.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | a @entity1 firm has given new meaning to the phrase ' beauty sleep ' by creating a pillowcase which is being touted as the latest way to keep wrinkles at bay 3 | the $ 0-lrb- # 0-rrb- cloth cover - which comes with a lifetime guarantee - is said to hydrate the face and prevent lines while you sleep 4 | and unlike a normal cotton pillowcase , which apparently sucks moisture from the skin , the @entity15 's special blend of ' hydrophobic fibres ' keeps the complexion hydrated all night 5 | the @entity15 has ' a blend of hydrophobic fibres that help skin retain moisture ' the infused special fibres are said to fight wrinkles like a face cream , redirecting moisture back into the skin the pillowcase , made by @entity31 , in @entity1 , was developed by a dermatologist and contains no creams or chemicals 6 | according to its description online , a traditional cotton case has a ' rough surface ' that ' siphons moisture ' away , leaving the face dry and dull 7 | but the wrinkle preventing version is ' therapeutic and extra-smooth ' , redirecting moisture back into the skin for a more vibrant , healthier - looking appearance in the morning 8 | they say the machine washable silky pillowcase also helps skin stay smooth , thanks to its 22,000 densely woven micro-filaments that prevent friction and remain taut 9 | they thwart the bunching and pressure that cause standard cases to inscribe sleep lines , ' which can develop into permanent wrinkles ' 10 | another creation from @entity31 , which also comes with a lifetime guarantee , is the @entity60 11 | the # 0@entity60 is said to banish face and chest wrinkles for sleepers who lie on their side it is said to banish facial and chest sleep wrinkles for sleepers who lie on their side 12 | contoured like a butterfly with strategically placed cut - outs on either side and a supportive front wing , the soft , lightweight pillow 's polyurethane foam gently elevates the face and chest , preventing contact with the bed or pillow below 13 | this apparently helps remove pressure on facial muscles which , as @entity85 cautions , can result in pillow wrinkles , creases , and puffiness 14 | the lower wings elevate and support the head , shoulders and arms allowing for a comfortable back sleeping position in a way that ca n't be achieved on a conventional pillow 15 | use alone or as a pillow topper with an existing pillow 16 | the microfibre cover zips off for machine washing for $ 0-lrb- # 0-rrb- it is contoured like a butterfly with strategically placed cutouts on either side 17 | 18 | Summary Generated: 19 | a @entity1 firm has given new meaning to the phrase ' beauty sleep ' by creating a pillowcase which is being touted as the latest way to keep wrinkles at bay 20 | and unlike a normal cotton pillowcase , which apparently sucks moisture from the skin , the @entity15 's special blend of ' hydrophobic fibres ' keeps the complexion hydrated all night 21 | the @entity15 has ' a blend of hydrophobic fibres that help skin retain moisture ' the infused special fibres are said to fight wrinkles like a face cream , redirecting moisture back into the skin the pillowcase , made by @entity31 , in @entity1 , was developed by a dermatologist and contains no creams or chemicals -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.71.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | an engineer , who was sentenced to six months jail and 0lashes after he was found with homemade alcohol in @entity4 , has spoken of his frustration with the lack of help he received from the @entity9 embassy 3 | @entity11 @entity10 , from @entity12 in @entity13 's inner - west , was caught with two cartons of beer , one box of red wine and one box of white wine in his car on august 0last year while driving home in @entity22 4 | the possession of alcohol is illegal in @entity4 5 | @entity13 grandfather @entity10 -lrb- pictured with his wife , @entity25 , and grandchildren -rrb- has had a travel ban placed on him after he served time for alcohol possession , which is illegal in @entity4 while other expats who had committed the same crime in the past were deported , @entity10 was ordered to serve jail time according to the @entity34 calendar and received 0of the 0lashes he was sentenced to have 6 | he said it was not unusual for a reduction in penalty as the point of it was to ' humiliate ' a person 7 | the 0- year - old was sent to @entity43 prison in the @entity44 on october 0and was released on march 0 8 | he shared the same cell with two murderers , a rapist and thieves 9 | but since he walked free , @entity10 has been unable to leave @entity4 or work as he has been banned from travelling out of the country without any explanation as to why this is happening @entity10 's situation has turned so desperate that he and his wife , @entity25 , have reached out to family to help them by donating money 10 | he was jailed for six months and 0lashes , but only received 0 11 | 12 | Summary Generated: 13 | an engineer , who was sentenced to six months jail and 0lashes after he was found with homemade alcohol in @entity4 , has spoken of his frustration with the lack of help he received from the @entity9 embassy 14 | @entity11 @entity10 , from @entity12 in @entity13 's inner - west , was caught with two cartons of beer , one box of red wine and one box of white wine in his car on august 0last year while driving home in @entity22 15 | @entity13 grandfather @entity10 -lrb- pictured with his wife , @entity25 , and grandchildren -rrb- has had a travel ban placed on him after he served time for alcohol possession , which is illegal in @entity4 while other expats who had committed the same crime in the past were deported , @entity10 was ordered to serve jail time according to the @entity34 calendar and received 0of the 0lashes he was sentenced to have -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.72.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity2 's @entity1 evening newscast has officially overtaken underfire rival @entity4 's @entity3 in the ratings war for the first time in more than five and a half years 3 | @entity4 's 0consecutive week winning run had stetched back to september 0and the drop from the top spot comes two months after anchor @entity10 received a six - month suspension for misleading viewers about his coverage of the @entity14 in 0 4 | according to @entity16 , @entity2 's @entity1 with @entity15 attracted 84,000 more viewers for the week ending april 0, with the show pulling in 7.997 million viewers compared to @entity3 's 7.913 million 5 | 6 | Summary Generated: 7 | @entity2 's @entity1 evening newscast has officially overtaken underfire rival @entity4 's @entity3 in the ratings war for the first time in more than five and a half years 8 | @entity4 's 0consecutive week winning run had stetched back to september 0and the drop from the top spot comes two months after anchor @entity10 received a six - month suspension for misleading viewers about his coverage of the @entity14 in 0 9 | according to @entity16 , @entity2 's @entity1 with @entity15 attracted 84,000 more viewers for the week ending april 0, with the show pulling in 7.997 million viewers compared to @entity3 's 7.913 million -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.73.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | police are hunting for a 0- year - old man after his mother and sister were found dead at two separate addresses in an alleged double murder in @entity6 3 | the body of @entity8 , 0, was found by police on thursday night , just hours before her 0- year - old mother @entity9 was found dead at sheltered accommodation just half a mile away 4 | @entity0 said mrs @entity8 died of asphyxiation , while her daughter was repeatedly stabbed 5 | the family of @entity9 -lrb- left -rrb- and @entity8 family today said they are ' absolutely devastated ' at their loss @entity9 and @entity8 's family today said they are ' absolutely devastated ' at their loss 6 | police are now appealing for the public 's help to track down @entity24 7 | they say they want to speak ' urgently ' with him in connection to the deaths 8 | @entity0 have issued a photograph of mr @entity24 and warned the public not to approach him 9 | detective chief inspector @entity32 said : ' we are currently trying to trace @entity24 , the son of @entity9 , as he could have information which could assist with our investigation 10 | i would appeal to @entity24 to come forward so that we can speak to him following the murders of his mother and sister 11 | 12 | Summary Generated: 13 | police are hunting for a 0- year - old man after his mother and sister were found dead at two separate addresses in an alleged double murder in @entity6 14 | the body of @entity8 , 0, was found by police on thursday night , just hours before her 0- year - old mother @entity9 was found dead at sheltered accommodation just half a mile away 15 | the family of @entity9 -lrb- left -rrb- and @entity8 family today said they are ' absolutely devastated ' at their loss @entity9 and @entity8 's family today said they are ' absolutely devastated ' at their loss -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.74.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | conservative plans to raise billions of pounds from the ' grubby hands of scroungers ' will not work , @entity0 warned today as he unveiled @entity4 plans to balance the books 3 | the @entity4 leader promised to ' spread the burden ' of deficit reduction , with cuts to welfare and @entity12 budgets along with tax rises aimed at the very wealthy 4 | car tax would rise by # 0- a - year 5 | but he scaled back his plans for a mansion tax , amid concern it could cost the party support in key seats in affluent parts of @entity23 6 | but he mocked @entity36 's insistence that another # 12billion can be found from the welfare budget 7 | mr @entity0 warned that it was ' quite simply impossible ' to find savings on that scale without causing ' real pain to millions of families ' and some of the most vulnerable people 8 | the @entity4 set out plans to cap rises in working age benefits at 0per cent to two years 9 | they would also make changes to the universal credit benefits system and take winter fuel payments and free tv licences away from wealthy pensioners -- something the @entity54 have rejected 10 | at a press conference in central @entity23 , mr @entity0 said : ' we are going to spread the burden of finishing the job of fixing the economy fairly across society 11 | ' yes that means more cuts , but it also means asking the wealthiest to pay their fare share too 12 | ' he added : ' our plan means finding more than # 3billion in savings from the welfare budget 13 | savings which ask wealthy pensioners to make a small sacrifice 14 | ' savings which involve fair adjustments to universal credit 15 | continued restraint on the rate of increase of benefits and a ground - breaking plan to reduce benefit fraud and error and get the most vulnerable off benefits and into work 16 | ' at a press conference with @entity4 minister @entity85 , mr @entity0 warned that it was ' quite simply impossible ' to find # 12billion savings from welfare without causing ' real pain to millions of families ' and some of the most vulnerable people among the @entity4 deficit - reduction plans confirmed by the party 's leader are : he warned that the @entity54 ' plan to veer away sharply from the sensible and balanced course we have set together in government ' 17 | he continued : ' if you listen to @entity36 you could be forgiven for believing that they intend to find all # 0billion from the grubby hands of scroungers and layabouts 18 | 19 | Summary Generated: 20 | the @entity4 leader promised to ' spread the burden ' of deficit reduction , with cuts to welfare and @entity12 budgets along with tax rises aimed at the very wealthy 21 | car tax would rise by # 0- a - year 22 | but he scaled back his plans for a mansion tax , amid concern it could cost the party support in key seats in affluent parts of @entity23 -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.75.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | the @entity0 might be at the forefront of fashion trends , but apparently not the waist - trimmers , or ' girdles ' as @entity5 calls them 3 | @entity8 tv presenter , model and mother of two , @entity5 reveals she 's been ahead of the trend , ten years before the @entity0 began instagramming it 4 | while @entity13 recently attributed the corset - like waist trainer as the tool behind her new , slim figure , @entity5 says she discovered the benefits while interviewing @entity19 plastic surgeons for a work assignment years ago 5 | ' so when you have a baby and have excess skin , all the surgeons in @entity37 said that 's what they would recommend to their patients after having babies 6 | ' ' wearing girdles really worked for me 7 | the thicker , the better , ' @entity5 has previously told @entity48 8 | bounce back : @entity49 also swore by girdles for getting back her pre-baby figure @entity5 said that her sister , a nurse in @entity53 , also noticed girdles were trending for quite some time in hospitals in @entity53 as a common recommendation for women needing a protective layer after a c - section 9 | ' i do n't believe in cinching in your waist just because , but i do believe in high - waisted , good old fashioned @entity63 after having baby , ' she said 10 | ' all my girlfriends who i 've told since to do it have managed to get their bodies back after three months and they now swear by it 11 | ' model mother : as a mother to two , @entity5 says having a tight @entity63 like waist trimmer is key to her figure while she says she is n't sure about the science behind it , she believes it definitely works - and @entity49 also swore by it for getting her pre-baby bod back too 12 | so if she does , it 's definitely the real deal 13 | ' since then i 've passed the @entity63 around to all my girlfriends having babies , ' she said 14 | ' i do n't believe in starving yourself after , so while it takes a while to snap back in , you will feel better 15 | and if you look good , you 'll feel good , ' says the trim , mother and presenter . 16 | 17 | Summary Generated: 18 | the @entity0 might be at the forefront of fashion trends , but apparently not the waist - trimmers , or ' girdles ' as @entity5 calls them 19 | @entity8 tv presenter , model and mother of two , @entity5 reveals she 's been ahead of the trend , ten years before the @entity0 began instagramming it 20 | while @entity13 recently attributed the corset - like waist trainer as the tool behind her new , slim figure , @entity5 says she discovered the benefits while interviewing @entity19 plastic surgeons for a work assignment years ago -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.76.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | a man awaiting sentencing for murder escaped from a jail in eastern @entity3 wednesday after beating a guard into unconsciousness , taking his keys and uniform and speeding off in his suv 3 | @entity9 , who has a history of escape attempts , fled from the @entity12 in @entity13 at about 0a.m. he somehow escaped from his cell , hid inside the facility , then beat and choked the guard who was making rounds , said @entity13 sheriff @entity18 4 | @entity9 , a 0- year - old from @entity13 , is considered armed and dangerous , the sheriff said 5 | he was convicted of first - degree murder in february and faces a sentence of 0years to life in prison 6 | escaped : the 0- year - old @entity9 was awaiting sentencing when authorities say he beat a guard into unconsciousness , took his keys and uniform and sped off in his suv ' the speculation on my part is somebody did n't do their job properly , ' @entity18 said 7 | after getting free of his two - man cell in a lockdown unit , @entity9 hid out and attacked the guard , a military veteran with 0years of correctional experience , @entity18 said 8 | by wearing the guard 's uniform , @entity9 was able to fool other guards in a master control room who opened three sets of doors for him after visual verification by surveillance video , @entity18 said 9 | once outside , the suspect repeatedly pressed the guard 's key fob to locate his @entity66 in a parking lot and drive away 10 | authorities did n't learn of the escape until about 0minutes later , when jail staff found the wounded officer , who is hospitalized in intensive care with head wounds 11 | ' he was in and out of consciousness , unable to understand the questions that were given to him , ' @entity18 said of the guard at a news conference 12 | a few hours after sunrise , officers found the abandoned suv in a residential area of @entity13 and approached the vehicle with their guns drawn 13 | but @entity9 was nowhere to be found and it was n't clear whether he fled on foot or someone picked him up in another vehicle , the sheriff said 14 | at one point wednesday , authorities issued an alert for a 0- year - old girl , @entity91 , who they believed was with @entity9 15 | 16 | Summary Generated: 17 | a man awaiting sentencing for murder escaped from a jail in eastern @entity3 wednesday after beating a guard into unconsciousness , taking his keys and uniform and speeding off in his suv 18 | @entity9 , who has a history of escape attempts , fled from the @entity12 in @entity13 at about 0a.m. he somehow escaped from his cell , hid inside the facility , then beat and choked the guard who was making rounds , said @entity13 sheriff @entity18 19 | @entity9 , a 0- year - old from @entity13 , is considered armed and dangerous , the sheriff said -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.77.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity1 's @entity0 good news for all the struggling low - paid pros who made it to the masters 3 | the green jackets took pity on them by announcing a 0per cent increase in prizemoney for this year 's tournament 4 | the winner 's share of the $ 10million pot worked out at # 1.23 m in our currency 5 | anyone who made the cut was guaranteed # 17,000 6 | @entity19 collected # 1.23 million for winning the masters - as well as the coveted green jacket @entity23 's @entity22 @entity24 improved on his previous best masters finish by shooting a second straight 0for a share of sixth 7 | wearing a loud purple number , @entity24 reflected on a missed chance 8 | ` the way i 've played at the weekend was a highlight , ' he said 9 | ` it was about the missed shots on thursday and friday 10 | i left myself too much work to do 11 | ' @entity24 was dressed all in purple on sunday for his final round at @entity38 no @entity39 @entity40 have had people positioned on four holes this week taking note of everything -- what club each player uses from the tee 12 | the shape of shots , the type of shots played to the greens and whether players tee off from the left side of the tee or the right 13 | all interesting info before considering any course changes in future 14 | patrons watch the action on the sixth green at the @entity40 as @entity63 plays a shot hottest ticket in town what was it worth to watch @entity69 and @entity70 go head to head for the first time in the final round of a major ? one of the plethora of touts outside the grounds quoted me $ 4,000 for a pair of tickets 15 | @entity81 duly deliverd with a wonderful 0with @entity69 carding a 0 16 | imagine what it would cost if they were paired together in the final group ? @entity69 and @entity81 were paired together for the final round at @entity38 on sunday @entity88 's @entity87 @entity63 opted for an all - black outfit on day four in an unusual bid to try and improve his performance 17 | ` i like to wear dark colors on sunday , ' he said 18 | 19 | Summary Generated: 20 | the green jackets took pity on them by announcing a 0per cent increase in prizemoney for this year 's tournament 21 | @entity19 collected # 1.23 million for winning the masters - as well as the coveted green jacket @entity23 's @entity22 @entity24 improved on his previous best masters finish by shooting a second straight 0for a share of sixth 22 | ' @entity24 was dressed all in purple on sunday for his final round at @entity38 no @entity39 @entity40 have had people positioned on four holes this week taking note of everything -- what club each player uses from the tee -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.78.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | a quokka was the innocent victim of a cruel act by two @entity4 tourists who tried to set the @entity6 animal alight 3 | the two men allegedly ignited an aerosol spray with a lighter causing a large flame to make contact with a quokka on @entity12 off @entity13 in @entity6 on april 0 4 | the lucky little critter survived the reckless incident but was singed by the flame 5 | two @entity4 male tourists allegedly ignited an aerosol spray with a lighter causing a large flame to make contact with a quokka on @entity12 off @entity13 in @entity6 on april 0detectives went to @entity12 on saturday and questioned the two men and also seized video evidence of the careless act 6 | both men aged 0and 0, and both currently living in @entity25 , were evicted from the island 7 | they have each been charged with animal cruelty and will appear in @entity28 on april 0 8 | a small marsupial the size of a domestic cat @entity32 and mainly nocturnal @entity33 can be found on some small islands off the @entity6 coast in particular off @entity12 off @entity13 and @entity36 near @entity37 the lucky little critter survived the reckless incident but was singed by the flame and the men were charged 9 | 10 | Summary Generated: 11 | a quokka was the innocent victim of a cruel act by two @entity4 tourists who tried to set the @entity6 animal alight 12 | the two men allegedly ignited an aerosol spray with a lighter causing a large flame to make contact with a quokka on @entity12 off @entity13 in @entity6 on april 0 13 | two @entity4 male tourists allegedly ignited an aerosol spray with a lighter causing a large flame to make contact with a quokka on @entity12 off @entity13 in @entity6 on april 0detectives went to @entity12 on saturday and questioned the two men and also seized video evidence of the careless act -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.79.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity0 sprang up and pumped the air with his fist 3 | all of a sudden , there was a little extra bounce in his box - fresh training shoes and a fire in his belly burned a little more fiercely 4 | as a @entity9 player and coach , @entity0 has fought hard across the capital with @entity12 over the years but through the first - half at @entity16 , his @entity14 team struggled to match their illustrious opponents 5 | they backed off and defended , and offered a little too much respect to the team with the best form in the @entity23 since the turn of the year 6 | @entity0 applauds fans after his @entity14 side were narrowly beaten by @entity12 at @entity16 @entity12 have been irresistible since they improved at the back and supplied a stronger base for the flair of their many attacking stars to perform upon 7 | @entity32 and @entity33 , bought for a total of more than # 70million , combined to open the scoring 8 | what could @entity14 do with that sort of money ? @entity32 and @entity33 swaggered down the tunnel for the start of the second - half , deep in conversation , planning more damage but @entity14 stirred , found an equaliser and were able to add urgency to their game 9 | @entity0 sprang up and threw a punch of delight into the air on the touchline 10 | his team were back in the contest and they contributed to a thrilling @entity55 semi-final 11 | it was their first since 0, so it would have been a shame to go home without a fight 12 | as for @entity0 , this must have felt good 13 | he has been away from the cut - and - thrust of football 's elite since he was sacked by @entity63 , but here he detected an @entity55 final as @entity65 was unable to keep out a deflected volley from @entity67 14 | the @entity14 boss won the @entity55 with @entity9 in 0, a game he considers a defining moment in the history of the @entity73 club 15 | @entity14 's @entity67 -lrb- bottom right -rrb- celebrates after scoring a shock equaliser against @entity12 but @entity77 's goalkeeping error enabled @entity12 to regain the lead in extra time @entity0 consoles his dejected keeper following the full - time whistle at @entity16 they barely looked back and were tightening their grip on a fourth @entity23 title as @entity14 took @entity12 in extra-time 16 | for all their quality , @entity87 's team still have vulnerabilities 17 | @entity0 , having learned much at the shoulder of @entity91 , will have been aware of that 18 | he will have been disappointed with the first - half display but hugely proud of their response and the desire they showed 19 | in the end , @entity14 were unable to wreck @entity12 's defence of the trophy or @entity87 's drive towards becoming only the second manager in history to win it six times , after @entity106 with @entity107 , all prior to 0 20 | but , as @entity0 goes back to the championship and a home game against @entity110 , he will take strength from this display and use it to inspire his return to the top - flight 21 | despite the defeat , @entity0 will hope the performance will inspire a @entity23 return 22 | 23 | Summary Generated: 24 | @entity0 sprang up and pumped the air with his fist 25 | as a @entity9 player and coach , @entity0 has fought hard across the capital with @entity12 over the years but through the first - half at @entity16 , his @entity14 team struggled to match their illustrious opponents 26 | @entity0 applauds fans after his @entity14 side were narrowly beaten by @entity12 at @entity16 @entity12 have been irresistible since they improved at the back and supplied a stronger base for the flair of their many attacking stars to perform upon -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.80.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity0 has urged @entity1 to turn @entity2 back into ' @entity3 ' and believes an @entity6 semi-final victory over @entity7 on sunday would help his players develop a stronger winning mentality 3 | @entity0 is looking to lead @entity1 to an eighth @entity6 victory and his first piece of silverware since replacing @entity13 as manager in 0 4 | and the @entity15 believes that while trophy success is imperative for any @entity1 team , success this season could pave the way for many more trips to @entity2 in the future 5 | @entity0 leads @entity1 for the first time at @entity2 since arriving at the club in 0@entity1 's last trophy success came in 0in the @entity26 under @entity13 @entity0 wants @entity1 to reclaim the form that led @entity2 being called ' @entity3 ' by supporters ' the history of the competition is set here at @entity1 , with the great victories they 've had in the past , ' @entity0 said in an interview with @entity34 6 | ' and this is a club that is based around winning trophies 7 | ' @entity2 was somewhere that used to be known as ' @entity3 ' 8 | @entity1 used to visit @entity2 so much it was a regular occurrence for them 9 | ' we have some gifted young players who we want to springboard their careers by allowing them to feel the mentality of winning and that would really help us 10 | ' the 0- year - old @entity0 also spoke of his eagerness to claim his first piece of silverware at @entity1 11 | he took the side to brink of winning the @entity50 for the first time last season but while @entity1 have undoubtedly progressed under his guidance , their last trophy win was the @entity26 in 0under @entity13 12 | ' i want to be in the game for a long time , and be renowned as someone who is up there at the elite level and looking to win trophies , ' @entity0 said 13 | ' -lrb- the @entity6 -rrb- is synonymous throughout the world 14 | it 's the real competition in domestic football that the players love to win 15 | 16 | Summary Generated: 17 | @entity0 has urged @entity1 to turn @entity2 back into ' @entity3 ' and believes an @entity6 semi-final victory over @entity7 on sunday would help his players develop a stronger winning mentality 18 | @entity0 is looking to lead @entity1 to an eighth @entity6 victory and his first piece of silverware since replacing @entity13 as manager in 0 19 | @entity0 leads @entity1 for the first time at @entity2 since arriving at the club in 0@entity1 's last trophy success came in 0in the @entity26 under @entity13 @entity0 wants @entity1 to reclaim the form that led @entity2 being called ' @entity3 ' by supporters ' the history of the competition is set here at @entity1 , with the great victories they 've had in the past , ' @entity0 said in an interview with @entity34 -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.83.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | a @entity1 marathon runner stopped mid-race to ask his girlfriend to marry him in an incredibly heart - warming video 3 | @entity4 was filmed approaching the spectator 's barriers at a section of the 0- mile course near @entity9 by his girlfriend 's father @entity10 4 | the 0- year - old , who moments before carefully removed a ring box from a bag around his waist without his girlfriend seeing , is captured standing before her stretching his muscles 5 | @entity4 stretches his muscles in front of the spectator 's barriers at the @entity20 biding his time while masking the slight smirk on his face , @entity4 lunges into another stretch -- one that has him facing his girlfriend on one knee -- and reveals the ring box from behind his back 6 | his girlfriend , @entity29 appears speechless by the sudden gesture and stands back in shock as @entity4 beams up at her 7 | cheers sound from the people standing by watching and runners can be seen clapping in approval as they jog past the couple 8 | getting to his feet , @entity4 then presents @entity29 with her ring and seals the deal with a kiss and a cuddle 9 | while stretching the 0- year - old gets down on one knee and suddenly produces a ring from behind his back he then has a sip of water and after saying his goodbye 's heads back into the pack of runners and carries on with his race 10 | talking to @entity51 , @entity4 said : ' i wanted to propose for a while now but wanted it to be somewhere extra special where there would be hundreds of people in the same area -- plus somewhere she could n't escape 11 | ' after the marathon i met my fiancee and family at the mall and cuddled and celebrated a little bit until my legs turned to rock and i had to lay on the floor 12 | ' our anniversary is on april 0, so proposing so close to the day and in front of my family and hers was daunting but also amazing -- my happiest day so far 13 | 14 | Summary Generated: 15 | a @entity1 marathon runner stopped mid-race to ask his girlfriend to marry him in an incredibly heart - warming video 16 | @entity4 was filmed approaching the spectator 's barriers at a section of the 0- mile course near @entity9 by his girlfriend 's father @entity10 17 | @entity4 stretches his muscles in front of the spectator 's barriers at the @entity20 biding his time while masking the slight smirk on his face , @entity4 lunges into another stretch -- one that has him facing his girlfriend on one knee -- and reveals the ring box from behind his back -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.84.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity0 has been cleared legally after 11 1/2 years in court 3 | his reputation remains tainted in the mind of many baseball fans 4 | a federal court of appeals threw out the career home run leader 's obstruction of justice conviction on wednesday , ruling 0- 0that his meandering answer before a grand jury in 0was not material to the government 's investigation into illegal steroids distribution 5 | ' today 's news is something that i have long hoped for , ' @entity0 said in a statement 6 | overturned : in this april 0, 0, file photo , former baseball player @entity0 leaves federal court in @entity22 , after being found guilty of one count of obstruction of justice on april 0, 0, reversed the sole conviction against baseball slugger @entity0 , pictured in 0, and said he could not be tried again on an obstruction of justice charge that resulted from a steroids probe ' i am humbled and truly thankful for the outcome as well as the opportunity our judicial system affords to all individuals to seek justice 7 | ' now 0, @entity0 said ' i am excited about what the future holds for me as i embark on the next chapter 8 | ' bonds broke @entity40 's long - standing career record of 0homers in 0, finished that season with 0and was indicted that december for his testimony before a grand jury investigating the @entity45 , when he answered a question about injections by saying he was ' a celebrity child 9 | ' he was convicted of the obstruction charge in 0, and a three - judge panel of the 9th @entity52 unanimously upheld the conviction in 0 10 | 11 | Summary Generated: 12 | @entity0 has been cleared legally after 11 1/2 years in court 13 | a federal court of appeals threw out the career home run leader 's obstruction of justice conviction on wednesday , ruling 0- 0that his meandering answer before a grand jury in 0was not material to the government 's investigation into illegal steroids distribution 14 | overturned : in this april 0, 0, file photo , former baseball player @entity0 leaves federal court in @entity22 , after being found guilty of one count of obstruction of justice on april 0, 0, reversed the sole conviction against baseball slugger @entity0 , pictured in 0, and said he could not be tried again on an obstruction of justice charge that resulted from a steroids probe ' i am humbled and truly thankful for the outcome as well as the opportunity our judicial system affords to all individuals to seek justice -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.85.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | the body of @entity1 , naked from the waist down , was discovered in a bathroom at his gated , three - storey # 2.6 million villa in the @entity5 on tuesday afternoon 3 | the @entity7 neighbourhood is home to many of @entity11 's most powerful players , but @entity1 's surname was all that was needed to ensure his entry into that social set 4 | the 0- year - old grandson of @entity16 , once the world 's richest man , @entity1 was an heir to the vast getty oil fortune 5 | lurid early reports of his death and troubled past suggest a new chapter has opened in the tragic history of a family that epitomises , like no other , the saying that money does n't bring you happiness 6 | a string of @entity44 have died from drug overdoses , while another grandson of the family patriarch , @entity47 , never recovered after he became the victim of a notorious and brutal kidnapping 7 | other members of the supremely dysfunctional family became embroiled in decades long lawsuits and divorces , always over money 8 | even @entity1 's father , @entity55 , a supposedly squeaky - clean married philanthropist and classical composer , was mired in scandal when it emerged he had a secret second family 9 | in this latest tragedy , police say a woman called them to @entity1 's home on tuesday , saying that the horror movie buff had suffered a heart attack 10 | investigators say he had been having severe stomach problems and suffered significant bleeding in his rectal area 11 | however , they believe he died of natural causes or an accident 12 | @entity1 's former girlfriend , identified in the @entity74 media as aspiring actress @entity75 , 0, raised the alarm 13 | reportedly she had told him to see a doctor about ` painful bowel movements ' 14 | @entity1 's former girlfriend , identified in the @entity74 media as aspiring actress @entity75 , 0, raised the alarm though investigators do not regard her as a suspect , she allegedly has a history of psychiatric problems and has been arrested a number of times for harassment and disorderly conduct 15 | reports in @entity74 suggest that according to police insiders , officers had previously been called to the house 0times , usually over domestic disturbances 16 | @entity75 and @entity1 were frequently under the influence of drugs when officers visited 17 | then two weeks ago , @entity98 took out a restraining order against her , the @entity7 police said yesterday 18 | at the same time as he took out the order , he said he had a serious medical condition and that doctors had warned him that ` heated arguments can cause my blood pressure to rise dangerously ' , putting him at ` serious risk ' 19 | twelve years ago , when @entity98 was being sued over a disagreement with a former employee , he was portrayed in court by ex-colleagues on a film he directed as a threatening , cocaine - snorting gun nut 20 | educated at the private @entity114 in @entity115 , he later studied at @entity116 and the @entity117 21 | intriguingly , records show he has been prosecuted 0times for unpaid taxes 22 | 23 | Summary Generated: 24 | the body of @entity1 , naked from the waist down , was discovered in a bathroom at his gated , three - storey # 2.6 million villa in the @entity5 on tuesday afternoon 25 | a string of @entity44 have died from drug overdoses , while another grandson of the family patriarch , @entity47 , never recovered after he became the victim of a notorious and brutal kidnapping 26 | other members of the supremely dysfunctional family became embroiled in decades long lawsuits and divorces , always over money -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.86.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity0 won gold in the 0metres individual medley at the @entity3 to ensure qualification for the @entity5 this summer 3 | @entity0 's time of two minutes 09:51 seconds was the fastest recorded in the world this year and came comfortably inside the @entity5 qualification mark of 2:10:20 4 | @entity9 took the silver medal with a time of 2:11:65 and @entity12 claimed bronze in 2:13:30 5 | @entity0 celebrates with second - placed @entity9 -lrb- left -rrb- and third - placed @entity12 @entity0 , who is the reigning @entity14 champion , was short of her 2:08.21 personal best - a @entity16 record - but said making the team for @entity18 was her main focus 6 | ' i 'm chuffed , the -lrb- qualifying -rrb- times are a massive challenge but it means everyone has to step up and race world class times , ' @entity0 said 7 | ' i 'm really just happy to have made the team 8 | i 'm happy with that time , i just wanted to go under 2.10 9 | ' i would have ideally liked to have been closer to my personal best but sometimes you 're not on your best form 10 | to get the qualifying time was my main aim 11 | ' @entity0 's time of two minutes 09:51 seconds was the fastest recorded in the world this year the performance of @entity0 , who won 100m freestyle gold on tuesday , is particularly impressive considering the heavy disruptions to her winter training programme 12 | the pool at the @entity42 , where the 0- year - old has trained for most of her career , has been closed for six months renovation meaning she and her group have been forced to relocate 0miles away at @entity47 13 | ' it has been hard over the last six months , ' @entity0 added 14 | ' it has been a challenge but everyone has challenges in sport 15 | ' it 's just something we have to deal with 16 | it could n't have been any better and i 'm proud to have adapted to it 17 | ' it 's definitely been tough , we 've all felt that 18 | our pool is open in @entity62 after this though so i 'm looking forward to getting back there and getting some consistency again 19 | ' the 0- year - old claimed two titles despite heavy disruptions to her winter training programme @entity70 followed up her success in the 400m freestyle on wednesday with a dominant performance in the 800m freestyle to win another gold medal 20 | @entity70 clocked 8:21:58 which was enough to seal the title but she missed the @entity5 qualifying time of 8:21:22 21 | the @entity14 and @entity80 champion is still likely to race the 800m in @entity18 , after finishing more than 0seconds clear of @entity82 -lrb- 8:32:19 -rrb- in second and @entity83 in third -lrb- 8:37:99 -rrb- 22 | ' i 'm not too disappointed to miss the qualifying time , ' @entity70 said 23 | ' for myself i would have liked to have gone quicker but to make the worlds qualifying time yesterday i 'm sure i 'll get to swim the event there 24 | ' it felt a bit tough tonight , i did n't really get into it , i felt a bit heavy in my stroke but that happens 25 | ' @entity96 won the women 's 100m backstroke , registering 1:00:03 , while @entity99 took gold in the men 's 200m backstroke with a time of 1:57:58 and @entity104 clinched the men 's 1500m freestyle title in 14:58:25 . 26 | 27 | Summary Generated: 28 | @entity0 won gold in the 0metres individual medley at the @entity3 to ensure qualification for the @entity5 this summer 29 | @entity0 's time of two minutes 09:51 seconds was the fastest recorded in the world this year and came comfortably inside the @entity5 qualification mark of 2:10:20 30 | @entity0 celebrates with second - placed @entity9 -lrb- left -rrb- and third - placed @entity12 @entity0 , who is the reigning @entity14 champion , was short of her 2:08.21 personal best - a @entity16 record - but said making the team for @entity18 was her main focus -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.87.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | the @entity0 could be suffering from shifts in its biochemical balance similar to those believed to have wiped out half of all life 0million years ago 3 | this is according to a @entity9 study that has discovered a catastrophic condition called ' marine photic zone euxinia ' took place in one of the prehistoric oceans 4 | this happens when the sun - lit surface waters of the ocean become devoid of oxygen and are poisoned by hydrogen sulphide 5 | life of the @entity22 met a choking end in a runaway greenhouse climate , heating the seas into warm stagnation , according to a new study 6 | pictured is an artist 's impression of what may have happened in the oceans 0million years ago 7 | the study authors fear that the planet today could suffer similar consequences hydrogen sulphide is a by - product of micro-organisms that live without oxygen and is extremely toxic to most other lifeforms 8 | the study authors fear that the planet today could suffer similar consequences caused by the amount of carbon dioxide being created through the burning of fossil fuels 9 | a team lead by the @entity48 studied fossilised organic molecules taken from sedimentary rocks that originally accumulated on the bottom of the north - eastern @entity52 , which surrounded the continent of @entity54 10 | the rocks are now exposed on the @entity56 , off the coast of @entity58 , @entity59 11 | a team lead by the @entity48 studied fossilised organic molecules taken from sedimentary rocks that originally accumulated on the bottom of the north - eastern @entity52 12 | the rocks are now exposed on the @entity56 , off the coast of @entity58 , @entity59 the experts found signs of bacteria which had suffered severe oxygen depletion and hydrogen sulphide poisoning which would have been caused by massive volcanic rifts in the @entity0 's tectonic plates 13 | ' as tectonic plates shifted to break up @entity54 , huge volcanic rifts would have spewed carbon dioxide into the atmosphere , leading to rising temperatures from the greenhouse effect , ' said professor @entity76 14 | ' the rapid rises in @entity78 would have triggered changes in ocean circulation , acidification and deoxygenation 15 | the @entity52 was the vast global ancestral @entity83 that surrounded the supercontinent @entity54 , during the @entity85 and the early @entity87 eras ' these changes have the potential to disrupt nutrient cycles and alter food chains essential for the survival of marine ecosystems 16 | our data now provides direct evidence that anoxic , and ultimately euxinic , conditions severely affected food chains 17 | ' the same @entity78 rise that led to the oxygen - depleted oceans also led to a mass extinction on land , and ultimately to the ecological takeover by dinosaurs , although the mechanisms are still under study 18 | ' she explained that although the @entity0 was very different during the @entity22 period , the rate of carbon dioxide release from volcanic rifts are similar to those we are experiencing now through the burning of fossil fuels 19 | professor @entity76 added : ' the release of @entity78 was probably at least as rapid as that caused by the burning of fossil fuels today , although the initial concentrations were much higher in the @entity22 20 | 21 | Summary Generated: 22 | this is according to a @entity9 study that has discovered a catastrophic condition called ' marine photic zone euxinia ' took place in one of the prehistoric oceans 23 | this happens when the sun - lit surface waters of the ocean become devoid of oxygen and are poisoned by hydrogen sulphide 24 | the study authors fear that the planet today could suffer similar consequences caused by the amount of carbon dioxide being created through the burning of fossil fuels -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.88.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity0 , 0, to a care home while he went to @entity5 for three weeks but when he returned was not allowed to take her home with him an @entity5 husband who took his elderly @entity9 wife to a care home for respite while he went to @entity12 is threatening to go on hunger strike after she was not allowed to return to him 3 | @entity14 , 0, married wife @entity1 , 0, in @entity12 0years ago and moved back to the @entity9 with her when she became ill with dementia in 0 4 | mr @entity0 , who is his wife 's carer , had taken her to a care home in february while he returned to @entity5 for three weeks 5 | but when he went to pick her up he was told social services had intervened and ruled she could not go home with him 6 | mr @entity0 had threatened to go on hunger strike unless @entity23 hand over his wife , who he says has pleaded to return home to her husband 7 | ' they have used their power against me to keep my wife in a nursing home against her and my wishes , ' said the supermarket security worker 8 | ' i care for her better than anyone and i feel very sad 9 | ' every time i go to the @entity12 i contact social services for respite , but they never told me they were going to keep my wife 10 | ' to me @entity41 is not old , she is a human being and no matter if she is old or young she is my wife 11 | ' i would never neglect @entity41 12 | 13 | Summary Generated: 14 | @entity0 , 0, to a care home while he went to @entity5 for three weeks but when he returned was not allowed to take her home with him an @entity5 husband who took his elderly @entity9 wife to a care home for respite while he went to @entity12 is threatening to go on hunger strike after she was not allowed to return to him 15 | @entity14 , 0, married wife @entity1 , 0, in @entity12 0years ago and moved back to the @entity9 with her when she became ill with dementia in 0 16 | mr @entity0 , who is his wife 's carer , had taken her to a care home in february while he returned to @entity5 for three weeks -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.9.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | old - stager @entity0 scored a try double as @entity1 claimed a 20th successive victory over @entity3 3 | the 0- year - old @entity5 prop had not scored a try for almost 0months but went over twice in the first half to help the @entity9 table toppers to their fifth win in a row 4 | @entity3 's last home win against the @entity5 was a 0- 0@entity14 victory at @entity15 in november 0and their wait goes on after a 0- 0loss 5 | but their depleted side turned in a battling show , trailing 0- 0at half - time , before slipping to only their second defeat in the last eight games 6 | @entity0 broke his try drought with a double for @entity1 in their win over @entity3 on sunday full - back @entity28 followed up his two - try show against @entity31 with another brace with the @entity34 other touchdown from @entity35 7 | @entity0 crossed for his side 's first two tries before @entity38 , the outstanding @entity39 and @entity40 went in to seal a hard - fought win in difficult conditions 8 | @entity3 , already without the suspended @entity43 and @entity44 , were shorn of another six regulars but coach @entity46 was not taking the voluntary option to rest any of his players before saturday 's cup tie at @entity50 9 | his hand was forced with @entity52 , @entity53 , @entity54 , @entity55 and brothers @entity56 and @entity58 all injured 10 | @entity46 handed debuts to under - 0captain @entity61 - cousin of @entity62 - and 0- year - old @entity63 with the back - row pair starting in the bench 11 | apart from injured wingers @entity67 and @entity68 , the @entity5 were also missing @entity69 against the club where he started as a junior , @entity71 and @entity72 12 | @entity73 used the strong wind to his advantage from the start with his kick off blowing back to give his side possession 13 | but handling errors by @entity0 and @entity38 gave @entity3 confidence although @entity1 had the first chance to go ahead after 0minutes 14 | @entity82 spilled a pass in the wind with @entity84 pouncing on the loose ball 0metres out but was hauled down by @entity86 15 | the @entity5 did manage to go in front after 0minutes when @entity0 charged over from close range after @entity3 conceded back - to - back penalties with @entity73 tagging on the conversion 16 | but the @entity34 hit back immediately with @entity86 ' side - stepping run sending sub @entity35 over with @entity92 's kick levelling the scores 17 | then @entity28 shot through the @entity1 defence to fire @entity3 into a 0- 0lead 18 | @entity0 struck again to level at 0- 0after being the quickest to react to @entity97 's grubber kick 19 | @entity3 thought they had regained the advantage four minutes before the break when @entity40 failed to gather @entity92 's towering kick in the gale and @entity103 collected the ball to race over 20 | but referee @entity105 ruled @entity103 was offside before he was forced to hold up play when an advertising hoarding blew onto the pitch 21 | the wind then came to the @entity5 aid with kicks by @entity112 and @entity113 held back by the conditions for @entity38 to cross in the corner and make it 0- 0at half - time 22 | @entity38 looked suspiciously offside for his try and it had been a valiant effort by the @entity34 before the break 23 | 24 | Summary Generated: 25 | old - stager @entity0 scored a try double as @entity1 claimed a 20th successive victory over @entity3 26 | the 0- year - old @entity5 prop had not scored a try for almost 0months but went over twice in the first half to help the @entity9 table toppers to their fifth win in a row 27 | @entity3 's last home win against the @entity5 was a 0- 0@entity14 victory at @entity15 in november 0and their wait goes on after a 0- 0loss -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.90.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | a 0- year - old boy who hanged himself five months after his mother lost her battle with cancer would wear her favourite bandana and spray her perfume round the house after she died 3 | @entity7 wanted to remind himself of his mother , @entity8 , following her death from leukaemia 4 | the teenager from @entity12 died in august last year , just four months after seeing his mother succumb to the disease 5 | @entity14 died four months after his mother @entity8 -lrb- pictued together above with his younger brothers -rrb- lost her battle with cancer the teenager from @entity12 wore his mother 's favourite bandana around the house and sprayed her perfume to remind himself of her after she died @entity7 's father , @entity20 -lrb- pictured with his late mother -rrb- said the family had begun recovering from the loss and were planning their future an inquest into his death heard how @entity7 had been settling in well after returning to school following his mother 's death 6 | months later , while his grandmother was looking after him , he stayed home while she took his younger brothers out , asking her to bring him back chicken nuggets as a lunchtime treat 7 | when @entity35 returned she was horrified to find her grandson had died 8 | coroner @entity37 said the teenager had likely not intended to take his life 9 | ' she could not believe what was seeing 10 | she thought he was messing about because that was the kind of thing he did , ' he said at an inquest 11 | ' it took her a while to take in what she was looking at 12 | ' it was more likely the case the teenager was trying to play a prank on his siblings and had not anticipated the consequences , he added 13 | 14 | Summary Generated: 15 | @entity7 wanted to remind himself of his mother , @entity8 , following her death from leukaemia 16 | the teenager from @entity12 died in august last year , just four months after seeing his mother succumb to the disease 17 | @entity14 died four months after his mother @entity8 -lrb- pictued together above with his younger brothers -rrb- lost her battle with cancer the teenager from @entity12 wore his mother 's favourite bandana around the house and sprayed her perfume to remind himself of her after she died @entity7 's father , @entity20 -lrb- pictured with his late mother -rrb- said the family had begun recovering from the loss and were planning their future an inquest into his death heard how @entity7 had been settling in well after returning to school following his mother 's death -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.91.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | a mother - of - two lost more than ten stone after she became concerned that her size was causing her to look like a man 3 | @entity4 , 0, piled on the pounds after the birth of her two children , reaching a worrying 20st 3lb 4 | however , the determined slimmer has now shrunk down to a slender 9st 10lb after taking up exercise and swapping starchy meals for smaller portions 5 | @entity4 became so worried that her weight was causing her to look like a man that she went on a dramatic diet that saw her lose half of her body weight @entity4 's weight loss saw her drop an incredible ten dress sizes to slim down to a slinky size eight 6 | before she slimmed down @entity4 's wardrobe was limited to size 0figure - hiding garments , and she was afraid she was losing her femininity 7 | @entity4 who lives in @entity24 , @entity25 , @entity26 , says she turned to masculine clothing as a way of hiding her shape 8 | ' i only wore baggy trousers and flappy shirts when i was fat - i was trying to cover up my body because i was embarrassed 9 | i stopped looking like a woman 10 | ' now i 've slimmed down and i feel confident enough to wear dresses again 11 | i feel healthy and very feminine 12 | ' @entity4 married her husband @entity36 , 0, in 0 13 | after the pair got married they splashed out on a double deep - fat fryer 14 | @entity4 piled on the pounds after giving birth to her two children , as she became heavier she worried that her husband @entity42 would not see her as the ' sexy ' woman he married before her weight loss @entity4 was limited to a wardrobe of size 0clothing she is now a slinky size 0the housewife 's diet consisted mainly of convenience foods like chicken kiev , deep - fried chicken , potato croquettes and burgers 15 | she said : ' we loved pizza , chips and chicken kievs 16 | the deep fat fryer was my favourite thing in the house 17 | ' soon after @entity4 gave birth to her children @entity66 , now 0, and @entity67 , 0, and her weight gain accelerated 18 | eventually she tipped the scales at 20st 3lb and says that she found it increasingly difficult to find clothes to suit her 19 | the turning point came for @entity4 when she struggled to keep up with her children she now takes part in regular exercise including cycling around her local area @entity4 joined @entity77 in secret and lost a stone in her first three weeks ' i tried to take pride in my appearance , but at that size it was impossible to find anything flattering , i ordered all my clothes from catalogues 20 | ' before long i had a wardrobe which could have been owned by a man 21 | 22 | Summary Generated: 23 | a mother - of - two lost more than ten stone after she became concerned that her size was causing her to look like a man 24 | @entity4 , 0, piled on the pounds after the birth of her two children , reaching a worrying 20st 3lb 25 | @entity4 became so worried that her weight was causing her to look like a man that she went on a dramatic diet that saw her lose half of her body weight @entity4 's weight loss saw her drop an incredible ten dress sizes to slim down to a slinky size eight -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.92.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | a man was shot in @entity1 wednesday night as he fled from the scene of an alleged crime 3 | members of the @entity5 claim the man , 0, opened fire in the @entity9 section of the city after they responded to a call from a bar that shots had been fired 4 | when he turned around to do so again he was shot dead 5 | a witness told @entity22 that they saw an officer running with their weapon drawn ' telling everyone to get out of the way 6 | ' the witness said after the officer went around the corner they heard four shots fired , and that later the officer was performing cpr on the suspect 7 | the suspect was taken to a local hospital where they later died 8 | no officers were hurt during the incident . 9 | 10 | Summary Generated: 11 | a man was shot in @entity1 wednesday night as he fled from the scene of an alleged crime 12 | members of the @entity5 claim the man , 0, opened fire in the @entity9 section of the city after they responded to a call from a bar that shots had been fired 13 | when he turned around to do so again he was shot dead -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.93.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity1 's attorney - general has claimed that @entity3 duo @entity2 and @entity4 will be put to death following the rejection of their last ditch legal appeals 3 | the convicted @entity10 drug dealers learned about the ruling after an appeal against their death row sentence was allowed to proceed in @entity15 's state administrative court on monday 4 | the court decided against allowing the pair 's lawyers to challenge @entity1 president @entity20 's decision to deny the two @entity10 clemency 5 | ' no , there shall be no more -lrb- delays -rrb- , ' he said after monday 's verdict 6 | ' this is proof of their tendency to delay ... it 's like toying with law 7 | ' the attorney - general argued clemency was a matter of presidential prerogative only 8 | ' for me it 's enough 9 | it 's finished , ' he said 10 | lawyers for the men now plan to challenge the constitutional court to outline the president 's obligations in clemency 11 | they argue the executions should be stayed pending the new action , to be filed this week 12 | the unusual appeal in the state administrative court was likely the pair 's last legal avenue to save them from the firing squad for their part in the 0@entity3 heroin smuggling bid 13 | @entity67 men @entity2 , 0, and @entity4 , 0, have been awaiting execution on the death island of nusakambangan with seven other prisoners after they were transferred from their home of almost ten years -- @entity74 's notorious @entity73 prison -- in a dramatic show of force last month 14 | no sparing : a judge -lrb- pictured -rrb- in the @entity1 state administrative court -lrb- pictured -rrb- reads out the decision in @entity15 on monday ruling that @entity74 0ringleaders @entity2 and @entity4 will not be allowed to challenge the decision by president @entity20 to deny the @entity10 clemency shackled and handcuffed : @entity2 and @entity4 cut sad figures as they were escorted by four faceless @entity1 police officers across the tarmac after being taken from @entity90 prison in @entity74 to their final destination , @entity92 the federal government has also asked that new legal options be allowed to run their course 15 | foreign minister @entity96 said the government was disappointed by the court verdict 16 | ' both men have undergone extensive rehabilitation and i will continue to make representations to my counterpart , just as @entity10 will continue to use all diplomatic options to seek a stay of execution , ' ms @entity96 said in a statement 17 | ' again , the @entity10 government respectfully requests the president to review their pleas for clemency 18 | ' the court in february rejected their legal challenge for clemency , determining the decrees by president @entity20 were not within its jurisdiction 19 | lawyer for @entity2 and @entity119 last week said they had done their best for their @entity10 clients 20 | 21 | Summary Generated: 22 | @entity1 's attorney - general has claimed that @entity3 duo @entity2 and @entity4 will be put to death following the rejection of their last ditch legal appeals 23 | the convicted @entity10 drug dealers learned about the ruling after an appeal against their death row sentence was allowed to proceed in @entity15 's state administrative court on monday 24 | the court decided against allowing the pair 's lawyers to challenge @entity1 president @entity20 's decision to deny the two @entity10 clemency -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.94.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | she was catapulted into the limelight thanks to her relationship with prince @entity3 3 | but now , as her acting career looks set to take off , @entity4 says she is more than happy being single 4 | ` i 'm a strong , independent woman , ' she says in a new interview to promote her role as @entity9 's new muse 5 | while the dresses were n't so suitable for the red - carpet dos mid-winter , we are loving them for the upcoming spring season teamed with gladiator flats or wedged sandals come night time 6 | and it 's no wonder @entity17 was wearing so much @entity9 after being named the new face of the brand 7 | sadly the black number is n't available to buy , but if you click right , you can bag the dress in blue or white on @entity9 's website -lrb- if they have your size left -rrb- 8 | if you 're out of luck and you 're more of a little black dress lady like @entity17 , see our fab halterneck options below to step into spring for a snip of the price 9 | @entity45 by @entity46 -lrb- now on sale for $ 99.99 ! -rrb- at @entity48 buy now @entity50 @entity49 at @entity51 buy now @entity52 -lrb- now on sale for $ 199.20 ! -rrb- at @entity54 buy now @entity55 at @entity56 buy now it is thought the pressures of becoming part of the @entity60 put a strain on miss @entity4 's relationship with @entity3 -lrb- above -rrb- 10 | she has long dreamed of becoming an actress and wanted to pursue her career freely ` i think as you get older , you find out more and more about yourself and what you like and what you do n't like , ' she adds 11 | the interview follows the release of a short film last month for the fashion house 12 | it features miss @entity4 , 0, dancing round an old court house and @entity75 country garden in a # 1,800 dress 13 | asked if it was ` nice ' being single , she replied : ` it is actually , it is , it is ' miss @entity4 dated prince @entity3 for two years until last april when they broke up , reportedly over a disagreement about the costs of attending @entity3 's friend @entity84 's wedding in @entity85 14 | since then , miss @entity4 , a trained dancer , has been focusing on her acting and modelling career 15 | she has just finished playing @entity88 in @entity89 at the @entity90 , the @entity91 comprehensive which counts @entity93 's son as a pupil 16 | in an interview to promote her role as @entity9 's new muse , trained dancer @entity95 - who also appeared on the front cover of miss @entity97 for the april edition - said : ` i 'm a strong , independent woman ' @entity9 has released a short film featuring @entity95 , 0, dancing round an old court house and @entity75 country garden in a # 1,800 dress -lrb- pictured -rrb- 17 | miss @entity4 dated prince @entity3 for two years until last april the three - night production was put on by @entity108 , a @entity90 - based theatre group which is raising funds for the @entity111 charity , of which @entity3 's sister - in - law , the @entity112 , is patron 18 | 19 | Summary Generated: 20 | she was catapulted into the limelight thanks to her relationship with prince @entity3 21 | but now , as her acting career looks set to take off , @entity4 says she is more than happy being single 22 | ` i 'm a strong , independent woman , ' she says in a new interview to promote her role as @entity9 's new muse -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.95.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | this is the incredible moment a man narrowly missed being burnt alive by a massive fireball which erupted from the pavement 3 | father - of - two @entity4 said he felt lucky to be alive after the 0- foot flames shot out of the manhole just seconds after he had walked over it in a busy street in the @entity12 4 | the 0- year - old had been on his way to his local takeaway when he heard buzzing from the ground just a few feet behind him 5 | flames as high as 15ft tall erupted from a manhole in the @entity12 just moments after a pedestrian had walked over it @entity20 , 0, said he felt lucky to be alive after he narrowly missed being burnt by flames shooting out of the manhole as he turned around he noticed the charred ground and watched on as thick black smoke began billowing from the manhole 6 | the smoke was followed by a huge blast of flame which shot out 0- foot of the ground on the pedestrian walkway 7 | further bursts of flame and thick black plumes of smoke were to follow 8 | despite his shock , the building contractor was able to grab his phone in time to film the terrifying incident 9 | ' had it literally been a few seconds earlier i would have been walking right over it , ' said a shaken mr @entity20 10 | mr @entity20 said he had been walking to his local takeaway when he heard buzzing from the ground just a few feet behind him and noticed the blackened cover as he watched on in shock , thick black smoke began to escape from the manhole in the busy street in @entity48 , @entity49 ' i 'm so lucky i did n't get burned 11 | i think i used up one of my lives right there 12 | ' i 've never seen anything like it , and i have been in the building trade 13 | ' miraculously nobody was hurt in the incident , thanks to mr @entity20 who had evacuated the nearby takeaway 14 | the former gas engineer told the staff to turn off the gas supply and also rang the fire service after the incident in the busy @entity65 , @entity48 , @entity49 15 | 16 | Summary Generated: 17 | this is the incredible moment a man narrowly missed being burnt alive by a massive fireball which erupted from the pavement 18 | father - of - two @entity4 said he felt lucky to be alive after the 0- foot flames shot out of the manhole just seconds after he had walked over it in a busy street in the @entity12 19 | flames as high as 15ft tall erupted from a manhole in the @entity12 just moments after a pedestrian had walked over it @entity20 , 0, said he felt lucky to be alive after he narrowly missed being burnt by flames shooting out of the manhole as he turned around he noticed the charred ground and watched on as thick black smoke began billowing from the manhole -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.96.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity1 duo @entity0 and @entity2 made the most of the rare @entity5 sun with a trip to a theme park on tuesday afternoon 3 | the @entity9 pair donned sunglasses as they enjoyed a relaxing time just days after @entity1 's impressive win against fierce rivals @entity13 4 | it has certainly been a rollercoaster season for the @entity15 , who have emerged in recent weeks as rivals to @entity18 for second place in the @entity20 having been struggling to make the top - four earlier in the campaign 5 | @entity1 goalkeeping duo @entity0 and @entity2 enjoy some fun in the sun @entity24 celebrates as @entity1 continue their push all the way to the end of the season that impressive derby day victory was @entity1 's sixth @entity20 win in succession and caps a remarkable return to form for @entity34 's side 6 | they will inevitably fall short of top spot , but it certainly bodes well for the @entity39 's side ahead of next season 7 | however , it remains to be seen whether @entity24 and @entity2 will be enjoying the rare @entity5 sun or the continuous @entity9 sun next season with their futures less than certain 8 | @entity2 has found his first team chances limited at @entity47 following his arrival on a free transfer @entity24 and @entity2 are put through their paces in @entity1 training ahead of the end of season run in @entity24 speaks with rival striker @entity55 during the @entity47 victory on sunday 9 | 10 | Summary Generated: 11 | @entity1 duo @entity0 and @entity2 made the most of the rare @entity5 sun with a trip to a theme park on tuesday afternoon 12 | the @entity9 pair donned sunglasses as they enjoyed a relaxing time just days after @entity1 's impressive win against fierce rivals @entity13 13 | it has certainly been a rollercoaster season for the @entity15 , who have emerged in recent weeks as rivals to @entity18 for second place in the @entity20 having been struggling to make the top - four earlier in the campaign -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.97.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | @entity0 appears to be edging closer to a move away from the @entity2 as @entity4 director @entity3 has revealed there is a high chance his side 's star player will leave in the summer 3 | the @entity10 target , who scored an emphatic 0goals in 0league games so far this season , has been tipped to join one of @entity17 's big boys after impressing in the @entity18 4 | @entity20 's former international manager @entity19 is said to be in the race to sign the 0- year - old and @entity23 has openly admitted that his side are resigned to losing the @entity26 international 5 | @entity10 target @entity0 looks set to leave @entity4 during the summer transfer window @entity26 international @entity20 has scored 0goals in 0league games so far this season @entity23 , speaking to @entity30 , said : ' the chances are very high that he leaves 6 | if you see what clubs are enquiring about him , they really are the best in @entity17 7 | ' when i talk for @entity4 i would say he is not ready and should continue here for another year 8 | but i am realistic and if i worked at a big @entity42 club , i 'd buy him without question 9 | ' with a heavy heart -lsb- we would let him go -rsb- , because a great player and a great guy leaves 10 | but we are also proud that a boy from the academy is going to make such a step 11 | ' @entity53 , @entity54 and @entity55 are also among the contenders to sign @entity0 12 | @entity0 worked under @entity10 boss @entity19 during @entity59 's successful 0@entity58 campaign 13 | 14 | Summary Generated: 15 | @entity0 appears to be edging closer to a move away from the @entity2 as @entity4 director @entity3 has revealed there is a high chance his side 's star player will leave in the summer 16 | the @entity10 target , who scored an emphatic 0goals in 0league games so far this season , has been tipped to join one of @entity17 's big boys after impressing in the @entity18 17 | @entity10 target @entity0 looks set to leave @entity4 during the summer transfer window @entity26 international @entity20 has scored 0goals in 0league games so far this season @entity23 , speaking to @entity30 , said : ' the chances are very high that he leaves -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.98.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | a shrine created in memory of those killed during the @entity4 crash has revealed the first picture of the hero pilot who tried to break into the plane 's cockpit 3 | staring straight ahead , eyes firmly on the camera , this is the only photograph to have emerged of @entity13 , the pilot of the doomed flight 4 | yet the shrine , which was erected in memory of the staff killed during the tragedy , controversially also includes a picture of co-pilot @entity19 5 | it has since emerged that mr @entity19 had carefully planned the attack using the online pseudonym ` @entity37 ' , according to the @entity39 newspaper @entity38 6 | as the plane plummeted towards ground , mr @entity24 , 0, a father - of - two , tried in vain to save the lives of the 0passengers and five crew members on board 7 | moments before , he had left the cockpit in the hands of his co-pilot in order to use the bathroom 8 | when he returned , the door was locked and co-pilot @entity19 , 0, ignored desperate pleas from his colleague to let him back in 9 | in a desperate attempt to stop the fatal crash , mr @entity24 spent up to five minutes attempting to smash his way into the cockpit using an axe 10 | mr @entity24 used an axe to try to break down the door to the cockpit after @entity19 -lrb- right -rrb- locked him out before accelerating into a mountain all of the 0passengers and five crew members died in the crash 11 | @entity19 , 0, had been plotting the disaster online under the name @entity37 on recordings retrieved from the plane 's black box mr @entity24 can be heard shouting : ` open the goddam door ' in the moments before his death 12 | 13 | Summary Generated: 14 | a shrine created in memory of those killed during the @entity4 crash has revealed the first picture of the hero pilot who tried to break into the plane 's cockpit 15 | staring straight ahead , eyes firmly on the camera , this is the only photograph to have emerged of @entity13 , the pilot of the doomed flight 16 | it has since emerged that mr @entity19 had carefully planned the attack using the online pseudonym ` @entity37 ' , according to the @entity39 newspaper @entity38 -------------------------------------------------------------------------------- /swap-net-summer/generated summaries/system_summary/system.99.txt: -------------------------------------------------------------------------------- 1 | Article: 2 | as part of its commitment to diversity and inclusion , @entity0 has launched a recruitment drive for people with autism 3 | the pilot scheme will begin by recruiting 0people with autism or asperger syndrome to be based at the firm 's @entity13 offices in @entity15 4 | if successful , the scheme could extend to more vacancies worldwide 5 | the pilot scheme will recruit 0people with autism who will be based in @entity0 's @entity13 offices in @entity15 -lrb- pictured -rrb- 6 | @entity0 is running the scheme with support from specialists at @entity25 7 | the plans were announced by @entity27 , corporate vice president or worldwide operations @entity0 is running the scheme with support from @entity25 and the announcement was made on the company 's official blog by @entity27 , corporate vice president of worldwide operations 8 | 9 | Summary Generated: 10 | the pilot scheme will begin by recruiting 0people with autism or asperger syndrome to be based at the firm 's @entity13 offices in @entity15 11 | the pilot scheme will recruit 0people with autism who will be based in @entity0 's @entity13 offices in @entity15 -lrb- pictured -rrb- 12 | the plans were announced by @entity27 , corporate vice president or worldwide operations @entity0 is running the scheme with support from @entity25 and the announcement was made on the company 's official blog by @entity27 , corporate vice president of worldwide operations --------------------------------------------------------------------------------