Full Code of yixinL7/SimCLS for AI

main 1f08d260dce0 cached
15 files
9.8 MB
2.6M tokens
26 symbols
1 requests
Copy disabled (too large) Download .txt
Showing preview only (10,323K chars total). Download the full file to get everything.
Repository: yixinL7/SimCLS
Branch: main
Commit: 1f08d260dce0
Files: 15
Total size: 9.8 MB

Directory structure:
gitextract_hehlrgul/

├── README.md
├── data_utils.py
├── example/
│   ├── 0.json
│   └── README.md
├── main.py
├── model.py
├── output/
│   ├── README.md
│   ├── test.cnndm.ours
│   ├── test.cnndm.reference
│   ├── test.xsum.ours
│   └── test.xsum.reference
├── preprocess.py
├── requirements.txt
├── spec-file.txt
└── utils.py

================================================
FILE CONTENTS
================================================

================================================
FILE: README.md
================================================
# SimCLS: A Simple Framework for Contrastive Learning of Abstractive Summarization (ACL 2021)


## Overview
SimCLS is a conceptually simple while empirically powerful framework for abstractive summarization, which can bridge the gap between the *learning objective* and *evaluation metrics* resulting from the currently dominated sequence-to-sequence learning framework by **formulating text generation as a reference-free evaluation problem} (i.e., quality estimation)** assisted by *contrastive learning*.

As shown below, SimCLS framework consists of for two stages: Candidate Generation and Reference-free evaluation, where Doc, S, Ref} represent the document, generated summary and reference respectively.

<div  align="center">
 <img src="example/intro_simcls.png" width = "550" alt="d" align=center />
</div>




## 1. How to Install

### Requirements
- `python3`
- `conda create --name env --file spec-file.txt`
- `pip3 install -r requirements.txt`
- `compare_mt` -> https://github.com/neulab/compare-mt

### Description of Codes
- `main.py` -> training and evaluation procedure
- `model.py` -> models
- `data_utils.py` -> dataloader
- `utils.py` -> utility functions
- `preprocess.py` -> data preprocessing

### Workspace
Following directories should be created for our experiments.
- `./cache` -> storing model checkpoints
- `./result` -> storing evaluation results

## 2. Preprocessing
We use the following datasets for our experiments.

- CNN/DailyMail -> https://github.com/abisee/cnn-dailymail
- XSum -> https://github.com/EdinburghNLP/XSum

For data preprocessing, please run
```
python preprocess.py --src_dir [path of the raw data] --tgt_dir [output path] --split [train/val/test] --cand_num [number of candidate summaries]
```
`src_dir` should contain the following files (using test split as an example):
- `test.source`
- `test.source.tokenized`
- `test.target`
- `test.target.tokenized`
- `test.out`
- `test.out.tokenized`

Each line of these files should contain a sample. In particular, you should put the candidate summaries for one data sample at neighboring lines in `test.out` and `test.out.tokenized`.

The preprocessing precedure will store the processed data as seperate json files in `tgt_dir`.

We have provided an example file in `./example`.

## 3. How to Run

### Preprocessed Data
You can download the preprocessed data for our experiments on [CNNDM](https://drive.google.com/file/d/1WRvDBWfmC5W_32wNRrNa6lEP75Vx5cut/view?usp=sharing) and [XSum](https://drive.google.com/file/d/1nKx6RT4zNxO4hFy8y3dPbYV-GBu1Si-u/view?usp=sharing).

After donwloading, you should unzip the zip files in this root directory.

### Hyper-parameter Setting
You may specify the hyper-parameters in `main.py`.

To reproduce our results, you could use the original configuration in the file, except that you should make sure that on CNNDM 
`args.max_len=120`, and on XSum `args.max_len = 80`.


### Train
```
python main.py --cuda --gpuid [list of gpuid] -l
```
### Fine-tune
```
python main.py --cuda --gpuid [list of gpuid] -l --model_pt [model path]
```
model path should be a subdirectory in the `./cache` directory, e.g. `cnndm/model.pt` (it shouldn't contain the prefix `./cache/`).
### Evaluate
```
python main.py --cuda --gpuid [single gpu] -e --model_pt [model path]
```
model path should be a subdirectory in the `./cache` directory, e.g. `cnndm/model.pt` (it shouldn't contain the prefix `./cache/`).

## 4. Results

### CNNDM
|          | ROUGE-1 | ROUGE-2 | ROUGE-L |
|----------|---------|---------|---------|
| BART     | 44.39   | 21.21   | 41.28   |
| Ours     | 46.67   | 22.15   | 43.54   |

### XSum
|          | ROUGE-1 | ROUGE-2 | ROUGE-L |
|----------|---------|---------|---------|
| Pegasus  | 47.10   | 24.53   | 39.23   |
| Ours     | 47.61   | 24.57   | 39.44   |

Our model outputs on these datasets can be found in `./output`.

We have also provided the finetuned checkpoints on [CNNDM](https://drive.google.com/file/d/1CSFeZUUVFF4ComY6LgYwBpQJtqMgGllI/view?usp=sharing) and [XSum](https://drive.google.com/file/d/1yx9KhDY0CY8bLdYnQ9XhvfMwxoJ4Fz6N/view?usp=sharing).


================================================
FILE: data_utils.py
================================================
from torch.utils.data import Dataset, DataLoader
import os
import json
import numpy as np
import torch
from functools import partial
import time
from transformers import RobertaTokenizer
import random
import pickle
import copy
import logging
logging.getLogger("transformers.tokenization_utils").setLevel(logging.ERROR)

def to_cuda(batch, gpuid):
    for n in batch:
        if n != "data":
            batch[n] = batch[n].to(gpuid)


def collate_mp(batch, pad_token_id, is_test=False):
    def bert_pad(X, max_len=-1):
        if max_len < 0:
            max_len = max(len(x) for x in X)
        result = []
        for x in X:
            if len(x) < max_len:
                x.extend([pad_token_id] * (max_len - len(x)))
            result.append(x)
        return torch.LongTensor(result)

    src_input_ids = bert_pad([x["src_input_ids"] for x in batch])
    tgt_input_ids = bert_pad([x["tgt_input_ids"] for x in batch])
    candidate_ids = [x["candidate_ids"] for x in batch]
    max_len = max([max([len(c) for c in x]) for x in candidate_ids])
    candidate_ids = [bert_pad(x, max_len) for x in candidate_ids]
    candidate_ids = torch.stack(candidate_ids)
    scores = torch.FloatTensor([x["scores"] for x in batch])
    if is_test:
        data = [x["data"] for x in batch]
    result = {
        "src_input_ids": src_input_ids, 
        "tgt_input_ids": tgt_input_ids,
        "candidate_ids": candidate_ids,
        "scores": scores
        }
    if is_test:
        result["data"] = data
    return result


class ReRankingDataset(Dataset):
    def __init__(self, fdir, model_type, maxlen=-1, is_test=False, total_len=512, is_sorted=True, maxnum=-1, is_untok=True):
        """ data format: article, abstract, [(candidiate_i, score_i)] """
        self.isdir = os.path.isdir(fdir)
        if self.isdir:
            self.fdir = fdir
            self.num = len(os.listdir(fdir))
        else:
            with open(fdir) as f:
                self.files = [x.strip() for x in f]
            self.num = len(self.files)
        self.tok = RobertaTokenizer.from_pretrained(model_type, verbose=False)
        self.maxlen = maxlen
        self.is_test = is_test
        self.pad_token_id = self.tok.pad_token_id
        self.total_len = total_len
        self.cls_token_id = self.tok.cls_token_id
        self.sep_token_id = self.tok.sep_token_id
        self.sorted = is_sorted
        self.maxnum = maxnum
        self.is_untok = is_untok

    def __len__(self):
        return self.num

    def bert_encode(self, x, max_len=-1):
        _ids = self.tok.encode(x, add_special_tokens=False)
        ids = [self.cls_token_id]
        if max_len > 0:
            ids.extend(_ids[:max_len - 2])
        else:
            ids.extend(_ids[:self.total_len - 2])
        ids.append(self.sep_token_id)
        return ids

    def __getitem__(self, idx):
        if self.isdir:
            with open(os.path.join(self.fdir, "%d.json"%idx), "r") as f:
                data = json.load(f)
        else:
            with open(self.files[idx]) as f:
                data = json.load(f)
        if self.is_untok:
            article = data["article_untok"]
        else:
            article = data["article"]
        src_txt = " ".join(article)
        src_input_ids = self.bert_encode(src_txt)
        if self.is_untok:
            abstract = data["abstract_untok"]
        else:
            abstract = data["abstract"]
        tgt_input_ids = self.bert_encode(" ".join(abstract))
        if self.maxnum > 0:
            candidates = data["candidates_untok"][:self.maxnum]
            _candidates = data["candidates"][:self.maxnum]
            data["candidates"] = _candidates
        if self.sorted:
            candidates = sorted(candidates, key=lambda x:x[1], reverse=True)
            _candidates = sorted(_candidates, key=lambda x:x[1], reverse=True)
            data["candidates"] = _candidates
        if not self.is_untok:
            candidates = _candidates
        cand_txt = [" ".join(x[0]) for x in candidates]
        candidate_ids = [self.bert_encode(x, self.maxlen) for x in cand_txt]
        scores = [x[1] for x in candidates]
        result = {
            "src_input_ids": src_input_ids, 
            "tgt_input_ids": tgt_input_ids,
            "candidate_ids": candidate_ids,
            "scores": scores
            }
        if self.is_test:
            result["data"] = data
        return result

================================================
FILE: example/0.json
================================================
{"article": ["club tijuana star juan arango conjured memories luis suarez in his team 's 4-3 defeat by monterrey in the mexican league - but it was not through prodigious scoring .", "the venezuelan icon arango sank his teeth into the shoulder of jesus zavela as his temper flared in the defeat .", ".", "he was not booked by the referee but could face a heavy retrospective ban .", ".", "juan arango -lrb- left -rrb- bites the shoulder of opponent jesus zavela in a moment of madness .", "zavala holds his shoulder after being bitten by arango , in the game zavala 's side won 4-3 in mexico .", "zavala shows the referee the mark on his shoulder after being bittern by arango .", "arango -lrb- right -rrb- earlier scored a magnificent free kick to bring his club tijuana team level against monterrey .", "arango had earlier curled in a magnificent free kick for his team to bring them level after falling 2-0 down early on in the encounter .", "but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness .", "arango spent 10 years playing in europe , spending five seasons each at real mallorca in spain and borussia monchengladbach in germany .", "he has made 121 appearances for venezuela .", "."], "abstract": ["juan arango escaped punishment from the referee for biting jesus zavela .", "he could face a retrospective punishment for the incident .", "arango had earlier scored a free kick in his team 's 4-3 defeat ."], "candidates": [[["juan arango bites jesus zavela in a moment of madness .", "the venezuelan icon was not booked by the referee .", "he could face a heavy retrospective ban .", "arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey .", "but the 34-year-old overshadowed his goal with the bite ."], 0.4339323467230444], [["club tijuana star juan arango bites opponent jesus zavela .", "the venezuelan icon was not booked by the referee but could face a heavy retrospective ban .", "arango had earlier scored a magnificent free kick to bring his team level against monterrey .", "but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness ."], 0.3775824853530682], [["juan arango bit jesus zavela in the shoulder in the mexican league .", "the venezuelan icon could face a heavy retrospective ban .", "arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey .", "but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness ."], 0.3710144927536232], [["juan arango bites jesus zavela in a moment of madness .", "the venezuelan icon was not booked by the referee .", "he could face a heavy retrospective ban .", "arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey ."], 0.49627705627705626], [["club tijuana star juan arango bites jesus zavela in a moment of madness .", "arango 's side lost 4-3 to monterrey in the mexican league .", "the venezuelan icon could face a heavy retrospective ban .", "arangos had earlier scored a magnificent free kick to bring his team level .", "but the 34-year-old overshadowed his goal with the bite ."], 0.42946859903381646], [["the venezuelan icon bit jesus zavela in the mexican league game .", "he was not booked by the referee but could face a heavy retrospective ban .", "arango had earlier curled in a magnificent free kick to bring his club tijuana team level against monterrey .", "but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness ."], 0.3240368963646229], [["club tijuana lost 4-3 to monterrey in the mexican league on saturday .", "juan arango bit jesus zavela in a moment of madness .", "the venezuelan icon could face a heavy retrospective ban .", "arango had earlier scored a magnificent free kick to bring his team level .", "but the 34-year-old overshadowed his goal with the bite ."], 0.4166666666666667], [["club tijuana star juan arango bites jesus zavela in a moment of madness .", "arango 's side lost 4-3 to monterrey in the mexican league .", "the venezuelan icon could face a heavy retrospective ban .", "arangos had earlier scored a magnificent free kick to bring his team level ."], 0.4880970985049748], [["juan arango bit the shoulder of opponent jesus zavela in a moment of madness .", "the venezuelan icon was not booked by the referee but could face a heavy retrospective ban .", "arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey ."], 0.4136062926498932], [["arango bites jesus zavela in a moment of madness .", "the venezuelan icon could face a heavy retrospective ban .", "arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey .", "but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness ."], 0.3611003487020535], [["club tijuana lost 4-3 to monterrey in the mexican league on saturday .", "juan arango bit jesus zavela in a moment of madness .", "the venezuelan icon could face a heavy retrospective ban .", "arango had earlier scored a magnificent free kick to bring his team level ."], 0.4581072935503315], [["juan arango bit the shoulder of opponent jesus zavela in a moment of madness .", "the venezuelan icon was not booked by the referee but could face a heavy retrospective ban .", "arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey ."], 0.4136062926498932], [["club 's star juan arango bit opponent jesus zavela .", "arango could face a heavy retrospective ban for his actions .", "club tijuana lost 4-3 to monterrey in the mexican league .", "arangos earlier scored a magnificent free kick to bring his team level .", "but he overshadowed his goal with the bite as television cameras picked up the moment of madness ."], 0.41002008743944224], [["juan arango bites opponent jesus zavela in a moment of madness .", "the venezuelan icon was not booked by the referee but could face a heavy retrospective ban .", "arango had earlier curled in a magnificent free kick to bring his club tijuana team level against monterrey ."], 0.406816811880103], [["club tijuana 's juan arango bit the shoulder of opponent jesus zavela .", "arango had earlier scored a magnificent free kick for his team to bring them level after falling 2-0 down early on in the encounter .", "the 34-year-old could face a heavy retrospective ban ."], 0.4300671979996875], [["club 's star juan arango bit opponent jesus zavela .", "arango could face a heavy retrospective ban for his actions .", "club tijuana lost 4-3 to monterrey in the mexican league .", "arangos earlier scored a magnificent free kick to bring his team level ."], 0.44950213371266007]], "article_untok": ["club tijuana star juan arango conjured memories luis suarez in his team's 4-3 defeat by monterrey in the mexican league - but it was not through prodigious scoring.", "the venezuelan icon arango sank his teeth into the shoulder of jesus zavela as his temper flared in the defeat.", ".", "he was not booked by the referee but could face a heavy retrospective ban.", ".", "juan arango (left) bites the shoulder of opponent jesus zavela in a moment of madness.", "zavala holds his shoulder after being bitten by arango, in the game zavala's side won 4-3 in mexico.", "zavala shows the referee the mark on his shoulder after being bittern by arango.", "arango (right) earlier scored a magnificent free kick to bring his club tijuana team level against monterrey.", "arango had earlier curled in a magnificent free kick for his team to bring them level after falling 2-0 down early on in the encounter.", "but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness.", "arango spent 10 years playing in europe, spending five seasons each at real mallorca in spain and borussia monchengladbach in germany.", "he has made 121 appearances for venezuela.", "."], "abstract_untok": ["juan arango escaped punishment from the referee for biting jesus zavela.", "he could face a retrospective punishment for the incident.", "arango had earlier scored a free kick in his team's 4-3 defeat\u00a0."], "candidates_untok": [[["juan arango bites jesus zavela in a moment of madness.", "the venezuelan icon was not booked by the referee.", "he could face a heavy retrospective ban.", "arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey.", "but the 34-year-old overshadowed his goal with the bite."], 0.4339323467230444], [["club tijuana star juan arango bites opponent jesus zavela.", "the venezuelan icon was not booked by the referee but could face a heavy retrospective ban.", "arango had earlier scored a magnificent free kick to bring his team level against monterrey.", "but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness."], 0.3775824853530682], [["juan arango bit jesus zavela in the shoulder in the mexican league.", "the venezuelan icon could face a heavy retrospective ban.", "arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey.", "but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness."], 0.3710144927536232], [["juan arango bites jesus zavela in a moment of madness.", "the venezuelan icon was not booked by the referee.", "he could face a heavy retrospective ban.", "arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey."], 0.49627705627705626], [["club tijuana star juan arango bites jesus zavela in a moment of madness.", "arango's side lost 4-3 to monterrey in the mexican league.", "the venezuelan icon could face a heavy retrospective ban.", "arangos had earlier scored a magnificent free kick to bring his team level.", "but the 34-year-old overshadowed his goal with the bite."], 0.42946859903381646], [["the venezuelan icon bit jesus zavela in the mexican league game.", "he was not booked by the referee but could face a heavy retrospective ban.", "arango had earlier curled in a magnificent free kick to bring his club tijuana team level against monterrey.", "but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness."], 0.3240368963646229], [["club tijuana lost 4-3 to monterrey in the mexican league on saturday.", "juan arango bit jesus zavela in a moment of madness.", "the venezuelan icon could face a heavy retrospective ban.", "arango had earlier scored a magnificent free kick to bring his team level.", "but the 34-year-old overshadowed his goal with the bite."], 0.4166666666666667], [["club tijuana star juan arango bites jesus zavela in a moment of madness.", "arango's side lost 4-3 to monterrey in the mexican league.", "the venezuelan icon could face a heavy retrospective ban.", "arangos had earlier scored a magnificent free kick to bring his team level."], 0.4880970985049748], [["juan arango bit the shoulder of opponent jesus zavela in a moment of madness.", "the venezuelan icon was not booked by the referee but could face a heavy retrospective ban.", "arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey."], 0.4136062926498932], [["arango bites jesus zavela in a moment of madness.", "the venezuelan icon could face a heavy retrospective ban.", "arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey.", "but the 34-year-old overshadowed his goal with the bite as television cameras picked up the moment of madness."], 0.3611003487020535], [["club tijuana lost 4-3 to monterrey in the mexican league on saturday.", "juan arango bit jesus zavela in a moment of madness.", "the venezuelan icon could face a heavy retrospective ban.", "arango had earlier scored a magnificent free kick to bring his team level."], 0.4581072935503315], [["juan arango bit the shoulder of opponent jesus zavela in a moment of madness.", "the venezuelan icon was not booked by the referee but could face a heavy retrospective ban.", "arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey."], 0.4136062926498932], [["club's star juan arango bit opponent jesus zavela.", "arango could face a heavy retrospective ban for his actions.", "club tijuana lost 4-3 to monterrey in the mexican league.", "arangos earlier scored a magnificent free kick to bring his team level.", "but he overshadowed his goal with the bite as television cameras picked up the moment of madness."], 0.41002008743944224], [["juan arango bites opponent jesus zavela in a moment of madness.", "the venezuelan icon was not booked by the referee but could face a heavy retrospective ban.", "arango had earlier curled in a magnificent free kick to bring his club tijuana team level against monterrey."], 0.406816811880103], [["club tijuana's juan arango bit the shoulder of opponent jesus zavela.", "arango had earlier scored a magnificent free kick for his team to bring them level after falling 2-0 down early on in the encounter.", "the 34-year-old could face a heavy retrospective ban."], 0.4300671979996875], [["club's star juan arango bit opponent jesus zavela.", "arango could face a heavy retrospective ban for his actions.", "club tijuana lost 4-3 to monterrey in the mexican league.", "arangos earlier scored a magnificent free kick to bring his team level."], 0.44950213371266007]]}

================================================
FILE: example/README.md
================================================
Data Example


================================================
FILE: main.py
================================================
import torch
import torch.nn as nn
import torch.nn.functional as F
import torch.optim as optim
import argparse
import model
import pickle
import time
import numpy as np
import os
import json
import random
from compare_mt.rouge.rouge_scorer import RougeScorer
from transformers import RobertaModel, RobertaTokenizer
from utils import Recorder
from data_utils import to_cuda, collate_mp, ReRankingDataset
from torch.utils.data import DataLoader
import torch.distributed as dist
import torch.multiprocessing as mp
from torch.nn.parallel import DistributedDataParallel as DDP
from functools import partial
from model import RankingLoss
import math
import logging
logging.getLogger("transformers.tokenization_utils").setLevel(logging.ERROR)
logging.getLogger("transformers.tokenization_utils_base").setLevel(logging.ERROR)
logging.getLogger("transformers.tokenization_utils_fast").setLevel(logging.ERROR)


def base_setting(args):
    args.batch_size = getattr(args, 'batch_size', 1)
    args.epoch = getattr(args, 'epoch', 5)
    args.report_freq = getattr(args, "report_freq", 100)
    args.accumulate_step = getattr(args, "accumulate_step", 12)
    args.margin = getattr(args, "margin", 0.01)
    args.gold_margin = getattr(args, "gold_margin", 0)
    args.model_type = getattr(args, "model_type", 'roberta-base')
    args.warmup_steps = getattr(args, "warmup_steps", 10000)
    args.grad_norm = getattr(args, "grad_norm", 0)
    args.seed = getattr(args, "seed", 970903)
    args.no_gold = getattr(args, "no_gold", False)
    args.pretrained = getattr(args, "pretrained", None)
    args.max_lr = getattr(args, "max_lr", 2e-3)
    args.scale = getattr(args, "scale", 1)
    args.datatype = getattr(args, "datatype", "diverse")
    args.dataset = getattr(args, "dataset", "xsum")
    args.max_len = getattr(args, "max_len", 120)  # 120 for cnndm and 80 for xsum
    args.max_num = getattr(args, "max_num", 16)
    args.cand_weight = getattr(args, "cand_weight", 1)
    args.gold_weight = getattr(args, "gold_weight", 1)


def evaluation(args):
    # load data
    base_setting(args)
    tok = RobertaTokenizer.from_pretrained(args.model_type)
    collate_fn = partial(collate_mp, pad_token_id=tok.pad_token_id, is_test=True)
    test_set = ReRankingDataset(f"./{args.dataset}/{args.datatype}/test", args.model_type, is_test=True, maxlen=512, is_sorted=False, maxnum=args.max_num, is_untok=True)
    dataloader = DataLoader(test_set, batch_size=8, shuffle=False, num_workers=4, collate_fn=collate_fn)
    # build models
    model_path = args.pretrained if args.pretrained is not None else args.model_type
    scorer = model.ReRanker(model_path, tok.pad_token_id)
    if args.cuda:
        scorer = scorer.cuda()
    scorer.load_state_dict(torch.load(os.path.join("./cache", args.model_pt), map_location=f'cuda:{args.gpuid[0]}'))
    scorer.eval()
    model_name = args.model_pt.split("/")[0]

    def mkdir(path):
        if not os.path.exists(path):
            os.mkdir(path)

    print(model_name)
    mkdir("./result/%s"%model_name)
    mkdir("./result/%s/reference"%model_name)
    mkdir("./result/%s/candidate"%model_name)
    rouge_scorer = RougeScorer(['rouge1', 'rouge2', 'rougeLsum'], use_stemmer=True)
    rouge1, rouge2, rougeLsum = 0, 0, 0
    cnt = 0
    acc = 0
    scores = []
    with torch.no_grad():
        for (i, batch) in enumerate(dataloader):
            if args.cuda:
                to_cuda(batch, args.gpuid[0])
            samples = batch["data"]
            output = scorer(batch["src_input_ids"], batch["candidate_ids"], batch["tgt_input_ids"])
            similarity, gold_similarity = output['score'], output['summary_score']
            similarity = similarity.cpu().numpy()
            if i % 100 == 0:
                print(f"test similarity: {similarity[0]}")
            max_ids = similarity.argmax(1)
            scores.extend(similarity.tolist())
            acc += (max_ids == batch["scores"].cpu().numpy().argmax(1)).sum()
            for j in range(similarity.shape[0]):
                sample = samples[j]
                sents = sample["candidates"][max_ids[j]][0]
                score = rouge_scorer.score("\n".join(sample["abstract"]), "\n".join(sents))
                rouge1 += score["rouge1"].fmeasure
                rouge2 += score["rouge2"].fmeasure
                rougeLsum += score["rougeLsum"].fmeasure
                with open("./result/%s/candidate/%d.dec"%(model_name, cnt), "w") as f:
                    for s in sents:
                        print(s, file=f)
                with open("./result/%s/reference/%d.ref"%(model_name, cnt), "w") as f:
                    for s in sample["abstract"]:
                        print(s, file=f)
                cnt += 1
    rouge1 = rouge1 / cnt
    rouge2 = rouge2 / cnt
    rougeLsum = rougeLsum / cnt
    print(f"accuracy: {acc / cnt}")
    print("rouge1: %.6f, rouge2: %.6f, rougeL: %.6f"%(rouge1, rouge2, rougeLsum))


def test(dataloader, scorer, args, gpuid):
    scorer.eval()
    loss = 0
    cnt = 0
    rouge_scorer = RougeScorer(['rouge1', 'rouge2', 'rougeLsum'], use_stemmer=True)
    rouge1, rouge2, rougeLsum = 0, 0, 0
    with torch.no_grad():
        for (i, batch) in enumerate(dataloader):
            if args.cuda:
                to_cuda(batch, gpuid)
            samples = batch["data"]
            output = scorer(batch["src_input_ids"], batch["candidate_ids"], batch["tgt_input_ids"])
            similarity, gold_similarity = output['score'], output['summary_score']
            similarity = similarity.cpu().numpy()
            if i % 1000 == 0:
                print(f"test similarity: {similarity[0]}")
            max_ids = similarity.argmax(1)
            for j in range(similarity.shape[0]):
                cnt += 1
                sample = samples[j]
                sents = sample["candidates"][max_ids[j]][0]
                score = rouge_scorer.score("\n".join(sample["abstract"]), "\n".join(sents))
                rouge1 += score["rouge1"].fmeasure
                rouge2 += score["rouge2"].fmeasure
                rougeLsum += score["rougeLsum"].fmeasure
    rouge1 = rouge1 / cnt
    rouge2 = rouge2 / cnt
    rougeLsum = rougeLsum / cnt
    scorer.train()
    loss = 1 - ((rouge1 + rouge2 + rougeLsum) / 3)
    print(f"rouge-1: {rouge1}, rouge-2: {rouge2}, rouge-L: {rougeLsum}")
    
    if len(args.gpuid) > 1:
        loss = torch.FloatTensor([loss]).to(gpuid)
        dist.all_reduce(loss, op=dist.reduce_op.SUM)
        loss = loss.item() / len(args.gpuid)
    return loss


def run(rank, args):
    base_setting(args)
    torch.manual_seed(args.seed)
    torch.cuda.manual_seed_all(args.seed)
    np.random.seed(args.seed)
    random.seed(args.seed)
    gpuid = args.gpuid[rank]
    is_master = rank == 0
    is_mp = len(args.gpuid) > 1
    world_size = len(args.gpuid)
    if is_master:
        id = len(os.listdir("./cache"))
        recorder = Recorder(id, args.log)
    tok = RobertaTokenizer.from_pretrained(args.model_type)
    collate_fn = partial(collate_mp, pad_token_id=tok.pad_token_id, is_test=False)
    collate_fn_val = partial(collate_mp, pad_token_id=tok.pad_token_id, is_test=True)
    train_set = ReRankingDataset(f"./{args.dataset}/{args.datatype}/train", args.model_type, maxlen=args.max_len, maxnum=args.max_num)
    val_set = ReRankingDataset(f"./{args.dataset}/{args.datatype}/val", args.model_type, is_test=True, maxlen=512, is_sorted=False, maxnum=args.max_num)
    if is_mp:
        train_sampler = torch.utils.data.distributed.DistributedSampler(
    	 train_set, num_replicas=world_size, rank=rank, shuffle=True)
        dataloader = DataLoader(train_set, batch_size=args.batch_size, shuffle=False, num_workers=4, collate_fn=collate_fn, sampler=train_sampler)
        val_sampler = torch.utils.data.distributed.DistributedSampler(
    	 val_set, num_replicas=world_size, rank=rank)
        val_dataloader = DataLoader(val_set, batch_size=8, shuffle=False, num_workers=4, collate_fn=collate_fn_val, sampler=val_sampler)
    else:
        dataloader = DataLoader(train_set, batch_size=args.batch_size, shuffle=True, num_workers=4, collate_fn=collate_fn)
        val_dataloader = DataLoader(val_set, batch_size=8, shuffle=False, num_workers=4, collate_fn=collate_fn_val)
    # build models
    model_path = args.pretrained if args.pretrained is not None else args.model_type
    scorer = model.ReRanker(model_path, tok.pad_token_id)
    if len(args.model_pt) > 0:
        scorer.load_state_dict(torch.load(os.path.join("./cache", args.model_pt), map_location=f'cuda:{gpuid}'))
    if args.cuda:
        if len(args.gpuid) == 1:
            scorer = scorer.cuda()
        else:
            dist.init_process_group("nccl", rank=rank, world_size=world_size)
            scorer = nn.parallel.DistributedDataParallel(scorer.to(gpuid), [gpuid], find_unused_parameters=True)
    scorer.train()
    init_lr = args.max_lr / args.warmup_steps
    s_optimizer = optim.Adam(scorer.parameters(), lr=init_lr)
    if is_master:
        recorder.write_config(args, [scorer], __file__)
    minimum_loss = 100
    all_step_cnt = 0
    # start training
    for epoch in range(args.epoch):
        s_optimizer.zero_grad()
        step_cnt = 0
        sim_step = 0
        avg_loss = 0
        for (i, batch) in enumerate(dataloader):
            if args.cuda:
                to_cuda(batch, gpuid)
            step_cnt += 1
            output = scorer(batch["src_input_ids"], batch["candidate_ids"], batch["tgt_input_ids"])
            similarity, gold_similarity = output['score'], output['summary_score']
            loss = args.scale * RankingLoss(similarity, gold_similarity, args.margin, args.gold_margin, args.gold_weight)
            loss = loss / args.accumulate_step
            avg_loss += loss.item()
            loss.backward()
            if step_cnt == args.accumulate_step:
                # optimize step      
                if args.grad_norm > 0:
                    nn.utils.clip_grad_norm_(scorer.parameters(), args.grad_norm)
                step_cnt = 0
                sim_step += 1
                all_step_cnt += 1
                lr = args.max_lr * min(all_step_cnt ** (-0.5), all_step_cnt * (args.warmup_steps ** (-1.5)))
                for param_group in s_optimizer.param_groups:
                    param_group['lr'] = lr
                s_optimizer.step()
                s_optimizer.zero_grad()
            if sim_step % args.report_freq == 0 and step_cnt == 0 and is_master:
                print("id: %d"%id)
                print(f"similarity: {similarity[:, :10]}")
                if not args.no_gold:
                    print(f"gold similarity: {gold_similarity}")
                recorder.print("epoch: %d, batch: %d, avg loss: %.6f"%(epoch+1, sim_step, 
                 avg_loss / args.report_freq))
                recorder.print(f"learning rate: {lr:.6f}")
                recorder.plot("loss", {"loss": avg_loss / args.report_freq}, all_step_cnt)
                recorder.print()
                avg_loss = 0
            del similarity, gold_similarity, loss

            if all_step_cnt % 1000 == 0 and all_step_cnt != 0 and step_cnt == 0:
                loss = test(val_dataloader, scorer, args, gpuid)
                if loss < minimum_loss and is_master:
                    minimum_loss = loss
                    if is_mp:
                        recorder.save(scorer.module, "scorer.bin")
                    else:
                        recorder.save(scorer, "scorer.bin")
                    recorder.save(s_optimizer, "optimizer.bin")
                    recorder.print("best - epoch: %d, batch: %d"%(epoch, i / args.accumulate_step))
                if is_master:
                    recorder.print("val rouge: %.6f"%(1 - loss))
               

def main(args):
    # set env
    if len(args.gpuid) > 1:
        os.environ['MASTER_ADDR'] = 'localhost'
        os.environ['MASTER_PORT'] = f'{args.port}'
        mp.spawn(run, args=(args,), nprocs=len(args.gpuid), join=True)
    else:
        run(0, args)

if __name__ ==  "__main__":
    parser = argparse.ArgumentParser(description='Training Parameter')
    parser.add_argument("--cuda", action="store_true")
    parser.add_argument("--gpuid", nargs='+', type=int, default=0)
    parser.add_argument("-e", "--evaluate", action="store_true")
    parser.add_argument("-l", "--log", action="store_true")
    parser.add_argument("-p", "--port", type=int, default=12355)
    parser.add_argument("--model_pt", default="", type=str)
    parser.add_argument("--encode_mode", default=None, type=str)
    args = parser.parse_args()
    if args.cuda is False:
        if args.evaluate:
            evaluation(args)
        else:
            main(args)
    else:
        if args.evaluate:
            with torch.cuda.device(args.gpuid[0]):
                evaluation(args)
        elif len(args.gpuid) == 1:    
            with torch.cuda.device(args.gpuid[0]):
                main(args)
        else:
            main(args)

================================================
FILE: model.py
================================================
# modified from https://github.com/maszhongming/MatchSum
import torch
from torch import nn
from transformers import RobertaModel


def RankingLoss(score, summary_score=None, margin=0, gold_margin=0, gold_weight=1, no_gold=False, no_cand=False):
    ones = torch.ones_like(score)
    loss_func = torch.nn.MarginRankingLoss(0.0)
    TotalLoss = loss_func(score, score, ones)
    # candidate loss
    n = score.size(1)
    if not no_cand:
        for i in range(1, n):
            pos_score = score[:, :-i]
            neg_score = score[:, i:]
            pos_score = pos_score.contiguous().view(-1)
            neg_score = neg_score.contiguous().view(-1)
            ones = torch.ones_like(pos_score)
            loss_func = torch.nn.MarginRankingLoss(margin * i)
            loss = loss_func(pos_score, neg_score, ones)
            TotalLoss += loss
    if no_gold:
        return TotalLoss
    # gold summary loss
    pos_score = summary_score.unsqueeze(-1).expand_as(score)
    neg_score = score
    pos_score = pos_score.contiguous().view(-1)
    neg_score = neg_score.contiguous().view(-1)
    ones = torch.ones_like(pos_score)
    loss_func = torch.nn.MarginRankingLoss(gold_margin)
    TotalLoss += gold_weight * loss_func(pos_score, neg_score, ones)
    return TotalLoss


class ReRanker(nn.Module):
    def __init__(self, encoder, pad_token_id):
        super(ReRanker, self).__init__()
        self.encoder = RobertaModel.from_pretrained(encoder)
        self.pad_token_id = pad_token_id

    def forward(self, text_id, candidate_id, summary_id=None, require_gold=True):
        
        batch_size = text_id.size(0)
        
        input_mask = text_id != self.pad_token_id
        out = self.encoder(text_id, attention_mask=input_mask)[0]
        doc_emb = out[:, 0, :]
        
        if require_gold:
            # get reference score
            input_mask = summary_id != self.pad_token_id
            out = self.encoder(summary_id, attention_mask=input_mask)[0]
            summary_emb = out[:, 0, :]
            summary_score = torch.cosine_similarity(summary_emb, doc_emb, dim=-1)

        candidate_num = candidate_id.size(1)
        candidate_id = candidate_id.view(-1, candidate_id.size(-1))
        input_mask = candidate_id != self.pad_token_id
        out = self.encoder(candidate_id, attention_mask=input_mask)[0]
        candidate_emb = out[:, 0, :].view(batch_size, candidate_num, -1)
        
        # get candidate score
        doc_emb = doc_emb.unsqueeze(1).expand_as(candidate_emb)
        score = torch.cosine_similarity(candidate_emb, doc_emb, dim=-1)

        output = {'score': score}
        if require_gold:
            output['summary_score'] = summary_score
        return output

================================================
FILE: output/README.md
================================================
Test Outputs


================================================
FILE: output/test.cnndm.ours
================================================
juan arango bit the shoulder of opponent jesus zavela in a moment of madness . the venezuelan icon was not booked by the referee but could face a heavy retrospective ban . arango had earlier scored a magnificent free kick to bring his club tijuana team level against monterrey .
gary gardner will report to aston villa for pre-season training . tim sherwood will assess the 22-year-old 's fitness . gardner has enjoyed a successful loan spell at nottingham forest . the former england under-21 star scored a stunning free-kick against watford .
both federal government regulations and the american heart association have for decades warned that excess salt contributes to the deaths of tens of thousands of americans each year . the guidelines currently dictate the people should limit their intake to 2,300 milligrams , with an even stricter 1,500 milligram limit for african americans and people over 50 . but some scientists are now saying that the average american salt consumption rate carries no risk .
michigan micro mote is the smallest computer in the world . contains solar cells that power the battery with ambient light . can be used to give everyday objects computing capabilities . can also be used as a smart sensor to monitor a home , business , or personal device . the working computer is smaller than a grain of rice programmed and charged via light .
driving licence shake-up will see all plastic photocard licences scrapped . information about penalty points will be held only on dvla database . motoring groups fear switch to online system will make it more difficult for car hire firms which want to check a motorist 's details .
an incredible video has stitched together footage from a nasa spacecraft . taken over five years , the footage includes plasma raining down on the sun , an extreme solar eruption and even a comet breezing through the sun 's atmosphere . the movie , called sun , was created by filmmaker michael könig from cologne , germany . it uses footage recorded by nasa 's solar dynamics observatory -lrb- sdo -rrb- spacecraft between 2011 and 2015 . highlights of the video include large , bright tendrils extending outward from the sun 's surface and occasionally crashing down again . other sections show bright , active regions on the sun '' surface as magnetic fields send it into turmoil .
justin rose finished second at the masters despite carding 14-under-par total . rose had missed the cut in three of his previous five tournaments on the pga tour . the englishman hopes to follow rory mcilroy 's winning streak in the summer of 2014 .
the actor died in hospice in hickory , north carolina , of complications from pneumonia . he was 88 . best played bumbling sheriff rosco p. coltrane on `` the dukes of hazzard '' for seven seasons . his co-stars paid tribute to him on social media .
the battle between neighbours started in 1980 when the owner planted a vegetable patch which withered and died in the shade of her neighbour 's massive hedge . audrey alexander claims the hedge has knocked # 20,000 off the value of her house . stirling council ruled that jeanette robinson can keep the hedge , although it has to be cut to 20ft .
dr. anthony moschetto is accused of trying to kill a rival doctor . his attorney says the allegations against his client are `` completely unsubstantiated '' two other men are named as accomplices . moschetto has pleaded not guilty to all charges . charges .
around 30 drivers live in rvs in a parking lot in seattle 's sodo area . john warden , 52 , has been living in his $ 200 vehicle for years . bud dodson , 57 , looks after the parking lot . the unusual format has been captured in a series of photographs .
newcastle fans planning to boycott sunday 's game against spurs . john carver has asked alan pardew and alan shearer for advice . carver was in the dugout with pardews at the end of last season . newcastle fans are planning to protest against owner mike ashley . they are unhappy with a perceived lack of investment and ambition .
roger federer is preparing for the inaugural istanbul open in turkey . the swiss star is looking to bounce back from his third round exit in monte carlo . federer says rafael nadal is still the man to beat at the french open . nadal has won the title nine times and has only ever lost one match at roland garros .
lingerie model sarah stage came under fire during her pregnancy for posting sexy selfies showing off her rock-hard abs . but james hunter was born at a healthy eight pounds and seven ounces earlier this week . the 30-year-old gave birth to her son on monday and shared the first pictures of him to her instagram page .
don mclean 's 1971 hit american pie has been an enigma for decades . it is considered to be poetic reflections on mid-20th century u.s. social history . the lyrics were sold at auction in new york for more than $ 1 million this week .
rubbish teams left bin full of rubbish because it had an empty crisp packet . binmen said the bag of walkers prawn cocktail crisps fell foul of the rules . but it had been dropped there by a litterbug and not by the owner of the bin . enraged residents in farnham , surrey , have branded waste collection squads as ` little hitlers ' for enforcing recycling rules to the letter .
jeffrey williams , 20 , is accused of shooting and wounding the officers during a rally in ferguson , missouri , on march 12 . in a series of phone calls from jail that were recorded , williams confessed to the crime in a conversation with his girlfriend . williams said he was being harassed by a group of people outside ferguson pd and was n't aiming at the cops . prosecutors say williams told investigators he fired a gun but was aiming at someone else .
bob greene : president obama talks about climate change , public health at roundtable event . he says obama credits clean air act with making americans healthier . greene : obama says americans can do their part to reduce carbon footprint . greene says obama says he 's not concerned about supreme court challenge to affordable care act .
two parrots were found crying for help in a burning home in boise , idaho . firefighters thought they were chasing human voices . the birds were given oxygen and are expected to survive . the cause of the fire is being investigated . no people were found inside the house .
crystal palace host manchester city in the premier league on monday . eagles captain mile jedinak is suspended for the clash at selhurst park . marouane chamakh and fraizer campbell are still out with hamstring injuries . manchester city have no serious injury concerns ahead of the game . yaya toure missed city 's win over west brom with achilles injury .
in an interview with npr , president obama said likely republican presidential candidate scott walker may change his ` foolish ' position on a deal with iran ` after he 's taken some time to bone up on foreign policy ' obama was responding to walker 's claims that he 'd ` absolutely ' cancel or ` disown ' a deal on ` day one ' if elected to higher office . obama 's jab at walker departed from the white house 's general strategy of staying out of the race to replace the sitting president .
a filmmaker is currently working on a film about yelp , which she says will unveil shady advertising practices at the company . kaylie milliken is the filmmaker behind billion dollar bully , an ongoing documentary focused on yelp 's impact on small businesses . milliken says she 's already interviewed several small businesses who believe they 've been targeted by the company for refusing to advertise . yelp has vigorously denied the claims , saying its algorithm protects businesses , by weeding out potentially fraudulent posts seeking to boost a company 's rating or drag it down .
manchester city are keeping tabs on juventus striker alvaro morata . arsenal were interested in the spain international last season . city are also keen on signing psg 's edinson cavani this summer . psg are also one of the frontrunners to sign juventus midfielder paul pogba .
stacey tipler used her job to steal # 642,000 from the royal marsden nhs trust . she spent the money on designer shopping sprees , mortgage payments and her planned wedding . but she and partner scott chaplin , 34 , who was the ringleader of the plot , were caught and jailed last summer . judge anthony leonard qc said tipler had made # 54,852 from the scheme . he ordered her to repay # 28,737.90 within six months or spend another 18 months in jail . chaplin claimed he ` made nothing ' from the scam but was ordered to repay the # 115,000 he made .
gary locke will be confirmed as kilmarnock 's new permanent manager on friday . the 39-year-old replaced allan johnston on a caretaker basis in february . locke will sign a three-year deal with the rugby park club . kilm carnock are currently eighth in the premiership .
actress julia louis-dreyfus , 54 , stars as fictional us president selina meyer in the hit comedy show . she revealed that the ultra-short hairstyle she models in the newest season of hbo 's political comedy veep was inspired by none other than presidential candidate hillary clinton .
tesla founder elon musk has unveiled a $ 3,000 -lrb- # 1,980 -rrb- battery . he said the powerwall device could be in homes by the end of summer . it can be used as back up power in the case of an emergency . the battery can also be used to hold power from renewable energy sources . the ` daily use ' version has a capacity of 7 kilowatt-hours .
hillary clinton 's first campaign video features a gay couple holding hands . the independent tv rain channel in russia gave the clip an 18 + rating . the channel said it did n't want to break the country 's anti-gay propaganda law . the law bans `` propaganda of nontraditional sexual relations around minors ''
middlesex bowler steven finn believes he has regained his best form . finn admits he 's had ` trial and tribulations ' in the last 12 months . but the 26-year-old says he 's got his ` head straight ' and is ready to push for an england place . finn was overlooked for the west indies tour .
liverpool players and fans have paid their respects to the 96 people who lost their lives at hillsborough . a memorial service will be held at anfield on the 26th anniversary of the disaster . philippe coutinho , mario balotelli and daniel sturridge among those to mark the anniversary .
raheem sterling has rejected a new # 100,000-a-week contract with liverpool . the 20-year-old is entitled to ` buy-out ' the last year of his current deal . sterling 's value could plummet by up to # 25million if he does so . manchester city and chelsea are both keen on the england international .
marco rubio is running for president in 2016 , but he has little appeal to latino voters . ruben navarrette : rubio has been his own worst enemy on immigration reform and cuba relations . he says rubio has embraced a typical conservative approach to immigration . navarrete : rubio 's political philosophy will be a tough sell to hispanics .
pictures taken by humane society international show seals being shot and wounded on canada 's ice floes . they are then dragged onto ships where they are clubbed to death for their fur . the animals are slaughtered in a remote region off the coast of newfoundland as the country 's largest annual marine mammal slaughter begins . hsi says the baby seals are suffering a violent death ` for fur products nobody wants '
aston villa and reading charged by fa for crowd disturbances after fa cup quarter-final matches . villa fans invaded the pitch after their 2-0 win against west brom . reading fans invaded pitch after 3-0 replay victory over bradford . one fan entered the pitch during the contest at the madejski stadium . both clubs have until thursday to respond to the charge .
the lions are seen eating meat from a metal cage attached to a car . they also interact with people who stand inside the cage and film them . the video was captured at orana wildlife park in new zealand . the park is the country 's only open-range zoo .
england lost 2-1 to france in their final euro under 19 qualifier . sehrou guirassy and gnaly cornet scored for the hosts . patrick roberts scored a late equaliser for sean o'driscoll 's team . england had to beat france to advance to the finals in greece .
manchester city midfielder james milner could leave on a free . glen johnson looks set to end his six-year spell at liverpool . swansea 's gerhard tremmel is understudy to lukasz fabianski . ron vlaar was a surprise omission from the world cup team of the tournament .
barack obama made an unscheduled stop at the bob marley museum in kingston . he is in jamaica to meet caribbean leaders for a meeting on energy and security . obama is the first president to visit the island in three decades . he was shown a trophy room where marley 's grammys and platinum records were on display .
14-year-old boy from blackburn , lancashire , arrested on suspicion of helping plot . he allegedly communicated with australian men over plan to attack police in melbourne . greater manchester police tipped off australian authorities who arrested five men . alleged plot was similar to the killing of british soldier lee rigby in woolwich .
teresa james , 40 , believes discomfort involved with teeth whitening is worth it for the end result of a bright smile . she started whitening her teeth five years ago , influenced by the brilliant smiles of celebrities she admired . almost a third of britons are now preoccupied with whitening their teeth .
justin rose finished joint runner-up at the masters with phil mickelson . the englishman was in top form and pushed jordan speith all the way on the final day . rose is back training and is using his # 30,000 indoor golf simulator . the simulator lets players practice their games inside their own homes .
`` orphan black '' returns for its second season on saturday . the show will feature more complex clone work . `` turn : washington 's spies '' returns with a new subtitle . `` game of thrones '' returns to hbo for a fifth season . `` veep '' has a new president .
caller says he 's trapped on an alaska airlines flight in the cargo hold . the pilot radioed air traffic control and said he would make an emergency landing . the ramp agent has been permanently banned from working on alaska airlines planes , the airline says . the crew and passengers reported unusual banging from the belly of the boeing 737 .
# 11billion a year is paid to 5.2 million workers in the form of tax credits and other benefits . total amount of benefits paid to staff at some companies exceeds what the firms pay in corporation tax . citizens uk is campaigning for the adoption of the living wage - # 9.15 an hour in london and # 7.85 for the rest of the uk .
an anti-racism protester had a face off with a neo-nazi at the easter weekend 's reclaim australia rallies . jacob king was snapped staring into the eyes of a bald man with a swastika tattooed behind his ear . mr king said he had his arms spread out because he thought the man was going to attack him and his fellow protesters . he said he learned islamophobic views from a young age but thankfully managed to ` unlearn ' these views .
dante de blasio has been accepted into yale and brown universities . the 17-year-old is a senior at brooklyn technical high school . he will make his decision by the end of the month . his father , new york city mayor bill de blasio , earns a six figure salary and owns two properties in brooklyn . he is expected to turn to financial aid to help pay for his son 's elite education .
valerie jackson 's son rj suffers netherton 's syndrome . the condition makes his skin appear red and scaly , and dry . his mother has to regularly cover him in creams to ease his symptoms . but while out shopping , mrs jackson was reported to police for child abuse . a member of the public mistook rj 's rare skin disease for the signs of abuse .
russia is considering bailing out greece in exchange for country 's ` assets ' alexis tsipras , greece 's prime minister , will meet vladimir putin in moscow today . it comes amid reports that kremlin will offer controversial loans and discounts on supplies of natural gas in a bid to lessen its dependence on the west .
lorraine valentine , 42 , suffers from erythropoietic protoporphyria -lrb- epp -rrb- the rare condition causes her skin to burn and become itchy when exposed to sunlight . she has to keep herself completely covered , as even a small dose of sun leaves her in pain . a holiday abroad left the mother-of-four in hospital for six days as the heat caused her entire body to swell .
jessica hardy , 23 , from hereford , wanted to remove her ex 's name from her forearm . she tried to burn it off with acid peels but the diy treatment left her skin red raw and scabby . she appeared on tlc 's extreme beauty disasters this week .
aaron ramsey has told his english team-mates at arsenal to beware wales overtaking them in the fifa rankings . wales climbed to 22 , their highest-ever position in football 's world order , in the april rankings to move within eight places of england . chris coleman 's side are unbeaten in euro 2016 qualifying and would be within touching distance of the finals in france should they beat belgium in june .
bayern munich beat eintracht frankfurt 3-0 in the bundesliga on saturday . robert lewandowski scored twice to maintain his lead at the top of the table . thomas muller added a third to set bayern up for their champions league quarter-final with porto in midweek .
taliban releases 11-page biography of mullah mohammed omar . omar is credited with founding the taliban in the early 1990s . observers say the taliban is trying to dispel rumors of omar 's demise . the taliban has a `` huge leadership problem , '' an analyst says .
16-year-old reece oxford scored against manchester united on tuesday night . the goal will push oxford closer to a first-team debut for west ham . the central defender signed his first professional contract earlier this season . oxford has been likened to rio ferdinand and is tipped to be an england international .
alison sharland , 47 , accepted # 10.35 m from her ex-husband charles in 2010 . she believed it was half his fortune , but his firm appsense was later valued at # 460m . court of appeal found that mr sharland had deliberately hidden information and lied to the court but refused to overturn the divorce settlement . mrs sharland will now take her fight to the supreme court .
new channel will be available for three months exclusively through apple tv . it will include all past , present and future hbo programming . hbo now is available in the us for $ 14.99 -lrb- # 9.90 -rrb- a month . it comes ahead of the series premiere of game of thrones on april 12 .
kelly parsons , 35 , from london , has donated 50 of her eggs . she has helped two couples to have twins and another woman give birth . in the space of 11 months , her eggs have become twin girls , twin boys and a baby boy . kelly and her husband dean struggled for eight years to conceive emily .
sickening pictures shared by bloodthirsty supporters of the terror group on social media . one of those distributing the sickening pictures is a man claiming to be a british militant fighting for isis . the gruesome photographs are understood to have been taken near tikrit in iraq 's salah al-din province . victim is seen lying in pool of blood with his severed head resting on his back .
raheem sterling and jordon ibe were pictured smoking from a shisha pipe in fresh pictures . liverpool star sterling has been pictured smoking a balloon filled with nitrous oxide in the past . the images will be a concern to clubs considering parting with # 40million to sign the star . brendan rodgers will remind sterling of his responsibilities tomorrow .
footage has surfaced of a quarrel between neighbours in a perth suburb . the clip shows an angry woman unleashing a racist tirade over her fence at a group of men who appear to be of african descent . the woman then appears in her neighbour 's front yard brandishing a metal crowbar , verbally abusing the men and swinging the weapon at them . the men then pick up their own weapons and a scuffle breaks out .
tottenham forward harry kane has scored 30 goals for the club this season . the england international has also scored on his senior debut . but he wants to play for england 's under 21s side at the european championships . mauricio pochettino would like kane to be rested at the end of his breakthrough season . fa chairman greg dyke revealed the news on st george 's day .
jon huxley hopes to attract guests from the gay and swinging communities . he plans to install sex swings , bondage rooms and dungeons at his hotel in folkestone , kent . the 46-year-old hopes to recreate scenes from the hit film fifty shades of grey .
asmir begovic 's contract at stoke city expires in 12 months . the bosnia international has been linked with other clubs . stoke chief executive tony scholes is hopeful they can keep hold of begovo . scholes believes stoke can match the 27-year-old 's ambitions .
taming frizzy hair can be a constant battle . we sent deborah to the taylor ferguson salon in glasgow . the nanokeratin system hair relaxing treatment costs from # 250 . it promises frizz-free hair for up to four months . it has been hailed a miracle cure by beauty experts .
sam allardyce 's contract expires at the end of the season at west ham . the hammers boss has a meeting planned with co-owners david gold and david sullivan in may . allardyce is already making plans for next season but does not know if he 'll still be manager .
divers will explore the famous wreck of the titanic in a submersible . the trip takes place in the atlantic ocean and costs # 41,000 -lrb- $ 60,000 -rrb- the tour takes in sights like the famous grand staircase and the marconi room . more than 40 people have so far booked the trip to the wreck .
tomas berdych defeated gael monfis 6-1 , 6-4 to reach the final . the czech will face either rafael nadal or novak djokovic in the final . monfils won just 11 points in a lopsided first set .
gloucester beat exeter to set up challenge cup final against edinburgh . greig laidlaw , bill meakes , tom savage and henry slade scored tries for the hosts . gloucester will play edinburgh in the final at twickenham stoop . the cherry and whites will compete for their first european title since 2006 .
warren sapp was charged with soliciting prostitution and two counts of assault in february . britney osbourne , 23 , and quying boyd , 34 , were both arrested in phoenix along with sapp . in a police video released on monday , sapp , 42 , cries , cackles and confesses about what exactly went down back on february 2 in the renaissance hotel . in the video , sapp admits he paid for oral sex and that ` everyone got naked ' after he ` put $ 600 on the table ' in his hotel room .
selina dicker , 38 , from london , was at the same camp on april 18 last year . an avalanche killed 16 sherpas who were climbing ahead of her group . miss dicker was trying to raise # 45,000 for operation smile . she was in the same climbing party as google executive dan fredinburg , who died in the avalanche .
aydian ethan dowling has around 40,000 votes to win the publication 's annual ultimate guy search - 30,000 more than his closest competitor . he would follow iraq war veteran and amputee noah galloway , who clinched the top spot last year .
balthazar king fell on the second circuit of the grand national . ruby walsh warned the field to go wide as vets tended to the stricken horse . balthazarking was taken to an equine hospital for treatment . walsh 's mount ballycasey was also able to walk away from his fall .
lesley jonathon cameron has been jailed for life for the murder of maureen anne horstman , 67 , and her 26-year-old daughter tamara alexandra horst man . the pair were bludgeoned with a hammer and stabbed to death with scissors in their own home in december 2013 . cameron , who was 19 and at the time , also raped tamara but it is not known if she was alive or dead .
carrie fisher and mark hamill were arm-in-arm on the stage just before the second trailer for the december film was rolled out . not on hand was harrison ford , who is the franchise 's han solo . producer kathleen kennedy explained the 72-year-old was ` resting ' after miraculously surviving a march plane crash in los angeles .
nearly a fifth of american women would still pursue a beauty treatment even if they knew it would cause permanent damage . seven per cent have had allergic reactions to salon procedures . one in six women in the us copy their favorite celebrities ' hairstyles . the majority of women say beauty treatments make them feel better about themselves and improve their looks .
14-year-old jamie silvonek is accused of conspiring to kill her mother cheryl silv one month ago . her boyfriend caleb barnes , 20 , is charged with homicide . cheryl silvonek 's body was found with stab wounds in a shallow grave about 50 miles northwest of philadelphia . jamie silv one was sent to the county jail this month after she was charged as an adult and is in the women 's housing unit , away from older inmates .
crystal palace co-chairman steve parish posed for a picture with roy hodgson and bill wyman after the 2-1 win over manchester city . wyman is one of the original members of the rolling stones and an avid palace fan . hodgson was a youth team player for palace in the 1960s .
the ` bunker ' was spotted in a photograph released by nasa . it was taken by the mars rover opportunity , the organisation says . andre gignac claims he spotted armed people peering out of its windows . he also claims to have seen missiles , rockets and structures nearby .
mark hawkins , 49 , was holed up in greyhound-style bus in salem , oregon . he was being hunted in lane county for failing to appear on drug charge . hawkins allegedly fired weapon from front of vehicle , hitting police dog . bullet struck dog in head , prompting exchange of gunfire between officers . swat officers then used tear gas and armored car to try and force him out . but hawkins still refused to comply with officers and ` continued to brandish a handgun ' at around 6.30 pm , police shot at hawkins multiple times , causing him to slide out of bus . he then died at nearby hospital ; autopsy showed he was shot nine times .
wellington silva has been granted a spanish passport . the 22-year-old brazilian signed for arsenal in january 2011 for # 3.5 million . he has not been able to play for the club without a work permit . but that has now been resolved and he can now play for arsenal . he posted a picture of his passport on twitter on tuesday .
real madrid beat granada 9-1 in la liga on sunday afternoon at the bernabeu . gareth bale opened the scoring for los blancos in the 25th minute . the welsh winger scored twice for wales during the international break . cristiano ronaldo scored five goals in a sensational display for real madrid .
ufo map shows sightings of extra-terrestrials around the world in the last 76 years . it was created by writer levi pearson , who used a ufo sighting dataset from the national ufo reporting centre and open source software from cartodb . the map shows a dramatic rise in the number of ufo sightings during the 1950s and 1960s . it suggests we have more cosmic visitors than ever before . click on the map below to find out if aliens have been spotted in your neighbourhood .
raheem sterling suggested he was considering his future in an interview last week . but brendan rodgers insists the forward has never said he wants to leave liverpool . the liverpool manager also insists he is focused on the football . sterling has not yet signed a new contract at anfield .
tiger woods struck a tree root while playing the ninth hole at augusta . he was 470 yards away from the pin when he hit the root . the 39-year-old immediately grabbed his wrist in agony . he later revealed that his wrist bone had ` popped out ' of place . woods shunned medical attention and simply pushed it back in himself .
david bulman , 55 , and his wife lubova had a row after he criticised her for not doing chores . his wife threw all his shirts outside but he followed her and shouted at her . he pulled her hair and punched her several times in the face , leaving her with a black eye and a lump on her head . he was given a 12-month community order after he pleaded guilty to assault .
boston terrier , gizmo , performed the gravity-defying stunt one day at home after he tried on a set of new booties . footage shows him taking a few steps forwards before planting down his front feet and launching his back legs vertically in the air . when he reaches laughing mathieson on the floor , he eventually steps back down to four paws .
adam federici let alexis sanchez 's shot slip through his grasp in extra-time . the 30-year-old was left ` inconsolable ' after the match and has apologised to reading fans . arsenal beat reading 2-1 in the fa cup semi-final after a 1-1 draw after 90 minutes .
pompous albert is a selkirk rex cat with a permanent frown and wild hair . the grey cat has racked up 44.1 k followers on instagram . he is named after famous physician albert einstein , due to his white-grey curly hair . each picture of the cat is accompanied by a sarcastic caption .
karl oyston sent a series of abusive text messages to a fan before christmas . he was charged by the fa for five breaches of fa rules . oyston has denied the charges and will appeal to a separate fa panel . the seasiders chairman still faces a ban from football activities .
three russian warships docked in olavsvern naval base in norway . the base is buried deep inside the country 's mountainous terrain . it has been closed since 2009 because of the threat from moscow . but military leaders are now worried by the presence of the ships . comes after a spike in tensions between russia and nato nations .
sheriff stanley glanz told a press conference on monday that the fbi had informed him of the result of the investigation into the shooting of eric harris on april 2 . robert bates , a 73-year-old reserve deputy , says he mistook his handgun for a taser and accidentally shot harris while attempting to help other deputies take harris into custody . he has been charged with second-degree manslaughter in the april 2 death and faces four years in prison if convicted . glanz said he did n't believe reports that bates ' training records were falsified and he claimed the volunteer 73 - year-old insurance executive had been properly trained .
director of public prosecutions alison saunders was encouraged by two aides to charge the labour peer with historic sex crimes . clare montgomery qc and child abuse expert eleanor laws qc offered advice which could have supported a move to prosecute . mrs saunders decided that it was not in the public interest to put lord janner in the dock due to his advanced alzheimer 's .
manchester united sit fourth in the premier league table . louis van gaal 's side beat liverpool 2-1 at anfield to move five points clear . wayne rooney believes his side are on course to qualify for the champions league . united face aston villa on saturday in the league .
tough new regulations will allow for a crackdown on notorious party houses on the gold coast . gold coast city council will finally be able to shut down illegal party houses in suburban areas after the state government approved new planning powers . there are more than 700 party houses across the city , which are often used for unruly weekend-long parties . police have often been called in after neighbours complained about noise and lewd behaviour at some of the houses .
wladimir klitschko takes on bryant jennings at madison square garden on saturday . the ukrainian will match joe louis in boxing 's record books with his 27th heavyweight title fight . the 39-year-old ukrainian has no plans to retire anytime soon . former heavyweight champion shannon briggs taunted klitsch ko at the press conference on tuesday .
prime minister looked exhausted as he stepped off sleeper train at penzance . he was wearing jeans with shiny loafers and a navy jacket . the tory leader is campaigning in the south-west ahead of the general election . he is still trailing labour in the polls , with just 14 days to go until polling day . but he insisted he slept well on the eight-hour journey to cornwall .
cleveland ` house of horrors ' survivors have written a book . amanda berry , 29 , and gina dejesus , 25 , revealed how they found the strength to survive imprisonment . the brave survivors have wrote a book , hope : a memoir of survival in cleveland , which will be released on april 27 . in an excerpt , published in people magazine this week , amanda and gina , revealed the years of rapes , torture and psychological games at the hands of ariel castro .
monaco face juventus in the champions league quarter-finals . leonardo jardim 's side are third in ligue 1 . the monaco coach insists he is proud of his side 's progress . jardin has been forced to nurture young players after big-money signings .
body of john lord was found in river trent , nottinghamshire , on april 15 . he went missing from his home on april 6 less than a week after wife 's death . june lord , 81 , died from a ` catastrophic bleed ' to the brain on march 31 . family feared worst after discovering a note describing how much he missed his wife of 63 years and how he could not live without her .
lily sharp from the uk decided to play a joke on her own mother . she pretended to be an intruder and demanded a ransom for her return . her mother was completely fooled and called the police . lily then revealed that it was all a trick and sent her mother a picture .
barcelona 's star forward lionel messi has recovered from his foot injury . messi missed both of argentina 's friendlies over the international break . he trained with compatriot javier mascherano on thursday . barcelona face celta vigo on sunday , with messi expected to start .
an audience with jimmy savile to be shown in london in june . author jonathan maitland says the public is ` ready ' for the play to open . mcgowan previously portrayed the comedian in his popular bbc series . twitter users have slammed the subject choice as ` unbelievable '
chelsea host arsenal in premier league on sunday . cesc fabregas is set to start against his former club . the spanish midfielder 's image still hangs from the ken friar bridge . gunners fan claude callegari has called for the flag to be taken down .
`` wonder woman '' director michelle maclaren has left . warner bros. says `` creative differences '' led to the decision . the movie is still set for release in june 2017 . gal gadot will appear in `` batman v. superman : dawn of justice '' in march 2016 .
police : alarm company called to report burglar alarm activated at hatton garden safe deposit ltd. . police say they knew alarm went off but did n't respond because of computer-aided dispatch system . british tabloid claims to have video of heist ; police say they have not seen it .
the island of por-bajin was discovered in 1891 but its purpose has not been explained . it is located in a remote lake in southern siberia , 3,800 km from moscow . the island was built during the period of the uighur khaganate -lrb- 744-840 ad -rrb- experts say it could have been anything from a prison , to a palace or monastry . scientists have created a 3d image of what the 3.5 hectare plot could have was used for .
toba graham was not concerned about being recorded , she tells cnn 's anderson cooper . graham says her son was `` embarrassing himself '' by wearing a mask . she pulled her son out of a crowd at a baltimore mall and slapped him . the 16-year-old boy says his mother did n't want him to get in trouble with the law .
obsidian can rival diamond in the fineness of its edge . a small number of surgeons are using obsidian scalpels to carry out fine incisions . dr. lee green says incisions made with obsidian blades heal faster . in germany , a company produces obsidian scalpel for those with an allergy to steel or metal .
a saudi general says 1,200 airstrikes have been carried out since march 26 . a saudi official says more than 500 houthi rebels have been killed . the houthi rebel group is fighting a coalition of nine nations . the coalition is targeting houthi fighters in southern yemen .
bali nine member myuran sukumaran has requested to spend his last days painting . his brother , chinthu sukumara has pleaded with the indonesian president to call off the firing squad . his fellow death row inmate , andrew chan , has requested he spend his final hours in church with his family . the bali nine pair 's lawyer julian mcmahon took four disturbing self portrait from sukumaru 's cell on sunday . the paintings depict the artist shot through the heart .
bin man was filmed dumping plastic bin bags in an alleyway in oldham . cctv installed by frustrated residents who had noticed the rubbish piling up . council workers arrived days later and slapped stickers on the bags . they warned residents they could face fines of up to # 50,000 for not disposing of rubbish properly .
fc tokyo president naoki ogane claims chelsea have made an offer for yoshinori muto . chelsea would look to loan the japan international to vitesse arnhem next season . jose mourinho has admitted that he is aware of the 22-year-old 's potential .
hayley sandiford has been told she must get rid of her seven-stone dog . american bulldog winston has attacked several postmen in blackburn . miss sandifords says royal mail are victimising her pet . angry neighbours have even left notes on her front door . she has been ordered to find a new home for the dog by april 30 .
four children and two adults have been involved in a three car pileup in brisbane 's west . the crash happened on the brisbane valley highway , 2km south of fernvale . a 40-year-old man and a five-year old boy were the first to be airlifted to hospital . a 27-year - old woman and a six-year old girl were also flown out . six others have been taken to ipswich hospital with minor injuries .
lake in boulder , colorado , has been invaded by thousands of gold fish . wildlife officials say it started as someone dumping ` four or five ' of their pets in the water two or three years ago . the animals have now multiplied to over 3,000 or 4,000 and are threatening to over-run the natural species in the lake . local officials are now considering two options - electroshocking the fish or draining the lake completely .
jordan spieth set a new 54-hole scoring record at the masters . the 21-year-old american is the third player his age to lead the tournament . spieth will play in the final group with justin rose on sunday . rory mcilroy and tiger woods are in a five-way tie for fifth .
manchester city could look to sell yaya toure this summer . the ivorian midfielder is wanted by inter milan . toure says he will not stay at city just to pick up his # 220,000-a-week wages . the 31-year-old says he is open to ` new challenges '
mikel gonzalez scored his first goal for real sociedad after just 90 seconds . antoine griezmann doubled the lead in the 10th minute . david moyes ' side had not conceded in their previous four games . fernando torres was replaced by gabi after an hour . atletico madrid are now just two points behind rivals real madrid .
budget cuts mean pensioners are being forced to buy an annuity . but over-55s can now cash in their pots and spend them instead . pension firms say many are baffled about how the radical changes work . many are unaware of age restrictions or tax implications of the changes .
blackpool in talks to sign austria defender thomas piermayr . the 25-year-old has been training with the championship club this week . piermayr is a free agent and had been playing for colorado rapids . blackpool are preparing for life in league one next season .
barcelona defeated almeria 4-0 in la liga at the nou camp . lionel messi opened the scoring for barcelona with a trademark curled strike . luis suarez doubled the lead with a similar left-footed strike . marc bartra added a third and suarez scored his second with the last kick of the game .
30 ethiopian christians appear to have been beheaded and shot by isis . the 29-minute video shows dozens of militants holding two separate groups captive . at least 16 men are lined up and shot in a desert area while 12 others are filmed being forced to walk down a beach before being beheaded . it follows another video in february of the beheading of a group of 21 coptic christians on the beach in libya .
phil taylor squandered a 4-2 lead to lose 7-4 to dave chisnall in manchester . the defeat sees the 16-time world champion finish fifth in the premier league table . chis nall moved up to second in the table after gary anderson drew with raymond van barneveld . peter wright was cruelly eliminated on leg difference after losing 7 - 4 to adrian lewis .
harry kane captained tottenham against burnley . the 21-year-old scored on his england debut against lithuania . he also started his first game for the national team against italy . kane said it had been the ` best week of my life ' but he will want to forget 0-0 draw . tottenham are seven points off fourth-placed manchester city .
after more than two years of planning , 61-year-old doug hughes made it through restricted airspace in a gyrocopter wednesday carrying 535 letters . hughes was arrested for violating restricted airspace and operating an unregistered aircraft . his wife , alena , said she is proud of her husband and said he is a ` patriot ' hughes has since been released on his own recognizance and is allowed to return to florida under certain conditions .
new cnn/orc poll finds 57 % say wedding-related businesses should provide same-sex services as they would heterosexuals . just 41 % say they should be allowed to refuse service for religious reasons . that 's a shift from a pew research center poll conducted last fall .
the prime minister was speaking to martial arts pupils at a school in warrington . he suggested using jujitsu to ` put nigel farage on the floor ' in the debate . but mr cameron later backtracked insisting there will be ` no bodily contact ' ukip leader nigel farage said he was feeling ` pretty good ' ahead of the tv test .
arsene wenger said chelsea are ` completely offensive ' and arsenal are ` defensive for 90 minutes ' jose mourinho hit back at the arsenal boss , saying : ` it 's not easy , not easy ' chelsea host arsenal in the premier league on wednesday . wenger and mourinho have a long history of working together .
aboriginal model management australia started two and half years ago . the agency is now looking to hire 40 models across five capital cities . founder kira-lea dargin hopes to have 10 models at next year 's fashion week . samantha harris was one of the most prominent faces at mercedes-benz fashion week australia .
mirka ` cro crop ' filipovic takes on gabriel gonzaga in poland on saturday . filipovic lost to gonzaga by a first-round head kick in 2007 . gonzaga insists he does not consider the fight a rematch . click here for all the latest ufc news .
australian plus-sized model laura wells has found international success as a size 14 model . she has modelled for macy 's , macy 's and david jones to name a few brands . wells said her less curvy counterparts have to make extreme sacrifices to keep thin in the lead up to fashion week .
the only way is essex star , 24 , has unveiled new summer range . full of pastels and feminine florals inspired by festival season . says she works out to keep her curves and is happy with how she looks . has also launched tanning range and false eyelash collection .
wolfsburg beat freiburg 1-0 to reach the german cup semi-finals . ricardo rodriguez scored a second-half penalty to secure the win . kevin de bruyne and andre schurrle missed a host of chances . wolfsburg will face borussia dortmund in the final four .
sarah 's mother told her phil was n't her real father last year . she agreed to have a dna test to find out who her real parent is . the 23-year-old mother burst into tears when she found out the truth . she and phil , who has raised her , appeared on the jeremy kyle show .
new york mayor bill de blasio joined by families of slain nypd officers rafael ramos and wenjian liu . the families threw out the ceremonial first pitch at the mets ' home opener at citi field . new england patriots quarterback tom brady also threw a first pitch , at fenway park in boston - but did n't do himself proud , chucking the ball straight at the ground . widow of american sniper chris kyle pitched in for the san diego padres .
dietrich evans , 22 , arrested on suspicion of shooting kay hafford in the head . the 28-year-old was shot in the back of the head in a houston road-rage accident . she was able to pull over and call for help but was left with bullet fragments in her brain . evans , a documented gang member , has been charged with aggravated assault .
firefighters battled to bring inferno under control at randolph hotel , in oxford . the five-star hotel is used as a setting for television 's inspector morse . smoke was seen billowing from the roof as dozens of firefighters battled to control blaze . cause of fire is not known and extent of damage to grade ii listed building remains unclear .
the number one destination for aussies is the ancient city of athens in greece . second is istanbul , followed by toronto and warsaw . ho chi minh city in vietnam , dublin in ireland , barcelona in spain , colombo , sri lanka , santiago in chile , and vienna in austria are also popular destinations . seven out of the top ten holiday destinations are in europe . aussie travellers are planning to travel abroad between may and august . the number of australians heading overseas has increased in recent years .
the craze involves having your pet pooch shaped into a sphere or a square . hairdressers in the taiwanese capital taipei are giving particularly furry customers outlandish makeovers . pictures of doe-eyed dogs with their shapely new cuts have proved extremely popular online .
john goodwin shot himself outside of rockingham county superior courthouse in new hampshire . he was airlifted to a hospital with life-threatening injuries . goodwin , 75 , went on trial this week on six counts of aggravated felonious sexual assault . prosecutors said that goodwin repeatedly sexually assaulted a student , who is now 24 years old .
new nike kits for the us women 's national team have been criticised . the all white strip does not represent the american flag . nike vice president charlie brooks has defended the decision . brooks said ` not every team pays homage to the flag ' usa player tobin heath says she is ` proud ' of the new designs . the outfits will be worn at the world cup in brazil .
wolves beat nottingham forest 2-1 at the city ground on good friday . manager kenny jackett has told his side to keep their focus . wolves face leeds united at molineux on monday night . jackett believes it is now just the top eight in the championship .
a melbourne man has been ordered to do 350 hours of community service for stealing six mobile phones . jamie pettingill threatened to slice off a schoolboy 's face with a knife . he is the son of trevor pettingills , who was acquitted of shooting two police constables in melbourne 's infamous 1988 walsh street murders . pettingil robbed two women , a man and two schoolboys of their phones and sold them to fund a gambling addiction . the 26-year-old was banned from entering gaming venues .
patrick o'melia found justin braddock unconscious in front seat of a car . he spent seven minutes giving him cpr and eventually revived him . braddock , 34 , was taken to hospital but fled without a thank you . he was later caught by deputies as he ran away from florida hospital . a two-year-old child was also said to have been found in the back of the car .
saracens lost to clermont in the champions cup semi-final in saint-etienne . the result leaves mark mccall 's side in the hunt for a first european title . sarries face northampton at the aviva premiership final next saturday .
formula one star jenson button completed the london marathon 2015 in under three hours . the mclaren driver was running on behalf of cancer research . button described the experience as ` really really emotional ' he joked he was disappointed to finish behind former olympic rower james cracknell .
a new kansas law tells poor families that they ca n't use cash assistance from the state to attend concerts , go swimming , visit theme parks or buy lingerie . the list of do n'ts runs to several dozen items . more than 20 other states have such lists . but , the one included by the republican-dominated kansas legislature in a bill that gop gov. sam brownback planned to sign thursday appears to be the most exhaustive . the new restrictions , regarding kansas applicants , have inspired national criticism and mockery from the daily show .
british transport police chief says football fans are responsible for thuggery . chief constable paul crowther says it is happening on a weekly basis . he said the impact on ordinary passengers is ` unacceptable ' comes ahead of a summit organised to determine the scale of the problem . figures show that btp has recorded 630 football-related incidents this season .
raheem sterling and theo walcott are both in contract negotiations with their clubs . the two wingers will go head-to-head at the emirates on saturday . sterling has been one of liverpool 's best players this season . walcott has struggled for game time since returning from a knee injury .
dug the pug was hiking in fontana , canada , with his owner when he ran toward a rattle sound . he was bitten in the face by a rattlesnake and his face swelled to twice its size . was given an entire vile of venom antidote and two days of round-the-clock treatment .
mario balotelli was clearly onside when he scored for liverpool . but michael oliver 's assistant referee ruled the italian was offside . liverpool lost 2-1 to aston villa in the fa cup semi-final at wembley . brendan rodgers said it was a ` very poor decision ' by oliver .
new york city , zurich and paris are all great places to visit on a budget . take a stroll through times square or central park for a no-cost stroll . visit one of london 's many free museums for a cultural fix . take photos in front of big ben or visit buckingham palace for the changing of the guards . for breathtaking city views , wander up lindenhof hill in zurich .
french tourists who torched a quokka have been released from jail . thibaud jean leon vallet , 24 , and his cousin jean mickael batrikian , 18 , pleaded guilty to animal cruelty . the pair lit the quokkah on fire with a deodorant can and a lighter on april 3 . the men opted to serve the seven days in hakea prison rather than pay the fine . the quokki survived the incident by scampering away , but was singed by the flame . animal rights activists have claimed that the pair 's punishment was too lenient for their crime .
incident in kathmandu was the worst to hit the south asian nation in over 80 years . intrepid travel have cancelled all bookings to nepal until may 11 . those who have already booked have been offered a full refund or alternative trip . foreign office has advised tourists to check with their travel provider before heading to nepal .
katia apalategui 's mother coped with losing her husband by holding on to his pillowcase which his smell clung to . this inspired the 52-year-old french insurance saleswoman to think of a more permanent way to capture a person 's individual scent . she teamed up with the havre university in france , where researchers have developed a technique to reproduce the human smell .
nearly 40 britons are missing in nepal after the devastating earthquake . susannah ross , 20 , told friends she was going trekking last week but has not been heard from since friday . her family are increasingly concerned about her and hope she will call to let them know she is safe .
charli , 8 , from australia , has turned her youtube channel into youtube 's largest food channel in less than three years . she and her sister ashlee , 5 , are raking in an average of 29 million views per month for their crafty how-to videos . charli 's channel earned the young entrepreneur an estimated $ 127,777 -lrb- aud $ 163,893 -rrb- in march alone .
man named locally as richard clements , 62 , was mowing grass outside property . but ride-on lawnmower overturned into pond and trapped him underneath . his family managed to drag him from the water and made frantic efforts to save him . but he was pronounced dead at the scene in wattisham , suffolk .
olivier giroud scores five goals in four games for arsenal in march . arsenal beat everton 2-0 , qpr 2-1 and newcastle 2-2 to earn the award . arsene wenger also wins the barclays premier league player and manager of the month award .
andreas lubitz , 27 , researched suicide methods and cockpit door security . he was prescribed anti-anxiety drug so strong doctors have to warn patients of the increased risk of suicide . second black box from the flight has been found and is in ` usable ' condition .
cameron unveiled new plan to improve education standards . pupils who get poor sats results will be forced to resit them in secondary school . the pm was upstaged by six-year-old lucy howarth at a primary school . labour 's tristram hunt dismissed the proposal as ` desperate '
the hop theory ` beer-bag ' contains hops , fruit peels and natural spices . claims to turn lager into craft after just two minutes of steeping . hop theory is nearing its $ 25,000 target on crowd-funding site kickstarter . project criticised by professional breweries as misleading about what constitutes as ` craft beer '
tottenham have won just two of their 10 premier league games at lunchtime this season . mauricio pochettino blames europa league games for the poor form . spurs play his former club southampton at st mary 's on saturday . pochettinos dismissed the prospect of hugo lloris leaving the club .
seattle-based filmmaker gabriel ng spent three months filming scenes in thailand . the six-minute video shows the country 's picturesque coastline and religious sites . he filmed scenes using a camera attached to a remote control drone that retails from # 500 . the full-length video offers a glimpse into everyday life on the island of ko samui .
james holmes is accused of killing 12 people and injuring or maiming 70 others in 2012 . opening statements in his trial are scheduled to begin monday . holmes says he was insane at the time of the shootings , and that is his legal defense . prosecutors are n't swayed and will seek the death penalty .
queens park rangers host west ham in the london derby on saturday . leroy fer could be rushed back from a knee injury . the dutch midfielder has not played since injuring his knee against sunderland in february . qpr boss chris ramsey admits he is taking a chance on fer .
becky cooper and bridget yorston - aka bec and bridge - unveiled their swimwear line at mercedes-benz fashion week australia . the 120 piece ready-to-wear collection was inspired by seventies model veruschka and the 1970s period in marrakech . animal prints and metallics feature heavily in the collection .
påhoj was designed by swedish designer lycke von schantz . it has a ` lightweight chassis ' and is 3.2 ft -lrb- 1 metre -rrb- tall . the product will launch on kickstarter next week but prices are not yet known . it clips onto the back of a standard bike using a specially-designed attachment . a child , up to a height of 3.1 metres , is then strapped into the seat .
american cable and satellite television network has pledged to crackdown on australians who use overseas accounts to access the us-restricted streaming service hbo now . hbo has warned users , who are watching shows such as girls that will be cut off on april 21 . tens of thousands of aussies are reportedly accessing foreign content via virtual private network -lrb- vpn -rrb- technology .
tony fernandes watched qpr 's 3-3 draw with aston villa from afar . the chairman was watching the game from malaysia on his iphone . he spoke of his despair after his team twice threw away a lead . christian benteke scored a hat-trick for villa to earn them a draw .
turkey has blocked access to twitter and youtube after they refused request to remove pictures of prosecutor mehmet selim kiraz . the 46-year-old died in hospital after he was taken hostage by far-left group . turkish court imposed the blocks because images were being shared on social media .
a beachfront property with spectacular views has gone on the market for # 3million in cornwall . the property has a summer and winter cottage , cleverly linked via a lift . boasting seven bedrooms , six reception rooms and seven bathrooms , the property has direct access to the beach . estate agents said they have seen an increase in interest in holiday homes in cornwall since poldark began airing last month .
each year thousands of homeless dogs facing euthanasia - some hours from death - get loaded on planes and flown to new homes in places where shelters are experiencing shortages . groups such as california-based wings of rescue or south carolina-based pilots n paws recruit pilots to volunteer their planes , fuel and time . the two non-profits say their concept has been a roaring success with the numbers increasing year-on-year . it 's estimated that more than 4 million u.s. pets are euthanized every year .
vaccine could make ` substantial contribution ' to controlling disease , say scientists . drug firm glaxosmithkline has applied for a licence from the ema . rts , s is the first malaria vaccine to reach advanced trials . tests carried out on 15,500 toddlers and babies in sub-saharan africa .
kyle naughton suffered ligament damage after david meyler 's challenge on saturday . hull midfielder was shown a straight red for the hefty challenge . naughon will miss the rest of the season and will be out for six weeks . angel rangel will return to the swansea side to face everton on saturday .
serena williams won 4-6 7-6 -lrb- 3 -rrb- 6-3 against sara errani in fed cup play-off on sunday . world no 1 williams beat italian errani to take her career record over her to 8-0 . us lost 3-2 to italy in the fed cup and were relegated to world group ii .
up to 200 people are feared missing after a landslide in a trekking area north of kathmandu . the death toll in nepal has now climbed to 4,600 , officials say . more than 9,000 people are injured , and 8 million people are affected across nepal .
long before mobile phones , shy love-seekers had to resort to other tactics . in the case of late 19th-century america , it was the ` escort card ' comical printed cards were handed out by men to women they found attractive . collector alan mays has unearthed a treasure trove of these vintage ice-breakers .
former brazil star rivaldo is the president of mogi mirim . the club have hired edson cholbi do nascimento as a coach . the 44-year-old 's dad is brazilian legend pele . edinho is appealing a 33-year prison sentence for money laundering .
isis has launched english-language radio news bulletins on its iraqi network . the bulletin , which airs on al-bayan , boasts updates in both arabic and russian . it is hosted by a man with an american accent who takes listener through day 's events . includes information on suicide bombings and ` martyrdom operations '
us researchers have found a single gene - tcsad1 - is responsible for cocoa butter 's melting point . the gene could be used to create new types of chocolate and pharmaceuticals . plant geneticists say their finding could also lead to new varieties of climate change-resistant cocoa plants .
chelsea fans called themselves the ` c-team ' in lighthearted prank . the four jokers set off blue smoke bombs and covered the arsenal sign . the prank lasted just 10 minutes before it was taken down by staff . chelsea face arsenal at the emirates stadium on sunday .
epa officials said documents suggest methyl bromide may have been improperly applied in various locations in puerto rico . the chemical sickened a family of four from wilmington , delaware , last month in the u.s. virgin islands . two teenage boys went into comas after being exposed at the sirenusa condominium resort in cruz bay , st. john .
nick clegg claimed the paedophile mp did not belong to the lib dems . in fact smith took the party whip for four years in parliament . he was feted as a lib dem grandee in the years before he died . mr clegg was accused on a radio phone-in of having ` washed his hands ' of the issue by refusing to order a party investigation into smith .
brown was unarmed when he was fatally shot by a white police officer , darren wilson , in a st. louis suburb in august 2014 . a st.louis county grand jury and the u.s. justice department declined to prosecute wilson , who resigned in november . brown 's mother , lesley mcspadden , and his father , michael brown sr. , announced at a press conference in early march that a wrongful death lawsuit would be filed ` soon '
roland martin says the u.s. is to blame for the violence in baltimore . he says we enslaved africans , supported jim crow , ghettoized blacks . martin : we tried to put a lid on it with heavy policing and a war on drugs . we failed . we are the authors of every page of baltimore 's story , he says .
harry kane became the premier league 's youngest captain this season . at just 21 years and 251 days , the tottenham striker led out his side for the first time in draw with burnley on easter sunday . that came after he scored within seconds of his england debut against lithuania on march 27 at wembley . kane made his first international start in italy on tuesday .
west brom host queens park rangers at the hawthorns -lrb- saturday 3pm -rrb- baggies defender craig dawson suspended for game after red card wrongly given to gareth mcauley against manchester city . qpr youngster darnell furlong likely to miss game with calf injury .
liverpool face aston villa in the fa cup semi-final at wembley on sunday . lucas leiva has been at liverpool for eight years and is the longest-serving player at the club . the brazilian has played more games for liverpool without winning a major trophy than anyone else in 50 years . he missed the 2012 league cup final and two other wembley appearances that year with a serious knee injury sustained against chelsea the previous november .
lawmakers are debating indiana 's new religious freedom law . critics say it is an invitation for businesses to discriminate . supporters say the law is a copy of the federal law . the key difference is that indiana expands the instances where someone can use religious freedom as a defense . .
ex-met police chief lord stevens is to be investigated by the ipcc . watchdog probe stems from complaint from stephen 's father neville lawrence . allegations that former met chief failed to hand over key information to macpherson inquiry regarding black teenager 's race hate killing . lord stevens was deputy commissioner of met from 1998 to 2000 .
thomas bjorn 's shot landed in a female fan 's lap during the first round of the masters . erik compton was in dreamland as he shot 73 on his debut at augusta . russell henley shot 68 as he made a good start to his second masters . bubba watson fought back with a solid 71 to keep him in the hunt .
researchers at the university of wollongong have designed a new type of condom . it is made with hydrogel , a strong and flexible solid which can be made to feel and act like human tissue . the groundbreaking design will eventually offer functions like self-lubrication , topical drug delivery , and even electric conductivity .
no tickets for floyd mayweather vs manny pacquiao are yet to be sold . mayweather promotions ceo leonard ellerbe claimed they would be on sale last week . but there is no sign of an end to the stalemate and no tickets are available . mayweather and pacquio are due to fight next weekend in las vegas . the 16,500-capacity mgm grand arena is expected to host 50,000 fans .
mercedes driver lewis hamilton was fastest in first practice for the chinese grand prix . hamilton finished 0.541 secs clear of team-mate nico rosberg in shanghai . ferrari 's sebastian vettel was second with kimi raikkonen third . jenson button was 13th and fernando alonso 17th in the first session .
new report reveals the dea program was created in 1992 . it monitored every phone call made from the united states to a country on their drug watch list . this is the oldest known example of the u.s. government authorizing this level of tracking on unknowing citizens of the country . the program was a massive success , and allowed agents to infiltrate drug trafficking rings . it was eventually halted in 2013 , just months after edward snowden began releasing classified information about the nsa .
professor at massachusetts institute of technology nancy kanwisher , 56 , shaved her head during a lecture . the clip was posted on her brain talks website , which is designed to teach people about the different methods of studying the brain . after the haircut a student used a permanent marker to draw the different brain regions on ms kanwishers ' bare scalp .
the alleged ` serial bride ' liana barrientos , 38 , was arrested just after leaving court friday , when she allegedly evaded the fare at a bronx subway station . barriento is accused of marrying 10 men over 11 years and charging them a fee for her ` services ' she pleaded not guilty to two felony charges of filing a false instrument , involving marriage licences . at one time she was married to eight men simultaneously . one of her husbands was deported back to pakistan for making threatening statements against the united states in 2006 .
attorneys for michael brown 's parents , lesley mcspadden and michael brown sr. , filed the complaint at the st. louis county courthouse on thursday . the family 's lawsuit is seeking $ 75,000 in compensation , as well as unspecified punitive damages . it calls for a court order prohibiting the use of police techniques ` that demean , disregard , or underserve its african-american population ' the lawsuit names the city of ferguson , former police chief thomas jackson and former police officer darren wilson as defendants .
middlesbrough beat rotherham united 2-0 in their championship clash on saturday . lee tomlin and patrick bamford scored in the second half to give boro victory . the win keeps aitor karanka 's side fourth in the championship table . the teesiders lost to watford by the same scoreline on easter monday .
tipper lewis has been reaping the benefits of superfoods for twenty years . credits chia seeds , bee pollen and matcha green tea with her energy . grew up on a farm and became fascinated by the power of plants . now works as head herbalist at neal 's yard remedies , the uk 's leading superfood supplier .
kuku kube is available for free on facebook , android , ios and on desktop browsers . it shows a board of coloured squares and the aim is to find the odd one . players get a point for every correct square identified , but if they click or tap the wrong square they lose a point . there are eight levels , and as a player progresses the squares change orientation or add borders to make it harder .
alfred guy vuozzo , 46 , shot dead brent mcguigan , 68 , and son , brendon , 39 . he was sentenced to life in prison on monday for the murders in august . vuozzi was two years old when his sister , cathy , was killed in 1970 . he shot them in ` execution-style ' killings to avenge his sister 's death . brent 's father , herbert , was also killed in the crash , but was spared . v luozzo will not be eligible for parole for 35 years . judge called brutal double-murder an act of ` hatred and misdirected vengeance '
cheryl howe was diagnosed with polycystic ovary syndrome -lrb- pcos -rrb- at the age of 12 . she suffers from excessive hair growth on her face , breasts , stomach and legs . the 32-year-old has been fighting for six years for treatment on the nhs . has spent # 2,000 a year on razors and has to shave up to three times a day .
six survivors of paris kosher supermarket siege sue cnn affiliate bfmtv . they say the media outlet endangering their lives by broadcasting their location live . bfm says one of its journalists mentioned a woman hidden inside the store . the hostage-taking was the culmination of three days of terror in paris .
commuters across new south wales ' coastline are mourning the loss of their umbrellas on social media . with winds of up to 135km/h battering the east coast , many have learned the hard way that their trusty shelters ca n't withstand cyclone strength conditions . workers have begun posting photos of their broken umbrellies scattered in gutters and discarded in bins along with the hashtag #umbrellageddon on social social media .
pema lama , 15 , was pulled from the rubble of a guesthouse in kathmandu . he became ` pancaked ' between two floors when the quake hit on saturday . american disaster response team had been working for several hours . his astonishing tale of survival came as a four-month-old baby was rescued . five-month old sonit awal was pulled . from the ruins of his family home . his mother rasmila awal thanked ` god and the rescuers ' for saving him .
church treasurer ian walters is accused of killing his wife tracy . he is accused of deliberately smashing his car into a tree at 84mph . mrs walters , 48 , died two days after the crash in march last year . prosecution claim she ` could n't cope with her husband 's demands ' in bed . but in his own defence , walters described their early sex life as ` dramatic '
sam tomkins is to cut short his stay in the nrl with new zealand warriors . the 26-year-old will rejoin his home-town club on a four-year contract from 2016 . tomkins rejected an offer from warrington in order to return to wigan .
scientists from the university of michigan have found tiny triggers inside pomc cells that give rise to this ` voice ' the research , done on fish and mice , could someday lead to pills that will be able to quieten that voice or increase its volume . the research focused on pom c neurons , which are a structure called the hypothalamus , that send and receive signals to regulate appetite .
andre cole , 52 , became the third convicted killer put to death this year in missouri . he was executed by lethal injection at 10.15 pm on tuesday at the eastern reception , diagnostic and correctional center in bonne terre , missouri . his fate was sealed after the u.s. supreme court turned down several appeals , including one claiming cole was mentally ill and unfit for execution .
bayern munich manager pep guardiola has yet to commit his future to the bundesliga giants . the spaniard 's contract expires at the end of the 2016-16 season . former bayern boss ottmar hitzfeld believes borussia monchengladbach boss lucien favre is the man to replace guardiola .
tim tebow has been signed to a one-year contract with the philadelphia eagles . the team announced the contract monday but did not disclose the financial terms of the deal . tebow has n't played a snap in the nfl in over two years since being cut by the new england patriots before the 2013 season . he worked out with the eagles last month and must have impressed head coach chip kelly .
niki lauda is fully expecting nico rosberg to turn ` nasty ' at some stage . the german accused his mercedes team-mate lewis hamilton of being ` egocentric b ******* ' hamilton spearheaded a mercedes one-two at the shanghai international circuit .
ap mccoy is aiming to end his career with victory in saturday 's grand national . mccoy will retire immediately if his mount shutthefrontdoor wins the race . mccoy won the national in 2010 on do n't push it . mccoy has won the title every year since he first won in 1997 .
hamilton , 33 , has a history of substance abuse and admitted to relapsing with drugs and alcohol in february . he has been on the disabled list all season after undergoing shoulder surgery . the texas rangers are willing to pay around $ 15million for hamilton . they do not want to give up any players in a trade with los angeles . the angels would effectively be paying $ 68million for him to play in texas . hamilton filed for divorce from wife katie in february , around the same time he self-reported a cocaine and alcohol relapse .
scott quigg offered carl frampton # 1.5 m to fight him in a british super-fight on tuesday . but frampton has dismissed the offer as a ` publicity stunt ' and ridiculed the offer . the ibf super-bantamweight world champion has called on eddie hearn to make a more realistic offer .
ben parsons , 34 , stopped in the middle of the brighton marathon . he got down on one knee and proposed to girlfriend anna jefferson , 36 . she was watching him run with their children nancy , three , and thomas , 11 months . ben carried the ring in his bum bag and waited to spot anna in the crowd .
mel greig has written an open letter to the media about the royal baby . the former 2day fm co-host shot to notoriety in 2012 after a prank call during the duchess of cambridge 's first pregnancy resulted in the death of the nurse who took the call . she asks why the media continues to seek fresh angles for stories after seeing the consequences of her mistake . greig asks various media outlets to learn from the tragedy of ms saldana 's death and to be sensible when it comes to covering the birth of the second royal baby . the duchess of . cambridge is believed to be overdue by five days as she had been due to give birth last thursday .
michael slager is facing murder charges for shooting walter scott in the back . but prosecutors say he wo n't be executed because the killing did not include any of a list of ` aggravating circumstances ' which enable the death penalty . the state law lists 12 ` agg graving circumstances ' including torture , rape , drug trafficking , kidnapping , burglary and arson . slager fired last week after he was charged with murder . footage shows him taser julius garnett wilson , who is now filing a lawsuit .
amateur cyclist dave sim plans to ride the tour de france on a raleigh chopper . the 36-year-old has spent months training aboard his bright yellow mark three chopper in preparation to ride all 2077 miles of the 2015 tour defrance route . mr sim hopes his stunt will inspire people to get out and ride themselves .
police officers accompany the hearse carrying walter scott 's body to his funeral . hundreds of mourners gather at a church in summerville , south carolina . the head of the church says the death was `` motivated by racial prejudice '' a witness says she saw scott and officer michael slager scuffling before the shooting .
arsenal have won their last eight premier league games in a row . but club chief executive ivan gazidis says he is not happy with second place . he says the gunners may struggle in the near future due to tv money . gazidis admits arsenal will ` keep pushing ' chelsea to win the title .
enoch gaver , 21 , was killed in the brawl in cottonwood , arizona . police say he was killed after a fight broke out in a walmart parking lot . four members of the gaver family are charged with assaulting an officer and resisting arrest .
liverpool 's vice captain jordan henderson has agreed a new long-term deal . the 24-year-old has signed a deal that will keep him at anfield until 2020 . henderson 's current terms had 12 months to run but leaving merseyside was never an option . the midfielder could be handed the armband when steven gerrard leaves .
abdul hadi arwani was found dead in his black volkswagen passat in wembley . he was found slumped in the back seat of his car on tuesday morning in north west london . the 48-year-old syrian national was an outspoken critic of the assad regime . a 46-year old man has been arrested in brent on suspicion of conspiracy to murder .
ian poulter finished in a tie for sixth place at the masters on sunday . phil mickelson opted for an all-black outfit on day four . tiger woods and rory mcilroy were paired together in the final round . danny willett hit three rounds of 71 but his third of 76 proved his undoing .
mother of wabc reporter lisa colagrossi allegedly confronted her daughter 's boss camille edwards at her funeral on march 23 . colag rossi , 49 , died from a brain aneurysm on march 19 . colgrossi had just finished covering a house fire in queens , new york when she collapsed and never regained consciousness . witnesses said that colagrossi refused to hug edwards and told her : ` you are the reason i am standing in this church '
traveller alex elenes went on a trip to see the amazon rainforest . he missed the whole thing being asleep . the pictures were captured by his cousin roxy de la rosa . the trip cost upwards of # 1,000 -lrb- $ 1,600 -rrb- just for the amazon .
the wide leg trouser is at the forefront of ss15 trends . louise and emma say it 's a welcome relief from the skinny jean . pair with a high heeled shoe and a simple knit to keep it in proportion . poppy delevingne channeled the trend at the aw15 chloe show in paris .
the football association will contact qpr and chelsea over incident . branislav ivanovic was struck on the head by a cigarette lighter thrown from the crowd during chelsea 's 1-0 win over qpr on sunday . qpr are reviewing cctv footage and have promised to ban those involved .
edwin van der sar believes louis van gaal can bring glory days back to old trafford . manchester united are currently third in the premier league table . van gaal 's side travel to chelsea on saturday in top form , having won six successive matches . van der sar admits the title is probably beyond united 's grasp this season .
researchers in massachusetts say a person 's keystrokes may reveal a huge amount of information about their motor skills . they have created an algorithm that can tell how effectively someone is striking a keypad . it can distinguish between typing done in the middle of the night , when sleep deprivation impairs motor skills , and typing performed when fully rested .
new book claims hillary clinton imposed a blanket of secrecy on her movements during monica lewinsky scandal . she told aides they would be fired if she was seen , it is claimed . mrs clinton said she wanted nobody to know when she was going to the pool apart from one usher who was to guide her there . there she would spend three and a half hours sitting on her own reading looking ` heartbroken '
liverpool goalkeeper simon mignolet has returned from international duty . mignalet was with belgium for euro 2016 qualifiers against cyprus and israel . the 27-year-old posted pictures of himself in the cockpit on his facebook account . migneolet is back in england ahead of liverpool 's game with arsenal .
the mineral veins were found at a site called ` garden city ' on the slopes of mount sharp . they stick up from the rock by up to 6cm -lrb- 2.5 inches -rrb- scientists believe the bizarre ridges formed in mars ' wet past billions of years ago above the now eroded bedrock .
many sacked , stripped of savings and even jailed after cash shortfalls were recorded . post office asked accountants second sight to investigate horizon it system in 2012 . leaked report suggests discrepancies could have been caused by computer failures . report has sparked fresh calls for a full independent inquiry into the system .
rock and roll hall of fame induction ceremony held in cleveland . paul mccartney , yoko ono among those in attendance . green day , joan jett & the blackhearts , stevie ray vaughan also honored . fall out boy gave one of the most exciting performances of the night .
police in new zealand have implemented extra security measures amid growing concerns of a targeted terror attack . kiwi jihadi mark john taylor posted a video to youtube urging is sympathisers to attack anzac day services in australia and new zealand . the video has since been removed after 3 news alerted authorities . taylor is one of very few new zealanders who are known to be fighting for islamic state militants in syria .
an fbi agent 's sniper rifle was ripped out of his car 's window and stolen from a salt lake city hotel parking lot . the gun was inside a hard rifle case and was ` secured properly ' to a truck safe with padlocks and chains . the agent 's gear bag , backpack , and some clothing and tools were also stolen during the march 27 theft . the theft happened just a week before obama made a scheduled trip to utah earlier this month .
john carver 's side travel to anfield to face liverpool on monday night . the magpies are seven points adrift of fourth-placed manchester city . liverpool are out of the champions league after successive defeats . carver says his players need to relieve the pressure on their shoulders .
prime minister says two parties are pretending to ` slug it out ' ahead of election . but he insists they are both working to ramp up spending regardless of deficit . comes as he launches tory party 's scottish manifesto in glasgow . he says together , the snp and labour ` pose a clear threat ' to uk .
pixium vision 's technology is based on a technique known as ` neuromodulation ' in which electricity stimulates the nervous system to restore sight . a surgeon first implants a small silicon chip with 150 electrodes on the retina . when the patient puts on the system 's dark glasses , an integrated video camera sends images to a portable computer . a connected ` pocket processor ' converts that recording into an infrared image , which the goggles will then beam into the eye .
land reclamation is being carried out in the spratly islands in the south china sea . china is creating the area by using dredging vessels to dig up sediment from the sea , and then dumping it on subermeged coral reefs . five islands have already been made , with two more in development . experts have told mailonline that the activities could be hugely damaging to local ecosystems .
nigel farage insisted his party would not become ` redundant ' if it left the eu . he said he would accept the result , but rejected claims his party was redundant . ukip leader appeared on a special question time-style programme filmed in birmingham today . he claimed the party could enjoy an snp-style surge in support in the wake of a vote to remain in the eu , if it was held .
southampton beat hull 2-0 at st mary 's on saturday . saints are five points behind manchester city in the premier league . ronald koeman 's side have to win their last six games to finish in top four . saints travel to manchester city on the final day of the season .
mother angela linton abused headteacher thomas o'brien . she had been banned from perry beeches school after abusing staff . but she used her son 's pass book to write the vile message in january . mr o'neill said he was ` traumatised ' by the message . linton , 47 , was given a community order and fined # 185 for harassment .
gina maria schumacher was taking part in the nrha european futurity horse show in the bavarian town of kreuth . the 17-year-old was seen riding a number of different horses during the tournament . she is expected to take part in grand final of the tournament on saturday evening . comes just days after her 16-year old brother mick returned to the racing circuit just weeks after he was involved in a 100mph crash .
the number of people developing kidney stones is rocketing . david crossley developed large stones in his right kidney . doctors believe his low fluid intake was to blame for his condition . one in ten of us will develop a kidney stone , and the numbers are rising . emergency admissions to hospital for kidney stones have shot up by 136 per cent .
prosecutors say the tsa agent secretly videotaped a female co-worker while she was in the bathroom . the agent , 33-year-old daniel boykin , entered the woman 's home multiple times , police say . police found more than 90 videos and 1,500 photos of the victim on boykin 's phone and computer .
fitness fanatic lucy watson is the face of very.co.uk 's #cantwaitforsummer campaign . the 24-year-old models ibiza-inspired summer brights and tropical print sun dresses . she recently starred in a made in chelsea work-out dvd .
during her senior year of high school , lauren hill was diagnosed with dipg -lrb- diffuse intrinsic pontine glioma -rrb- , a rare form of brain cancer . she still made it through a full season at mount st. joseph university in cincinnati while raising more than $ 1.5 million for others with her condition . hill has a new goal which is to raise a total of $ 2.2 million for treatment and research . her mother lisa updates her followers on the facebook page for lauren 's fight for cure about her daughter 's progress .
a garbage truck driver has died after he was crushed by a pole . the man was collecting bins in footscray early on saturday morning . police say the truck rolled forward , pinning him between the vehicle and a pole . meanwhile another man has died and two others are fighting for their life in hospital after a car crashed in melbourne 's east .
jay kantaria , 38 , had been looking forward to daughter 's birthday party . he leapt onto tracks at sudbury hill station in north-west london . died instantly of ' a severe traumatic brain injury ' at the station last october . coroner recorded an open verdict on the cause of death . said there was ` doubt ' as to mr kantaria 's intention when he jumped .
rand paul 's son william paul , 22 , was cited for a dui on sunday in lexington , kentucky but not arrested . paul was driving a 2006 honda ridgeline at 11.24 am when he crashed into the back of an unoccupied parked car . witnesses said paul was ` revving his engine ' while sitting alone in the truck . paul failed a field sobriety test and refused blood and breathalyzer tests at the hospital .
two russian planes were scrambled from raf lossiemouth in scotland . the russian aircraft are believed to be ` bear ' bombers capable of carrying nuclear missiles . raf scrambled typhoon jets after russian ships entered english channel . sources claim both incidents may have been an attempt to ` snoop ' on a huge nato war games exercise taking place in scotland .
delta air lines flight 2522 landed at laguardia airport in new york city . crew reported an odor of smoke moments after landing from tampa , florida . firefighters used thermal imaging camera to locate a potential heat source . plane was towed to the gate and passengers deplaned normally .
zachary cain stickler , 34 , was accused of hitting his partner in february . he pleaded not guilty to the charges in shasta county superior court on friday . on saturday , he intentionally crashed his cessna plane into a field in california . he had sent text messages to friends and family saying he was distraught and planned to kill himself .
poll : more religiously affiliated americans now favor same-sex marriage than oppose it . in 2003 , less than 30 % of religiously affiliated u.s. americans supported same - sex marriage . now , 47 % of those polled support same - sex marriage , according to public religion research institute .
bbc filled more than half its election tv debate audience with left-leaning voters . some of them were brought in from scotland and wales . when ukip leader nigel farage said they were prejudiced , they only booed him further . david dimbleby pointed out that the audience had not been selected by the bbc , but by a ` reputable polling organisation ' .
edinson cavani says he will stay at paris saint-germain until his contract expires . manchester united are interested in the uruguayan forward . cavani scored twice in saturday 's league cup final win over bastia . psg owner nasser al-khelaifi has ruled out selling the striker .
the claims were made by the commander of russian space command . oleg maidanovich said someone was hiding satellites as space junk . but in a film he refused to name the country behind the ruse . it suggests there could be more satellites than thought monitoring different countries on earth .
fitness influencers modelled we are handsome activewear at fashion week australia . the show was held at white city tennis club in paddington . the models included ballerinas and sprinters . lindy klim , amanda bisk , and yogi and instagram star sjana earp were the ` models '
rajee narinesingh was one of the victims of ` toxic tush ' doctor oneal ron morris . morris is accused of injecting women with a mixture of toxic substances including super glue and fix-a-flat . rajee had morris inject her cheeks , lips and chin back in 2005 , and ended up disfigured after she did not have the money to go to a proper cosmetic surgeon . now , she has had her look improved once again by dr terry dubrow and dr paul nassif . the process will be featured on the premiere episode of botched .
the 217 hectare island was purchased by wendy wei mei wu . the 2.7 km long , 1.8 km wide landmass is located 4 km off the coast of the new zealand 's north island . it boasts two airstrips and six houses , all with nearby beaches and sweeping ocean views . the sale has divided the needham family who own the island , with some of them claiming it represents ' the loss of the family 's legacy '
russian man took selfie with phone before stealing another model . ivan balashov was browsing through smartphones in shop in southern russia . but he was stopped by shop security and stole the phone he preferred . police found his selfie on a phone in the store and immediately recognised him . balashova was found guilty and given a three month suspended sentence . on his way home he sold the stolen phone for the equivalent of # 120 .
viviana keith , 27 , was arrested in red rock , texas , on tuesday for dui and dwi . police officer ben johnson claims she was resisting him and that he had to pull a fast and forceful take-down . video taken by a person in a nearby shop appears to show a different story . the woman 's daughter , who is six-years-old , saw the incident unfold . police are investigating the incident . keith has been charged with dwi with a child younger than 15 and interfering with pubic duties . johnson remains on the job .
six foot wall of foam appeared after fire at chemical plant in manchester . firefighters ' water mixed with detergent being stored in burning buildings . this created a huge wall of suds which drained into ashton canal . environment agency investigating to assess if the foam has harmed wildlife .
wasps to appeal three-match ban handed to nathan hughes . wasps will not be able to play in champions cup quarter-final against toulon . hughes was given the suspension after striking northampton 's george north . north was out cold on the pitch at franklin 's gardens and had to be taken off on a stretcher .
cat and mouse battle it out on a shed rooftop in shepton mallet , somerset . the pair battle it like a real life version of cartoon duo tom and jerry . ironically the pet cat 's name is mouse . the pictures were taken by the cat 's owner jason bryant .
chelsea beat manchester city 3-1 in the youth cup final at the academy stadium . tammy abraham scored twice for chelsea , with christian soalnke also on target . isaac buckley and ola aina scored for city . dominic solanke scored late on to put a gloss on the scoreline .
moshin tanveer gave louis van gaal a list of players he ` should ' sign . the supporter handed the list to the manchester united boss at a club fan day . van gaal was given the green light to sign gareth bale , mats hummels , paul pogba , nathaniel clyne , memphis depay and jackson martinez .
alanna and stephen goetzinger 's third child was stillborn in 2012 . coroner james mcdougall found that the midwife who assisted at the birth was ` grossly inadequate ' and may have contributed to the death of the baby . the couple have spoken out against the findings of the coroner 's report . they are adamant that their daughter rana was still born .
a safe deposit company in london was burgled over the easter weekend . thieves took hundreds of thousands of pounds worth of gems and cash . a former police official estimates the haul could be as much as $ 300 million . police are carrying out a `` slow and painstaking '' forensic examination .
angelina santini from san diego , california , filmed her nine-month-old son marcus getting carried away in his bouncer one day . the comical clip shows the youngster lurching back and forth with the device almost touching the floor . four years on , videos show that the youngster has swapped his passion for bouncing with playing the guitar .
lauren crawley , 54 , from hertfordshire , had surgery for a benign brain tumour . but the surgery damaged a facial nerve wrapped around it . this meant her left eye was permanently open and she could n't blink . she was given a new platinum implant that makes it easier to blink again . the implant weighs down the eyelid and makes it close automatically .
jose mourinho said the brazilian was taken off due to ` possible concussion ' oscar was clattered by arsenal goalkeeper david ospina in the 16th minute . the midfielder was taken to hospital at half time for checks . chelsea were denied a penalty after the collision at the emirates stadium . didier drogba replaced oscar at the break .
kyesha wood , 36 , found out that her children were disruptive at a movie . she posted a lengthy message on facebook looking for the mother . rebecca boyd was watching cinderella with her daughter ashley . she confronted the 13-year-old and her brother nick , 16 , outside the theater . mrs boyd said that her husband had just been laid off . she offered to pay for the next movie out of her children 's allowance . the woods have now apologized to mrs boyd on national television .
ap mccoy won the grade one betfred melling chase on don cossack on friday . mccoy rode don cossack to victory in front-runner race at aintree . the jockey will ride shutthefrontdoor in the crabbie 's grand national on saturday .
university of nairobi students heard explosions sunday morning . they believed it was a terror attack , the school said . one person died , and hundreds were injured . the confusion and panic came less than two weeks after al-shabaab slaughtered 147 people . of n cairo , kenya .
saudi-led coalition ends airstrike campaign in yemen . new initiative will focus on political process , saudi embassy says . u.s. conducting `` manned reconnaissance '' off yemen , official says . houthis agree to `` nearly all demands '' of u.n. , source says .
a cnn crew finds children in an unofficial displaced camp in nigeria . the camp is one of many that has mushroomed in the town of yola . the team calls on the camp to `` foster '' children . the man on the phone says he 'll pay more than the domestic rate for the children .
a trailer for abc tv show 8mmm aboriginal radio was removed by facebook . the video showed two elderly women painted in ochre dancing in a traditional ceremony . it was deemed to contain ` potentially offensive nudity ' the clip had already had 30,000 hits when it was removed . fans have called the decision ` outrageous ' and ` ridiculous '
ex-adelaide doctor tareq kamleh appeared in the latest isis propaganda video at the weekend . he urged people to join the death cult notorious for beheading non-muslims . despite his public support for isis , dr kamleh still remains registered to practice medicine in australia until september 30 . the medical board of australia can deregister doctors convicted of crimes .
britons spend an astonishing # 100 million a year on cough syrup . but a glass of honey and lemon could work just as well , says bbc investigation . uk over-the-counter medicines market is worth # 2.5 billion . but some brands use the same pills in different packaging . dr chris van tulleken says we should think less about convenience .
brian karl brimager , 37 , was indicted by a federal grand jury in san diego , in connection with the death of yvonne lee baldelli . the 42-year-old woman from laguna niguel , california , was last seen in september 2011 when she arrived in panama with brimagers . her family reported her missing the following january . a man who was cutting bushes on the island province of bocas del toro found a bag containing baldelli 's remains in august 2013 .
kate , william and kate are expecting their second baby , a girl , it has been reported . the duchess of cambridge is said to be keen on a girl 's name . the name diana is a popular choice among punters , says royal expert . but she says the royal family should avoid naming their child after diana .
ministry of defence 1 , also known as ` churchill 's toyshop ' , was a weapons laboratory set up in 1939 by the prime minister . churchill was a firm believer in the importance of science and technology in warfare . he encouraged his scientists to trial even the most absurd of inventions . many of these never made it beyond the drawing board , but some were so successful that they played a vital role in ending world war two .
judd trump beat stuart carrington 10-6 in the first round of the world championship . the 25-year-old led 7-2 from wednesday before carrington fought back to level . trump will now face marco fu in the next round . mark selby and shaun murphy also progressed in the opening round .
munira khalif , stefan stoykov , victor agbafe and harold ekeh are all 18-year-olds from different cities in the u.s. . they have been accepted to all eight ivy league schools and three others . they are the offspring of immigrant parents who moved to america from bulgaria , somalia or nigeria . all four are committed to doing good in their lives and want to become neurosurgeons or improve education across the world .
oratilwe hlongwane , from johannesburg , south africa , has nearly 25,000 facebook fans . he is still learning to put together words but is already able to play music from a laptop . his capabilities have earned him special appearances and sponsorship deals .
andy lee faces peter quillin in new york on saturday . the irishman won the wbo middleweight title last year . lee is making the first defence of the title he won against matt korobov . quillin is a former champion but is yet to taste defeat as a professional .
ciudad juarez , mexico , was once known as the murder capital of the world . at the height of cartel violence , the city averaged 8.5 killings per day . but five years later , local officials say the city is much safer , and plans are underway to lure foreign tourists and investors back to juarez .
ben grower is leader of the authority 's labour group . he refused to deal with a constituent because they supported ukip . pensioner alan roberts wrote to bournemouth borough council complaining about a lack of action over fly-tipping . he signed off email with : ` that 's why i 'll be voting ukip ' mr grower said he was shocked by the ` petty ' reply . a formal complaint has been lodged against him and the council is investigating .
german car manufacturer audi has created a ` green ' diesel fuel . it is made using a combination of water and carbon dioxide . experts used renewable energy to convert the carbon dioxide and water into a form of crude oil known as ` blue crude ' , which was then refined into diesel . tests have shown it can be mixed with diesel from fossil fuels , or used as a fuel in its own right . audi has already begun using the new e-diesel to power the official car of german minister of education and research dr johanna wanka .
owner wendy stokes , 74 , had given up hope of seeing toby again . but he has now returned home after 11 months on the run . he wandered through a gate in her garden and headed for the open road . he was picked up by a passing driver concerned for his safety . six months ago , he was re-homed with a couple living in margate , kent .
scientists in italy have extracted the oldest ever dna sample to be taken from a neanderthal - a skeleton found in a cave in 1993 . calcium formations on ` altamura man ' suggest he was 128,000 to 187,000 years old . researchers plan to sequence his dna to see if they can reveal new details about the evolution of our ancient ancestors .
branislav ivanovic has been linked with a move to bayern munich . the serbia captain is yet to open talks over a new contract at chelsea . ivanovic 's current deal runs out in 2016 . psg are set to make a # 7million bid for petr cech this summer .
a chunk of a fiberglass boat 25-30 ' long has been spotted floating off the oregon shore . biologists found live yellowtail jack fish inside the debris . the boat will be towed to a landfill and studied . an estimated 5 million tons of debris washed into the ocean in march of 2011 during the tsunami .
detective launched tirade after uber driver honked his horn . passenger filmed the exchange and posted it online on monday . detective patrick cherry is now under investigation by civilian complaint review board . he is assigned to the nypd 's joint terrorism task force . the internal affairs bureau is investigating the incident .
liz clark , 34 , from san diego , california , left her home in 2005 . she was given a cal 40 sailboat by a retired professor . he asked her to sail the globe and document her travels . she has travelled 25,000 nautical miles to date .
duke university and the police are attempting to work out who hung the rope on the tree . the rope was tied into a noose at about 2 a.m. wednesday in the bryan center plaza in durham , north carolina . area in which the noose was found is home to several offices focused on diversity including the center for sexual and gender diversity and the center of multicultural affairs .
jenny wallenda , 87 , died late saturday at her home in sarasota , florida , according to family members . wallenda was the oldest daughter of high wire walker karl wallenda and grandmother of daredevil performer nik wallenda . jenny wallenda 's husband , richard faughnan , died in 1962 when a human pyramid collapsed . karl wallendas fell to his death in 1978 .
paramedics are leaving firemen to deal with 999 calls , healthcare leaders warn . many firemen have not been trained in basic first aid . they are being left to care for seriously ill elderly patients for hours . fire brigade union say the practice is irresponsible and dangerous . it is becoming increasingly common because ambulance service is overstretched .
comres poll reveals 54 % want snp out of next uk government . 59 % want the snp as a whole to play no part in running the country . snp manifesto includes demands for extra spending and scrapping of trident . david cameron warns snp-labour deal would be a ` match made in hell ' for economy . more than half of people do not want ukip leader nigel farage to play part in the next government .
a majority of the public does not want camilla to become queen if prince charles succeeds to the throne , a poll reveals . four out of ten people think prince charles should give up his right to be king so the crown passes straight to william . william and prince harry are the most popular members of the royal family , closely followed by the queen and the duchess of cambridge .
danny welbeck says arsenal have just got to play the game , not the occasion . arsenal face reading in the fa cup semi-final at wembley on saturday . welbeck scored against manchester united last week . the striker says he has been unlucky in front of goal this season .
ed miliband will do ` more damage to the country than his brother ' , boris johnson says . the london mayor launches furious personal assault on labour leader . but mr miliband laughs off the attack , saying : ` come on boris , you 're better than that ' pair appeared on bbc 's andrew marr show to discuss election campaign .
raheem sterling allegedly pictured smoking shisha pipe on sunday . 20-year-old recently snubbed # 100,000-a-week contract offer from liverpool . england international has 14 caps for his country . jack wilshere was involved in a smoking controversy in february .
bacterial vaginosis -lrb- bv -rrb- is a common infection that can cause miscarriage and infertility . it affects one in three women , making it twice as common as thrush . amanda butler , 42 , from milton keynes had never heard of the condition . her son callum was born weighing just 1lb 9oz and with translucent skin . he underwent heart surgery , a lumbar puncture , laser eye surgery and 10 blood transfusions . mrs butler has urged other women to be aware of the infection . ' i feel like it could have been totally avoided had i been given the right information , ' she said .
supermarket chain aldi has requested the ability to make employees work more than 38 hours in a submission to workplace relations productivity commission . the transport workers ' union 's national secretary tony sheldon condemned the requested change to the fair work act . he accused aldi of trying to reintroduce serfdom .
the avocado tree is ` transgender ' and has overnight sex changes . professor john warren discovered avocado trees switch from male to female in a matter of hours . the plants use their ` male anthers ' to spread their pollen . professor warren said the plants limited the amount of self-pollination .
people who have never been divorced can expect a retirement income 13 % higher than a colleague . one in five divorcees who stop work this year will retire with debts to drag down their disposable income and lifestyles . the debt of a divorced retiree averages # 22,100 , prudential 's report said .
curtis stone says he wo n't let his kids eat hot dogs . the celebrity chef says his biggest priority is to feed his children healthy food . the 39-year-old is back in australia to promote his new cookbook , good food , good life . he and wife lindsay have two boys , hudson , 3 , and emerson , 7 months .
chinese team attempted to fly a kite measuring 6,000 metres -lrb- 3.7 miles -rrb- but the kite was too big and posed a danger to passing aircraft . the kite , dubbed ` centipede with a dragon 's head ' , was set to fly at the wulong international kite festival last saturday in chongqing .
emmanuel adebayor could be allowed to leave tottenham on a free transfer . the club are willing to pay the togolese striker 's wages to get rid of him . tottenham would still like to receive a fee for the striker . the 31-year-old is on the peripheries of mauricio pochettino 's plans .
suarez scored a brace in barca 's 3-1 win over psg in the champions league quarter final . the forward says he nutmegged david luiz twice because it was his quickest way to goal . suarez says the tie is not over despite the two goal lead .
the marana , arizona , officer who hit an armed suspect with his car says he was too far away to shoot . officer michael rapiejko ran his car into mario valencia in february as the suspect carried a rifle . the marana police department has defended rapiejko , saying deadly force was warranted .
after extensive chemical tests , dr arye shimron says he has linked the james ossuary -- a 1st-century chalk box that some believe hold the bones of jesus ' brother -- to the long disputed ` jesus family tomb ' the research could have enormous ramifications as it suggests that jesus was married , fathered a child and that a physical resurrection did not take place . dr shimron 's work has renewed controversy over the talpiot tomb , which was discovered in 1980 and dates back to the second temple period and the time of jesus . other experts and archaeologists have rejected the claim that the jerusalem tomb is connected with jesus at all .
jeremy hunt promised an immediate crackdown if conservatives are re-elected . comments come as mail revealed how nhs managers were potentially dodging income tax by channelling huge salaries through personal companies . labour 's health spokesman andy burnham said his party would investigate the mail 's findings if elected .
jackson martinez wants to leave portugal this summer . the 28-year-old scored in porto 's champions league semi final win . manchester united scouts checked on the striker last week . click here for more transfer news . read : man utd want to sign # 30million-rated porto striker jackson martinez .
chaplin married second wife lita grey , 16 , in 1924 and the union lasted just three years . the 50-page divorce papers were found in a bank in america . they are set to fetch an estimated # 15,000 when they go under the hammer . lita claimed that she endured ` cruel and inhumane ' treatment by chaplin .
isis leader abu bakr al-baghdadi has been seriously injured in an air strike . he is no longer in control of the terrorist group , according to an iraqi source . he was wounded by an attack from the us-led coalition in march in nineveh .
chelsea have topped the premier league since the opening day of the season . jose mourinho 's side are seven points clear with eight matches remaining . chelsea face qpr at loftus road on sunday . mourinho says chelsea are ` deserving ' to be top but admits ` every game is difficult '
sienna miller body double must be 5ft 6in , have 25 1/2 in waist and high hip of 35 . must also have a messy bob and be prepared to cut their hair . must be able to do yoga moves like the side crow and scorpion . casting call for advert for austrian water brand vöslauer .
rilwan oshodi bought karen budow 's bank account details for just # 3,200 . he then spent her savings on cheeseburgers , champagne and top-of-the-range computers . he was jailed in 2013 for eight years for his part in the fraud but must repay the money . he insists he is so broke he ca n't even pay his lawyers - but judge orders him to pay up .
uruguayan striker luis suarez was banned for four months for biting giorgio chiellini during the world cup . his wife sofia says that he told her he did n't do it but tv replays proved otherwise . the striker then admitted the truth 10 days later .
pc luke stanwick was on holiday with his wife jenny and son nathan , 2 , in portugal . he broke his neck and is now in a medically-induced coma in hospital in lisbon . the 30-year-old is paralysed from the waist down and may never walk again . a donation page has raised more than # 8,000 for the police officer 's family .
alan greaves was caught with 20,000 images of child abuse on his computer . the father-of-eight claimed he was framed by the illuminati . he was jailed for 21 months after pleading guilty to two offences . the images were found on a digital storage device at his home in colne . almost 700 of the images were of the most serious category .
conor mcgregor takes on jose aldo in las vegas on july 11 . mcgregor says aldo does n't want the title in his presence . the featherweight champion is defending his belt for the eighth time . mcgregor grabbed aldo 's belt when they took their promotional tour to dublin last week .
phillip and gaby beckle-raymond bought home for # 325,000 five years ago . they called in builder to fix a leak in their north london home . but builder told them the roof structure was unsound and he could n't re-tile . he suggested they use sub contractor to do work on their home . when sub contractor began work , he disappeared and the family was left with no roof .
chelsea will announce the signing of brazilian wonderkid nathan on wednesday . the 19-year-old attacking midfielder has been in london for talks with the blues . nathan will join fellow brazilians willian , ramires , filipe luis and oscar at stamford bridge . chelsea beat manchester city to the signature of the 19 - year-old .
tottenham are looking to strengthen their squad this summer . spurs are tracking dynamo kiev forward andriy yarmolenko . paris st-germain are also interested in the ukrainian star . spurs boss mauricio pochettino is also keen on everton winger kevin mirallas .
unbeaten championship leaders leigh delivered a stunning knockout blow as super league club salford crashed out of the ladbrokes challenge cup . the centurions twice came from behind in thrilling fashion to beat the red devils 22-18 in front of a 6,358 crowd at leigh sports village .
the university of michigan yanked an upcoming screening of the oscar-nominated drama american sniper over student complaints . the school quickly did an about-face after news of the cancellation sparked a firestorm on campus . the movie was originally set to be shown during a student mixer friday , but the university decided to cancel the screening over complaints that american sniper portrays muslims as villains . the student center responded to the petition by issuing and apology and replacing the r-rated film about the war in iraq with a pg-rated children 's movie about a stuffed bear .
father-of-four simon wood , 38 , from oldham , greater manchester , won . he battled it out against emma spitzer and tony rodd in the final . they were challenged to cook judges john torode and gregg wallace a three-course meal in three hours .
football league reveal the top ten players in each division . championship player of the year patrick bamford beat daryl murphy and troy deeney . joe garner was crowned league one 's best player . dele alli , on loan at mk dons , was named young player of the year .
manchester united 's ashley young was in attendance against oldham . young 's brother lewis plays for league one side crawley town . crawley were 2-0 up at half-time against the latics . young senior played 70 minutes in united 's 3-1 victory over aston villa .
kristy peckham is the ex-partner of disgraced queensland politician billy gordon . she has opened up about the years of abuse she suffered . ms peckham claims she and her children were essentially held hostage and forced to live in fear . the queensland government was plunged into crisis after when details of the cook mp 's criminal past emerged . queensland premier annastacia palaszczuk called for his resignation .
emily thornberry has attacked david cameron 's right to buy policy . but eight years ago she and her husband bought a housing association property . tories say she opposed right to buying but not ` right to buy to let ' labour mp was forced to resign from shadow cabinet in november .
two french tourists have been fined $ 4000 for setting alight a quokka . thibaud jean leon vallet , 24 , and his cousin jean mickael batrikian , 18 , set the marsupial alight in rottnest island on april 3 . both of the tourists pleaded guilty to animal cruelty at fremantle magistrate 's court on friday . the men were on a working holiday and were spending three months in rottets island working as cleaners .
the device uses ultra violet light to kill bacteria throughout the cabin . it is the work of father and son team arthur and mo kreitenberg . they say germs such as e.coli and mrsa can linger for up to a week . they hope their invention will revolutionise cleaning of aircraft .
photographer denis budkov captured the amazing images in the russian far east . the caves are found near mutnovsky volcano , 45 miles -lrb- 72km -rrb- south of kamchatka . they are given their various colours by light refracting through the ice - with the thicker the ice , the more emerald they appear . mr budkov , 35 , trekked inside the dangerous caves - which could collapse at any moment - to capture the colourful scenes .
robert knowles , 68 , from plymouth , devon , first broke the law when he was 13 . he has been in court at least once a year since 1959 and has clocked up nearly 350 offences . he was jailed for 16 weeks after stealing a watch and cuff links from h samuel in the city centre .
burnley midfielder matt taylor could make his return from a seven-and-a-half month achilles injury lay-off against arsenal . ross wallace and steven reid could also feature for the clarets . dean marney and kevin long remain on the long-term absentee list . arsenal defender laurent koscielny and goalkeeper wojciech szczesny face fitness tests ahead of saturday 's barclays premier league match at burnley .
silverstone 's roof was damaged by high winds on sunday and monday . a section of the ` wing ' was removed from the circuit . silverstone sporting director stuart pringle says the damage is ' cosmetic ' and that upcoming races will not be affected . silverstones is host to the british grand prix this weekend .
stephanie scott 's funeral was held at eat your greens in eugowra , nsw . hundreds of mourners gathered to pay their respects to the teacher . her fiance , aaron leeson-woolley , was among the mourners . ms scott 's mother and sister shared memories of their daughter . the teacher was allegedly murdered on easter sunday . she was due to marry her fiance aaron leeson-w woolley on may 25 .
british airways launches mindfulness for travel series . created to celebrate new a380 service between london and san francisco . includes meditation videos and tips on healthy eating . expert mark coleman also advises ` gentle exercising ' on board . he recommends wearing comfortable clothing and choosing lighter meals .
brian gewirtz , 20 , told his family he was going for a walk near his brooklyn , new york , home on february 17 , but did n't come back . police said friday his body had been discovered at marine park golf club , just two miles from his home .
biologists from goethe university frankfurt studied the healing process at a molecular level using electron microscopes to examine skin as it repairs itself . they found skin cells appear to attach to each other using tiny tubes that then pull them together so they interlock like a zip . the researchers hope their findings could help in the development of new treatments for wounds that could speed up the healing processes .
karen and andy murray wed in dunblane cathedral on sunday . kim 's jenny packham chiffon gown has split opinion on twitter . wedding planning expert says brides are thinking outside the box . she says they choose dresses based on their personalities and relationships . kate middleton , solange knowles and keira knightley all wore short dresses .
two anglers built diy boat from scraps of wood , insulation and polystyrene . they spent just # 9 on silicone glue to glue the 6ft vessel together . but the pair were stranded when one of the oars snapped off the boat . they were rescued by a lifeboat crew who had to bring the boat to shore .
nicole salvador accused of beheading palmira silva in her garden . the great-grandmother was found dead in nightingale road , edmonton . salvador , 25 , also pleaded not guilty to assault charge at london 's old bailey . judge hilliard set a trial date of june 22 at the old bailey .
clare verrall was walking her dog in prahran , in melbourne , on wednesday night . a man jumped out from behind some bins and attacked her . she was left with a broken nose , a black eye and a broken toe from the altercation . she said she believes her self-defence classes helped her survive the attack . victoria police are still searching for the man they believe to be the attacker .
professor bryan sykes of oxford claims towering woman named zana who lived in 19th century russia could have been the fabled yeti . witnesses described the six-foot , six-inches tall woman as having ` all the characteristics of a wild animal ' - and covered in thick auburn hair . dna evidence from zana 's granddaughter and the remains of her son khwit seemed proved that zana was of african descent .
italian ice cream man andrea trunfio , 36 , and mario bretti , 64 , argued over a disputed site in swindon . mr bretti said his competitor chased him along a busy road before cutting him off at a junction and blocking him with his van . trunfio then got out and threw a flurry of punches at the 64-year-old through the driver 's window .
manchester united beat aston villa 3-1 at old trafford on saturday night . ander herrera scored twice and wayne rooney also netted for the red devils . the win moves united above manchester city into third place in the premier league . click here for manchester united player ratings .
5,000 small business bosses praise tories as ` only people ' who can keep economy secure . they say they ` would like to see david cameron and george osborne given the chance to finish what they have started ' candle entrepreneur jo malone is one of the most high-profile names to sign letter . she claims a labour government would ` jeopardise ' the economic recovery .
obama says it is ` personally difficult ' for him to hear his administration accused of not looking out for israel 's interests . iran has agreed to restrict its nuclear program in exchange for relief from economic sanctions . obama said he hopes the deal will usher a ` new era ' in relations between the u.s. and iran .
officials found out isis called for attacks on uniformed personnel as part of a possible terror plot . fbi is investigating and security is being increased at other airports in southern california because of a ` known threat ' from isis . officials said the possible threat was not necessarily related to aviation .
benedict cumberbatch sculpture unveiled at westfield stratford city shopping centre . the 6ft tall chocolate sculpture took eight people 250 man hours to complete . it has been given pride of place in the shopping mall 's atrium . reaction to the sculpture was mixed , with some shoppers bursting into laughter .
jamaica 's usain bolt will compete at the world relays in the bahamas . the six-time olympic gold medallist will be part of the team . the full jamaican team list will be announced shortly . bolt insists he always does ` his best to make his country proud '
stuart broad produced his best bowling since knee surgery last year on day two . england bowled west indies out for 299 in their first innings . alastair cook and jonathan trott guided england to 74 without loss . broad backs cook to go onto a big hundred and get his side in a winning position .
ap mccoy won 20 titles during a 21-year career in jump racing . mccoy finished third in his last-ever race on saturday night at sandown . the 20-time champion jockey was reduced to tears after the race . the former arsenal player said he hopes someone will break his records .
arsenal defender per mertesacker says jurgen klopp would be a good premier league boss if he chose to stay . klopp has revealed he will leave borussia dortmund at the end of the season . the 47-year-old has been linked with manchester city and arsenal .
zoe o'connell , 37 , used to be a man and is standing for lib dems in maldon , essex . she lives in a three-way lesbian relationship with her two canvassers . sarah brown and sylvia knight were once a straight married couple .
reddit users took to the site in wake of 2013 boston marathon bombings . they used find boston bombers thread to hunt for suspect or suspects . but in days after attack , users hurled false accusations at spectators wearing backpacks . their claims led to 22-year-old sunil tripathi being wrongly identified as bomber . now , moderator of subreddit , chris ryves , has told of regrets in new documentary . the thread , which looks at impact of social media on journalism , will be released on itunes on monday . dzhokhar tsarnaev was this week found guilty of carrying out the attack .
couple were arguing in parking lot of an apartment complex . husband tried to drive off in his green chevrolet pickup truck . but his wife grabbed the door handle , slipped and he ran her over . police questioned the husband extensively but believe his story . no charges have been filed against him . woman was rushed to hospital where doctors delivered her baby by cesarean section .
jermain gawned , 40 , appeared on the first australian series of big brother in 2001 . she now runs a wildly successful raw food empire called naked treaties in byron bay , victoria . the byron bay-based woman says the secret to her success is ` spreading the vibration of love through food ' she also opened up about her time on australia 's first series of the show , and how she was portrayed .
youtube user serpentor filmed his feline friend in action . footage shows the tabby producing a range of unusual gurgling noises as she is petted . when her back is rubbed , she lets out a string of gobbledygook sounds . to date the clip of her singing has been watched more than 17,000 times .
golfer rickie fowler 's girlfriend alexis randock was criticised by an online troll for not working due to her relationship with fowler . the troll called ` fatalsplash ' then accused alexis of being a ` gold digger ' who did n't have to work . fowler responded to the hater by telling him to ` get your facts straight ' and that he worked her ` butt off ' to support herself .
liverpool defeated blackburn rovers 1-0 in the fa cup sixth round . mamadou sakho limped off early on with a hamstring injury . the frenchman will undergo scans on thursday to determine the extent of the injury . brendan rodgers has just two available first-team centre backs .
kelly nash , 25 , was last seen alive in the early hours of january 5 when he woke up coughing and sneezing . he left the house without his wallet , id card or keys to his truck . on february 8 , a man fishing at lake lanier discovered nash 's badly decomposed body . the former college basketball player suffered a gunshot wound and drowned , according to officials .
eileen dee , 68 , died of a deadly infection at the royal sussex county hospital . she had been battling cancer but caught the bug while undergoing treatment . the retired nhs information manager was transferred to another hospital . but she died five days later after being left in a filthy hospital room . her husband rené is now suing the hospital for clinical negligence .
manny pacquiao will fight floyd mayweather in las vegas on may 2 . the filipino star held an open training session at the wild card gym in hollywood . pacquio opened up about his motivation , his belief in god and journey to the top in boxing .
janet faal , 57 , has suffered from agoraphobia for a decade . she was out with a friend when she fell down an uncovered manhole . the grandmother-of-four was trying to move a wooden pallet when she slipped . she smashed her face and was left in a ` splits ' position after falling down gap . she now has two black eyes and a suspected fractured leg after fall .
africa 's cape verde islands are home to more musicians per square kilometer than any other country . the island nation is looking to tap into the economic potential of its rich musical heritage . the kriol jazz festival is one of the early successes of the festival . cape verdes hopes to gain international recognition through tourism .
a 12-year-old aspiring model has been diagnosed with bone cancer . venessa harris was diagnosed with ewing 's sarcoma on january 5 . she was diagnosed after a fall left her with pains in her leg . the 12 - year-old was named international winner in the tamblyn young model discovery contest in september . she is currently undergoing chemotherapy in brisbane and is expected to make a full recovery .
american travellers can now book rooms on the caribbean island for first time . more than 1,000 cuban properties are listed on the popular home-rental website . private rooms are available for as little as $ 12 -lrb- # 8 -rrb- a night on airbnb . forty per cent of listings in cuba are located in the capital of havana .
thief entered a branch of lloyds bank in new milton , hampshire , on thursday . he threatened cashier staff and ordered them to hand over money , police say . the man , whose face and hands were heavily swathed in bandages , then fled . police say a 56-year-old man from new milton has been arrested on suspicion of robbery .
beauty high 's rolly robinson stars in a new makeup tutorial . he first had to shave his mustache before applying make-up . he then used the controversial fullips lip suction cup to give his lips a kylie jenner-like effect . kylie herself has responded to the lip suctions craze , saying she is not here to encourage young girls to look like her .
ed miliband has admitted he is a geek who spent childhood playing computer games . labour leader said he cried when he and his wife justine watched pride . the film tells the story of coal miners in a tough working-class community in wales . mr miliband said he was a fan of singer ellie goulding and the band bastille .
kabul has been transformed since nato arrived in afghanistan in 2001 . the city 's population is five times what it was when nato arrived . the roads are lined with the detritus of america 's war here . the u.s. embassy and nato declined to comment for this story .
richard howarth , 35 , says he has to change the channel when he sees farage . he says hearing his voice makes him ` physically sick ' and he breaks out in a sweat . mr howarth 's wife catherine , 32 , says her husband gets so wound up by mr farage that he starts to shake .
mercedes drivers lewis hamilton and nico rosberg had a row after the chinese grand prix on sunday . rosberg claimed hamilton had been ` selfish ' by slowing down . hamilton hit back saying rosberg was not a racer . the pair had a further row in the first-class cabin of their emirates flight to dubai on monday morning .
bobby flay filed for divorce from stephanie march , 40 , in april saying that their 10-year marriage has ` irretrievably broken down ' on sunday , the new york post 's page six alleged that flay has been having an affair with his assistant elyse tirrel , who 's 28 . the celebrity chef 's business partner laurence kretchmer moved swiftly to dismiss the claims , saying that if flay had been having a relationship with an employee , he would have known about it .
talks between world powers and iran over iran 's nuclear program ended thursday . the talks were held at the five-star beau-rivage palace hotel in lausanne , switzerland . the hotel has hosted major diplomatic events before , including the treaty of lausane in 1923 .
andre schurrle and mario gotze attended a charity ball to raise money for hamburg children 's hospital . the pair were joined by partners montana yorke and ann-kathrin broemmel . wolfsburg beat hamburg 2-0 on saturday while bayern munich beat eintracht frankfurt 3-0 .
washington university rowing team was practicing on creve coeur lake . asian carp suddenly emerged from the water and attacked the boat . no one was injured , but the strong smell of fish lingered in the moments afterward . watch ireporter benjamin rosenbaum 's video above .
isis releases list of ` religious punishments ' which includes stoning to death . anyone who insults god or blasphemes against islam is to be killed . homosexuality is also to be punished by ` death for the penetrator and the receiver ' thieves will have their hands severed from their arms and road robbers face crucifixion . terror group claims the list is a ` warning and deterrent ' to the kufr .
world no 1 serena williams beats italy 's camila giorgi 7-6 , 6-2 in the first match . the win gives usa a 1-0 lead in the fed cup world group playoff . williams is now 15-0 in her career in fed cup matches .
germanwings co-pilot andreas lubitz used autopilot to speed up descent , french agency says . investigators are also looking at lubitz 's internet searches , a german official says . the flight data recorder was found thursday by recovery teams . the plane went down in the french alps on march 24 , killing all 150 people on board .
spain 's queen letizia attended a conference for rare childhood diseases in barcelona . the mother-of-two wore a chic white tailored suit with a blush-coloured silk top . the 42-year-old accessorised her outfit with a woven clutch and patent nude heels .
police release dash cam video of walter scott traffic stop . footage does not show the actual shooting . officer michael slager has been charged with murder in the death of scott . a witness says she followed the two men as they sped through a neighborhood . the officer shot scott eight times as scott ran away , the video shows .
georgina gosden , 25 , is facing common assault charges for allegedly punching a young woman in a queensland pub . the model allegedly punched a 21-year-old woman at townsville 's mad cow tavern in on december 7 last year . she carried out a similar attack on a 25-year old woman in the same nightclub last april . police are pursuing the charges against ms gosden despite her most recent victim withdrawing her complaint .
a boston area doberman ate three watches . the dog , mocha , had to have emergency stomach surgery last summer . the jewelry remains were still in mocha 's belly . the mspca says the dog is doing fine . the owner says she thinks mocha was trying to make room for apple 's new watch .
street view experience lets you virtually explore both above and beneath water in the iconic scottish waterway . google partnered with catlin seaview survey and adrian shine from the loch ness and morar project to capture the images . site has launched to mark the 81st anniversary of the ` surgeon 's photograph ' - an image of the mythical monster from 1934 . the tech giant has also released a google doodle to commemorate the anniversary and changed the yellow pegman to a nessie peg-monster .
japanese women prefer to drink tincture tonics to cleanse system internally . mahonia , a traditional herbal treatment for acne , is a number one bestseller in japan . neal 's yard remedies has seen sales of its mahonia clear skin formula go through the roof online from customers there .
florence pietrok , from portland , oregon , was born with frontonasal dysplasia . the condition caused a widening of her facial features , specifically with her nose and the space between her eyes . she also had a large central cleft in her face and a growth over her left eye . plastic surgeon dr. john meara of boston children 's hospital spent months preparing for violet 's surgery with molds of her skull that were made using a 3d printer .
henrik larsson forced to play 42-year-old kit man daniel andersson in goal . par hansson and matt pyzdrowski are both out injured for helsinborg . andersson kept a clean sheet as helsin borg drew 0-0 with kalmar .
manchester city are fourth in the premier league , nine points behind chelsea . sergio aguero insists city can retain the title despite defeat by crystal palace . city face manchester united at old trafford on sunday . aguero has scored six times against united in the last four derbies .
the findings come after the general secretary of the national association of head teachers said he was dubious about using technology as a teaching aid in non-it classes . courtney blackwell , at northwestern university in the us , found that , in tests , kindergarten children who shared ipads in classes over an academic year significantly outscored their peers who were in classes that had no ipads .
liz norden 's two adult sons , jp and paul , each lost a leg in 2013 boston bombing . they were injured as they shielded friends from second of two bombs detonated by finish line . the men , now in their mid-thirties , now use prosthetic legs and run charity . norden said it is ` way too soon ' for mark wahlberg to be turning atrocity into a movie .
former tory candidate mike whitehead was standing against labour 's alan johnson in hull west and hessle . he said he was joining ukip after becoming ` disgusted ' at the behaviour of the ruling conservative group in his area . but the tories this morning revealed they had already dropped mr whitehead as their candidate .
19 women and five men were chosen on tuesday to serve as jurors in the death penalty trial of colorado theater shooter james holmes . holmes is charged with shooting dead 12 people and wounding 70 others in the july 2012 attack at a century movie theater in aurora , colorado . jurors will decide whether he was legally insane at the time . if they find him guilty , they must also decide whether . he should be put to death or sentenced to life in prison without parole .
a amber anderson , 27 , was arrested on suspicion of having sex with a 15-year-old freshman two years ago . she has since been relieved of her duties at christian life academy in baton rouge . she was booked into prison on tuesday and is facing a charge of felony carnal knowledge of a juvenile . the victim told police that he and anderson had exchanged sexually explicit text messages and later allegedly had sex at her home . anderson had been a math teacher at the school for three years and the alleged relationship took place during july and august of 2013 .
yousef saleh erakat posed as a homeless man to see what would happen if he offered people on the street his own money instead . the results were less than kind . one man threw his money at erak at the end of the video . another man told erakats to ` p *** off , mate ' when he 's offered the $ 10 bill . erakat said he wanted to ` flip the script ' and find out if it was acceptable for the rich to give money to the poor .
kris commons penalty gave celtic a 1-0 lead before the break . james craigen was sent off for a ` last man ' foul on stuart armstrong . stefan johansen doubled celtic 's advantage in the 63rd minute . celtic remain seven points clear of aberdeen at the top of the scottish premiership .
zach birnie was skiing with a friend in revelstoke , canada , when he became caught up in an avalanche . he was filmed by a camera mounted to his helmet and captured the moment he was buried . the skier , who was lucky to escape serious injury , later discussed the incident online .
racegoer seen on video deliberately knocking an elderly man to the floor . the 34-year-old man barges into the 63-year old and knocks him to the ground . he then walks off as people gasp and try to help the victim . the victim was later taken to hospital and treated for bruising on his face . merseyside police said the 34 - year-old came forward to police late last night and he was interviewed under caution about the alleged assault .
chelsea preparing for fourth successive fa youth cup final . jose mourinho has warned he can not use all of his young players . ruben loftus-cheek , isiah brown and dominic solanke are all set to get their chance next season . chelsea are looking at paul pogba but the frenchman would cost # 70million .
a 37-year-old man was in custody tuesday following the deaths of his wife and their two children at their home in suburban detroit , police said . the bodies of a 37 - year-old woman , a 2-year old girl and an 8-year - old boy were discovered by police monday night . the victims have been identified as christie fradeneck , her daughter celeste fradneck and her son timothy fradenes .
turkey 's football team captain arda turan was celebrating after his side 's 2-1 international friendly victory against luxembourg . he went to the cockpit to announce his congratulations over the pa system . turkish aviation officials have said it was a serious breach of the safety rules of the flight back from luxembourg city .
myuran sukumaran and andrew chan will be executed on wednesday . the pair were given 72 hours notice of their deaths on saturday . they were told they had three days to live . the bali nine drug smugglers will be led into a jungle clearing and shot . the execution will likely take place in ` death valley ' - a clearing on nusakambagan . there , they will be given the option to be blindfolded . sukumara 's supporter ben quilty said he will not cover his eyes . the families of the australians will be required to make their final goodbyes on tuesday afternoon .
10,000 refugees have been rescued by italian ships in the past week . but over 900 have died or gone missing since the start of the year . 400 migrants died in two shipwrecks last week . nigerian muslims became angry at christian who started praying . when he refused to stop , they threw 12 christians overboard . the other christians formed a human chain and protected themselves . italian police arrested 15 people suspected of killing the christian refugees .
` harvey nichols : here 's the rest of your fur coat ' poster features ashley james brandishing a mutilated fox . the 26-year-old animal lover has joined forces with animal rights crusaders peta . the campaign comes after the department store abandoned its ten-year anti-fur policy .
kevin pimentel , 12 , shot dead his six-year-old brother , brady , as they made dinner inside their mobile home in hudson , florida last week . he then shot his older brother , trevor , 16 , in the leg and turned the gun on himself . the boys were laid to rest in a joint funeral on thursday . their divorced parents , helen campochiaro and luis pimental , were not home at the time of the shooting .
a woman walked on to new york city 's kosciuszko bridge from the brooklyn side on monday just before noon . she climbed over the railing and stood on a section of metal piping 125 feet above newtown creek . police arrived on scene at about 11.50 am and spent more than two hours talking to the woman and trying to calm her down . at about 2pm the woman agreed to be rescued and new york police department officers pulled her to safety over the rail . a witness said the woman is a 44-year-old polish mother-of-one who was going through a tough divorce with her husband .
fulham striker ross mccormack opened the scoring for the hosts after just four minutes . jermaine pennant equalised for wigan with a stunning free-kick in the 22nd minute . matt smith restored fulham 's lead with a fine strike in the 35th minute . jason pearce equalised at the back post for the visitors in the 69th minute to boise the visitors .
tuesday 's power outage in turkey triggered wild conspiracy theories on social media . the country is tense and confused after years of back-to-back crises . heavy-handed censorship has left the mainstream media widely distrusted . and the absence of a common , credible space for sharing information has pushed critics of the government to the fringes of society .
rap mogul was refused an appeal to have his bail reduced from $ 10 million to $ 5 million . he had to be carted out of court in a wheelchair as judge ronald coen rejected his pleas . but his attorney said he believes floyd mayweather will bail him out when he wins his next fight on saturday . mayweather is set to land a record pay check after going head-to-head with manny pacquiao on saturday .
officials : at least 270 prisoners escaped from a prison in al mukallah , yemen . a third of the inmates had al qaeda links , officials say . yemen has been descending into chaos since shiite houthi rebels removed president hadi . the conflict is drawing in regional rivals saudi arabia and iran .
manchester united will offer robin van persie # 5million to leave the club . the dutch striker has 14 months left on his # 250,000-a-week contract at old trafford . juventus and inter milan have both been linked with a summer move for the 31-year-old . radamel falcao and javier hernandez are also expected to leave in the summer .
manchester united beat manchester city 4-2 in the manchester derby on sunday . sergio aguero opened the scoring for city but ashley young , marouane fellaini , juan mata and chris smalling all struck before aguero 's second . the win all-but ended city 's title hopes and sparked a string of viral images on twitter .
brazilian defender dani alves will leave barcelona this summer . alves has been unable to agree a new deal with the catalan club . the 31-year-old has been linked with manchester united and manchester city . dinorah santana , alves 's agent , confirmed he has rejected a three-year deal .
porto defeated bayern munich 6-1 to progress 7-4 on aggregate in champions league . franck ribery , mehdi benatia , david alaba and arjen robben were all missing for the german giants . pep guardiola 's side raced into a 5-0 lead at half-time before claiming a 6-2 victory . robben was unavailable for the encounter with an abdominal injury .
arnold palmer hit the ceremonial opening drive of the 2015 masters . the seven-time major champion was playing in his first masters since 2008 . palmer , 85 , has been struggling with a dislocated shoulder . jack nicklaus and gary player were also honorary starters on thursday morning .
chelsea goalkeeper thibaut courtois wants to win the premier league . the belgian has won five trophies in his first season at chelsea . courto is currently seventh in the premier league table . the 22-year-old won the league cup with chelsea earlier in the season .
ines dumig 's photo series `` apart together '' is a documentation of a somali refugee . the photographer met sahra through a photo workshop at refugio , a shelter in munich , germany . dumig says she wanted to universalize sahra 's story , not only make it about her .
stephanie scott , 26 , was last seen on easter sunday in leeton , new south wales . she was due to marry fiance aaron leeson-woolley on saturday . a guest list of 120 people had been invited to stephanie 's wedding at the picturesque eat your greens venue 2km outside the tiny town of eugowra . but on saturday , the wedding venue was locked up and deserted as guests instead paid tribute to ms scott at her memorial service .
adam rushton , 37 , took advantage of his post as a beat officer to have sex with women . staffordshire police officer found guilty of five counts of misconduct in public office . he was also convicted of breaching data protection laws while employed by force . deputy chief constable nick baker called rushton ' a disgrace to the police service '
the footage was captured by a zookeeper at the zoological center in tel aviv . elad hershkowitz placed a gopro camera at the bottom of water troughs . he filmed the animals for a total of 30 hours before cutting it down to four minutes . in the clip a rhino appears to almost kiss the surface of the water .
dog molly had been on a walk with owner jane tipper and her daughter hannah . she fell over the cliff 's edge along with the lamb in eype , dorset , last week . molly survived a vertical drop of 100ft then rolled 150ft down a steep slope . coastguards searched thoroughly but were unable to find her . she was identified by a dog walker three days after going missing .
father of one of three teenagers arrested in turkey on suspicion of trying to join is works for mod . he is believed to work in military 's post office , where he could have had access to names and address of all military personnel at home and overseas . he has been put on compassionate leave from his post , after the mod considered suspending him , a source has said .
rspca officers discovered five illegal pit bull terrier-type dogs at a make-shift farm in lancashire . they had been brutally trained to take part in illegal dog fights . the footage shows the animals were held in electrical shock collars , covered with scars and were kept in urine-soaked cages without water . all five illegal dogs - dingo , sheeba , zula , fenton and mousey - were ordered to be destroyed .
atletico madrid drew 0-0 with real madrid in champions league . miranda was not happy with the performance of referee milorad mazic . the brazil defender said officials from ` lower leagues ' should not be allowed to referee high-profile games . mario suarez has also blasted the serbian official .
the match finished goalless until the final play of the match . marcelo bosch kicked a last-minute penalty to send saracens through to the champions cup semi-finals . maxime machenaud crossed for racing metro 92 in the first half . alex goode and charlie hodgson scored the other tries for sarries .
gang accused of filming attacks and then sending online messages demanding money to keep the film secret . one teenager has told greater manchester police he was beaten up by the gang , who reportedly tricked him into believing he was meeting an underage girl . the 19-year-old thought he was meeting a 14-year - old girl he had spoken to on the internet in atherton - but when he got there he was attacked by a gang of men who accused him of being a paedophile .
dr. mehmet oz is being criticized by a group of doctors . the doctors say he has a `` lack of integrity '' in his tv and promotional work . they also say his faculty position at columbia university is unacceptable . oz says he will address the issue on his show next week .
britain 's largest purpose-built air raid shelter was built in the 1930s . the tunnels were dug into sandstone cliffs along the river mersey in stockport . the space was originally intended to be a car park , but was redeveloped as an air raid shelters after the outbreak of the second world war . residents from lancashire , cheshire and manchester could hide in the tunnels .
andrew mogni , 20 , from glen ellyn , illinois , had only just arrived for a semester program in italy when the incident happened in january . initial police reports indicated the fall was an accident but authorities are investigating the possibility that mogno was robbed . he was flown back to chicago via air ambulance on march 20 , but he died on sunday .
liverpool stars take part in ladies day at aintree on opening day of grand national meeting . brad jones , glen johnson and fabio borini among the stars to turn out . brendan rodgers ' side secured fa cup semi-final berth with win over blackburn . liverpool next face newcastle on monday in premier league .
sam allardyce warns aaron cresswell that the grass is n't always greener . the west ham full back has been linked with a move to manchester city . but allardyce says jack rodwell and scott sinclair are examples of players who have left city for other clubs .
cristiano ronaldo now has 300 goals for real madrid . the 30-year-old has played for the la liga giants for six seasons . he is seven goals shy of alfredo di stefano 's club record . ronaldo has scored 206 goals with his right foot and 52 with his left .
comedian was uk 's top-selling children 's author last year . anthony horowitz said books by walliams are ` witty and entertaining ' but he said they are not ambitious enough to challenge young readers . the 59-year-old novelist and screenwriter singled out gangsta granny .
anti-fungal agent miconazole and steroid clobetasol both restored movement to mice paralysed by a rodent version of multiple sclerosis . in laboratory tests , they prompted inactive mouse and human stem cells to regenerate myelin , the protective insulation-like coating around nerve fibres that is destroyed by the disease . scientists said finding was significant as it could pave the way to new therapies for ms , which affects around 2.5 million worldwide .
lyon beat guingamp 3-1 to go top of ligue 1 on saturday . nabil fekir and alexandre lacazette scored in the first half . it was lyon 's first win in three and moved them back above paris st germain . lille got back to winning ways with a 3-0 win over reims .
wigan warriors beat warrington wolves 30-20 in their super league derby . ben flower made his return from a six-month suspension . the forward was sent off in wigan 's grand final defeat by st helens last october . dom manfredi scored a hat-trick of tries for the warriors . ryan hampshire , anthony gelling and liam farrell also scored tries .
the h5n2 bird flu virus has been found at a farm in northwest iowa 's osceola county . the virus has killed nearly 7.8 million turkeys and chickens since march . minnesota has had 28 turkey farms hit , far more than any other state . the risk to the public is considered low and infected birds are being kept out of the food supply .
john burns is alleged to have called bachar houli a ` terrorist ' at a club function at the mcg on friday night . the radio station confirmed a complaint has been made against mr burns . he said he does n't recall making the comment and is ` mortified ' by the allegation . houli is a multicultural ambassador for the afl .
christie 's magnificent jewels auction is on may 13 in geneva . it includes a pink diamond worth # 8million , a sapphire worth # 2.7 million and a pair of diamond earrings with # 670,000 . overall , the auction is expected to raise in excess of # 53million . the auction will showcase 351 historically significant and antique jewels spanning from the 18th to the 20th centuries .
salad and vegetables being grown in uk are being produced by migrant workers . they say they are denied basic hygiene facilities while working . some live in filthy shacks near the fields in southern spain . also say they have to work around dangerous pesticides - causing some to fall ill . revelations will horrify millions of customers of british supermarkets .
jack butland wants to emulate iker casillas by winning european championship with england under 21s . stoke goalkeeper voted for tottenham striker harry kane to win pfa young player of the year . butland joined gareth southgate and michael owen at st george 's park on st george 's day . 35 local schoolchildren were put through their paces by fa skills coaches .
kanye west , 37 , and kim kardashian , 34 , were pictured dining at non-kosher restaurant in jerusalem on monday . following the outing , jerusalem 's mayor nir barkat posted a photo of him and the famous couple on his twitter page . however , the next day , only mr barkat and kanye were pictured in the photo , reprinted in an article on the ultra-orthodox news site , hakikar . kim 's face and body were obscured by a copy of the $ 692 bill . in another photo , she was reportedly blurred out . the article referred to kim as ` the wife ' of singer kanye .
car maker volvo says it will begin exporting vehicles made in a factory in southwest china to the united states next month . the move will be the first time chinese-built passenger cars will roll into american showrooms . china surpassed the u.s. as the largest market for car sales globally in 2009 .
93,000 people live in the tsunami hazard zones of washington , oregon and california . also in danger are 486 public venues , 440 dependent care facilities and 2,314 businesses . seventy-seven percent of communities lying in the risk zone are equipped with the kind of geography and location to allow them the 15 to 25 minutes required for successful evacuation . some communities can increase their chance of survival simply by walking faster .
amana presley , 34 , allegedly killed two homeless men in atlanta and a hairdresser in decatur , georgia . he had originally set out to rob his victims but was overcome with ` bloodlust ' after killing one man , calvin gholston , 53 , in september . he then shot dorian jenkins , 42 , while he slept on the sidewalk in november . a few days later , he killed 68-year-old tommy mims as he slept under a railway bridge . he shot 44-year - old karen pearce in a parking garage on her way home from dinner with friends on december 6 .
bayern munich beat porto 6-1 in the champions league on tuesday night . pep guardiola managed to tear a hole in his trousers during the match . the spanish manager 's underwear was on show after the incident . bayern munich booked their place in the semi-finals of the champions cup .
the man carries a defective gene known as neurofibromatosis 1 -lrb- nf1 -rrb- it can pass on a severe , life-limiting condition to his offspring . donor is understood to have fathered 99 ` viking babies ' across world . ten of his offspring have already been diagnosed with nf1 . four families are suing the sperm bank nordic cryobank .
arsenal were thrashed 6-3 by manchester city and 5-1 by liverpool last season . per mertesacker says the ` arguing culture ' was lost at times . the german defender says confrontation is vital for a teams mentality . arsenal face liverpool on saturday in a crucial clash for both sides .
mother-of-three sara martin had not spoken for weeks after her health declined . but one day recently , she uttered the word ` florida ' and has not spoken since . now , her family is taking her to florida for what will likely be her final holiday . they leave for sarasota , south-west florida , today , in a rented van . mrs martin was diagnosed with aggressive , inoperable brain cancer in 2010 . she has three children - carlie , 12 , gretchen , 11 , and connor , 9 . her children are in school , so are not making the trip to coastal city .
nasa 's new horizons spacecraft sends back first color image of pluto . probe is nearing crucial point in epic voyage of more than 3 billion miles . probe will make closest approach to pluto on july 14 . probe expected to shed light on little-known third zone of solar system .
payment devices are protected by the same default password for more than two decades . researchers david byrne and charles henderson disclosed the password , 166816 , during the annual rsa security conference in california . they said the vendor had been using the same password since at least 1990 . the password is still being used by about 90 per cent of customers .
emma sulkowicz accused columbia university student paul nungesser of rape in 2013 . nungeser was cleared of wrongdoing , but sulkowitz went public with her allegations . sulkowski carried a mattress around campus to protest the school 's handling of the case . nunzesser is suing the school for allowing his accuser to publicly brand him a `` serial rapist ''
pippa middleton stepped out in london in chic ensemble . the 31-year-old writer accessorised with jemima vine flat shoes . pippa was glowing in plum dress at spectator life party last week . recently revealed she will be designing a dress for charity in november .
the influenza vaccine is arriving in australia a month later than expected . stocks include protection against h3n2 and b/phuket . the decision was triggered by a spike in flu-related deaths in the northern hemisphere . high-risk groups will be able to access free , government-funded flu shots from april 20 .
corinthians striker paolo guerrero is one of three players diagnosed . palmeiras reserve goalkeeper aranha and young santos striker leo cittadini also have been diagnosed with the disease . players have been forced to use insect repellent during practice sessions . health officials have asked clubs to check their training centres for mosquito breeding sites .
defense and prosecution make closing arguments in dzhokhar tsarnaev 's trial . tsarnaev , 21 , faces life in prison or the death penalty for working with his brother to explode bombs at the 2013 boston marathon . if tsarnaev is found guilty of at least one of the 17 capital counts , the trial will proceed to a second phase .
clay aiken called rep. renee ellmers a ` b ** ch ' and an ` idiot ' on monday 's howard stern show . aiken , 36 , lost to ellmers in november 's election for a seat in the house of representatives . he won the democratic primary when his chief rival , businessman keith crisco , died suddenly after a fall . aikens is the two-time runner-up on american idol , and he 's planning a third run for office .
pentagon announced tuesday that it will exhume and try to identify the remains of nearly 400 sailors and marines killed when the uss oklahoma sank in the bombing of pearl harbor . the ship capsized after being hit by nine torpedoes during the december 7 , 1941 surprise attack from japanese forces . altogether , 429 sailors and marine onboard were killed . hundreds were buried as unknowns at cemeteries in hawaii . in 1950 , they were reburied as unknowns at the national memorial cemetery of the pacific - also known as the punchbowl - inside a volcanic crater in honolulu .
operation black vote campaign to encourage minorities to register . former arsenal and england defender sol campbell is part of campaign . campbell has joined forces with david harewood , tinie tempah and ade adepitan . campaign features stars in striking photographs ahead of voting registration deadline .
rye silverman , 32 , is the newest real life model to star in the brand 's fashion truth campaign . the transgender comedian and writer has long been a fan of modcloth 's designs , and often posts images of herself wearing th
Download .txt
gitextract_hehlrgul/

├── README.md
├── data_utils.py
├── example/
│   ├── 0.json
│   └── README.md
├── main.py
├── model.py
├── output/
│   ├── README.md
│   ├── test.cnndm.ours
│   ├── test.cnndm.reference
│   ├── test.xsum.ours
│   └── test.xsum.reference
├── preprocess.py
├── requirements.txt
├── spec-file.txt
└── utils.py
Download .txt
SYMBOL INDEX (26 symbols across 5 files)

FILE: data_utils.py
  function to_cuda (line 15) | def to_cuda(batch, gpuid):
  function collate_mp (line 21) | def collate_mp(batch, pad_token_id, is_test=False):
  class ReRankingDataset (line 52) | class ReRankingDataset(Dataset):
    method __init__ (line 53) | def __init__(self, fdir, model_type, maxlen=-1, is_test=False, total_l...
    method __len__ (line 74) | def __len__(self):
    method bert_encode (line 77) | def bert_encode(self, x, max_len=-1):
    method __getitem__ (line 87) | def __getitem__(self, idx):

FILE: main.py
  function base_setting (line 30) | def base_setting(args):
  function evaluation (line 53) | def evaluation(args):
  function test (line 116) | def test(dataloader, scorer, args, gpuid):
  function run (line 155) | def run(rank, args):
  function main (line 256) | def main(args):

FILE: model.py
  function RankingLoss (line 7) | def RankingLoss(score, summary_score=None, margin=0, gold_margin=0, gold...
  class ReRanker (line 36) | class ReRanker(nn.Module):
    method __init__ (line 37) | def __init__(self, encoder, pad_token_id):
    method forward (line 42) | def forward(self, text_id, candidate_id, summary_id=None, require_gold...

FILE: preprocess.py
  function collect_diverse_beam_data (line 17) | def collect_diverse_beam_data(args):
  function build_diverse_beam (line 46) | def build_diverse_beam(input):
  function make_diverse_beam_data (line 72) | def make_diverse_beam_data(args):

FILE: utils.py
  class Recorder (line 8) | class Recorder():
    method __init__ (line 9) | def __init__(self, id, log=True):
    method write_config (line 19) | def write_config(self, args, models, name):
    method print (line 34) | def print(self, x=None):
    method plot (line 45) | def plot(self, tag, values, step):
    method __del__ (line 50) | def __del__(self):
    method save (line 55) | def save(self, model, name):
Copy disabled (too large) Download .json
Condensed preview — 15 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (10,368K chars).
[
  {
    "path": "README.md",
    "chars": 4108,
    "preview": "# SimCLS: A Simple Framework for Contrastive Learning of Abstractive Summarization (ACL 2021)\n\n\n## Overview\nSimCLS is a "
  },
  {
    "path": "data_utils.py",
    "chars": 4415,
    "preview": "from torch.utils.data import Dataset, DataLoader\nimport os\nimport json\nimport numpy as np\nimport torch\nfrom functools im"
  },
  {
    "path": "example/0.json",
    "chars": 13714,
    "preview": "{\"article\": [\"club tijuana star juan arango conjured memories luis suarez in his team 's 4-3 defeat by monterrey in the "
  },
  {
    "path": "example/README.md",
    "chars": 13,
    "preview": "Data Example\n"
  },
  {
    "path": "main.py",
    "chars": 12981,
    "preview": "import torch\nimport torch.nn as nn\nimport torch.nn.functional as F\nimport torch.optim as optim\nimport argparse\nimport mo"
  },
  {
    "path": "model.py",
    "chars": 2721,
    "preview": "# modified from https://github.com/maszhongming/MatchSum\nimport torch\nfrom torch import nn\nfrom transformers import Robe"
  },
  {
    "path": "output/README.md",
    "chars": 13,
    "preview": "Test Outputs\n"
  },
  {
    "path": "output/test.cnndm.ours",
    "chars": 3931592,
    "preview": "juan arango bit the shoulder of opponent jesus zavela in a moment of madness . the venezuelan icon was not booked by the"
  },
  {
    "path": "output/test.cnndm.reference",
    "chars": 3636564,
    "preview": "juan arango escaped punishment from the referee for biting jesus zavela . he could face a retrospective punishment for t"
  },
  {
    "path": "output/test.xsum.ours",
    "chars": 1233323,
    "preview": "`` i always wanted to be a hotelier , '' says frasers group chief executive choe swee swee .\nnorthern ireland 's euro 20"
  },
  {
    "path": "output/test.xsum.reference",
    "chars": 1463626,
    "preview": "on the first day in his new job , choe peng sum was given a fairly simple brief : `` just go make us a lot of money . ''"
  },
  {
    "path": "preprocess.py",
    "chars": 3642,
    "preview": "import json\nfrom compare_mt.rouge.rouge_scorer import RougeScorer\nfrom multiprocessing import Pool\nimport os\nimport rand"
  },
  {
    "path": "requirements.txt",
    "chars": 1933,
    "preview": "absl-py==0.8.1\nasn1crypto==1.3.0\nastor==0.8.0\nattrs==20.3.0\nbert-score==0.3.6\nblis==0.4.1\nboto==2.49.0\nboto3==1.11.0\nbot"
  },
  {
    "path": "spec-file.txt",
    "chars": 9643,
    "preview": "# This file may be used to create an environment using:\n# $ conda create --name <env> --file <this file>\n# platform: lin"
  },
  {
    "path": "utils.py",
    "chars": 1633,
    "preview": "import os\nfrom os.path import exists, join\nimport json\nimport torch\nfrom torch.utils.tensorboard import SummaryWriter\nfr"
  }
]

About this extraction

This page contains the full source code of the yixinL7/SimCLS GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 15 files (9.8 MB), approximately 2.6M tokens, and a symbol index with 26 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!