Exemple #1
0
    def augment_batch_for_generation(self, batch: Batch,
                                     model: RagModel) -> Batch:
        """
        Augment batch for generation.

        For RAG Sequence, we retrieve prior to generation, as we do not consider the
        document probabilities until after generating all of the beams.

        :param batch:
            batch to augment
        :param model:
            model to possibly help with augmenting

        :return batch:
            return batch with text vec swapped out.
        """
        (expanded_input, _, doc_scores) = model.retrieve_and_concat(
            batch.text_vec,
            batch.text_vec.ne(self.null_idx).sum(1),
            batch.query_vec,
            batch.input_turn_cnt_vec,
        )
        doc_log_probs = F.log_softmax(doc_scores, dim=1)
        batch.src_text_vec = batch.text_vec
        batch.text_vec = expanded_input
        batch.doc_log_probs = doc_log_probs
        batch.batchsize = batch.text_vec.size(0)

        return batch
Exemple #2
0
    def batchify_image_features(self, batch: Batch) -> Batch:
        """
        Return the image features as a Tensor of the correct type.

        Fill in missing feature vectors. Here, we require image features to be saved in
        `batch` as a Tensor for passing through the image encoder. This is required for
        data_parallel.
        """

        # Checks/formatting of batch.image
        bsz = self._get_batch_size(batch)
        if batch.image is None or len(batch.image) == 0:
            batch.image = [None] * bsz
        else:
            assert len(batch.image) == bsz

        # Process all image feature vectors, or add in zero vectors if missing
        processed_features_list = []
        processed_zero_features = self._process_image_features(
            torch.zeros((self.image_features_dim, )))
        for orig_features in batch.image:
            if isinstance(orig_features, torch.Tensor):
                processed_features_list.append(
                    self._process_image_features(orig_features))
            else:
                if orig_features is not None:
                    warn_once(
                        'Unsupported image feature format. Image features will be ignored!'
                    )
                processed_features_list.append(processed_zero_features)

        # Turn into batchsize x image_features_dim for DataParallel
        batch.image = torch.stack(processed_features_list)

        return batch
    def batchify(self, *args, **kwargs):
        """Override batchify options for seq2seq."""
        kwargs['sort'] = True  # need sorted for pack_padded
        batch = super().batchify(*args, **kwargs)

        # Get some args needed for batchify
        obs_batch = args[0]
        sort = kwargs['sort']
        is_valid = (lambda obs: 'text_vec' in obs or 'image' in obs
                    )  # from TorchAgent.batchify

        # Run this part of TorchAgent's batchify to get exs in correct order

        # ==================== START COPIED FROM TORCHAGENT ===================
        if len(obs_batch) == 0:
            return Batch()

        valid_obs = [(i, ex) for i, ex in enumerate(obs_batch) if is_valid(ex)]

        if len(valid_obs) == 0:
            return Batch()

        valid_inds, exs = zip(*valid_obs)

        # TEXT
        xs, x_lens = None, None
        if any('text_vec' in ex for ex in exs):
            _xs = [ex.get('text_vec', self.EMPTY) for ex in exs]
            xs, x_lens = padded_tensor(_xs, self.NULL_IDX, self.use_cuda)
            if sort:
                sort = False  # now we won't sort on labels
                xs, x_lens, valid_inds, exs = argsort(x_lens,
                                                      xs,
                                                      x_lens,
                                                      valid_inds,
                                                      exs,
                                                      descending=True)

        # ======== END COPIED FROM TORCHAGENT ========

        # Add history to the batch
        history = [
            ConvAI2History(ex['text'], dictionary=self.dict) for ex in exs
        ]

        # Add CT control vars to batch
        ctrl_vec = get_ctrl_vec(exs, history,
                                self.control_settings)  # tensor or None
        if self.use_cuda and ctrl_vec is not None:
            ctrl_vec = ctrl_vec.cuda()

        # Replace the old namedtuple with a new one that includes ctrl_vec and history
        ControlBatch = namedtuple(
            'Batch',
            tuple(batch.keys()) + ('ctrl_vec', 'history'))
        batch = ControlBatch(ctrl_vec=ctrl_vec, history=history, **dict(batch))

        return batch
Exemple #4
0
    def eval_step(self, batch):
        """Generate a response to the input tokens.

        :param batch: parlai.core.torch_agent.Batch, contains tensorized
                      version of observations.

        Return predicted responses (list of strings of length batchsize).
        """
        item1 = {
            "text": "Do you like playing, or watching sports?",
            "labels": ["I like watching sports."],
            "label_candidates": list(batch.observations[0]["label_candidates"])
        }
        item1["label_candidates"].append(item1["labels"][0])

        item2 = {
            "text": "Do you think chess counts as a sport?",
            "labels": ["Yes, I think it does."],
            "label_candidates": list(batch.observations[0]["label_candidates"])
        }
        item2["label_candidates"].append(item2["labels"][0])
        batch = Batch(observations=[item1, item2])
        inputs, candidates = self._tokenize_observation(batch)
        # just predict
        self.model.eval()
        output = self.model(inputs.cuda())
        pred_text = self._get_predictions(output, candidates, 2)
        print(pred_text)
        print("EVALUATING")
        return Output(pred_text)
Exemple #5
0
    def _build_character_candidates(
        self, batch: Batch
    ) -> Tuple[torch.LongTensor, torch.LongTensor]:
        """
        Build set of character candidates from the incoming batch.

        :param batch:
            training/eval batch

        :return cand_vecs, label_inds:
            return [bsz, n_cands] set of candidates, as well as indices within dim 1
            for correct label
        """
        _cands, cand_vecs, label_inds = self._build_candidates(
            Batch(
                batchsize=batch.text_vec.size(0),
                is_training=batch.is_training,
                text_vec=batch.text_vec,
                label_vec=batch.character_vec,
                valid_indices=batch.valid_indices,
                candidate_vecs=batch.character_candidates,
                image=batch.image,
                rewards=batch.rewards,
                observations=batch.observations,
            ),
            self.opt['candidates']
            if batch.is_training
            else self.opt['eval_candidates'],
            mode='compute_loss',
        )
        return cand_vecs, label_inds
    def batchify(self, *args, **kwargs):
        """
        Override from TorchAgent
        Additionally batchify the distractor_text_vec and add it to batch
        """
        kwargs['sort'] = True  # need sort for pack_padded()
        batch = super().batchify(*args, **kwargs)
        sort = False  # we must not sort after super().batchify()

        exs = batch.observations
        d_text_vec, d_lens = None, None
        if any('distractor_text_vec' in ex for ex in exs):
            # Pad distractor vectors
            _d_text_vec = [
                ex.get('distractor_text_vec', self.EMPTY) for ex in exs
            ]
            _d_text_vec_flattened = list(chain(*_d_text_vec))
            d_text_vec, d_lens = self._pad_tensor(_d_text_vec_flattened)

            # Reshape to (batch_size, world_cardinality, max_length)
            bsz = len(exs)
            d_text_vec = d_text_vec.view(bsz, self.world_cardinality, -1)
            d_lens = list_to_matrix(d_lens, self.world_cardinality)

        batch = Batch(distractor_text_vec=d_text_vec,
                      distractor_text_lengths=d_lens,
                      **dict(batch))

        return batch
Exemple #7
0
 def _set_batch_skip_search(self, valid_exs: List[Message],
                            batch: Batch) -> Batch:
     skip_search = [
         ex.get(self.opt['skip_search_key'], False) for ex in valid_exs
     ]
     batch.skip_search = torch.BoolTensor(skip_search)
     return batch
Exemple #8
0
    def set_batch_query(self, batch: Batch, queries: List[torch.LongTensor]) -> Batch:
        """
        Put the queries in the batch.

        :param batch:
            batch to put queries in
        :param queries:
            list of query tokens, presumably

        :return batch:
            return the batch, with queries.
        """
        qs, q_lens = self._pad_tensor(queries)
        batch.query_vec = qs
        batch.query_lengths = torch.LongTensor(q_lens)
        return batch
Exemple #9
0
    def test_translation_en_to_fr(self):
        """
        From Huggingface.
        """
        cfg_name = 'translation_en_to_fr'
        cfg = TASK_CONFIGS[cfg_name]
        self.agent.opt['t5_generation_config'] = cfg_name

        en_text = ' This image section from an infrared recording by the Spitzer telescope shows a "family portrait" of countless generations of stars: the oldest stars are seen as blue dots. '

        text_vec = (torch.LongTensor(
            self.agent.dict.txt2vec(cfg['prefix'] +
                                    en_text)).unsqueeze(0).to(device))

        generations, _ = self.agent._generate(
            Batch(text_vec=text_vec),
            beam_size=4,
            max_ts=100,
            overrides={
                'max_length': 100,
                'no_repeat_ngram_size': 3,
                'length_penalty': 2.0,
            },
        )

        translation = self.agent.dict.vec2txt(
            generations[0][0], clean_up_tokenization_spaces=False)
        new_truncated_translation = (
            "Cette section d'images provenant de l'enregistrement infrarouge effectué par le télescope Spitzer montre "
            "un "
            "« portrait familial » de générations innombrables d’étoiles : les plus anciennes sont observées "
            "sous forme "
            "de points bleus.")

        self.assertEqual(translation, new_truncated_translation)
Exemple #10
0
 def _set_batch_memory_vec(self, valid_exs: List[Message], batch: Batch) -> Batch:
     """
     Set the memory vec for the batch.
     """
     mems = []
     num_mems = []
     for ex in valid_exs:
         if ex.get('memory_vec') is not None:
             ms, _ = self._pad_tensor(ex['memory_vec'])
             mems.append(ms)
             num_mems.append(len(ex['memory_vec']))
         else:
             num_mems.append(0)
     batch.memory_vec = padded_3d(mems)
     batch.num_memories = torch.LongTensor(num_mems)
     return batch
Exemple #11
0
 def _set_batch_memory_decoder_vec(self, valid_exs: List[Message],
                                   batch: Batch) -> Batch:
     """
     Set the memory decoder vec for the batch.
     """
     memory_dec_toks = []
     num_memory_dec_toks = []
     for ex in valid_exs:
         if ex.get('memory_decoder_vec') is not None:
             p_sum_vecs, _lens = self._pad_tensor(ex['memory_decoder_vec'])
             memory_dec_toks.append(p_sum_vecs)
             num_memory_dec_toks.append(len(ex['memory_decoder_vec']))
         else:
             num_memory_dec_toks.append(0)
     batch.memory_decoder_vec = padded_3d(memory_dec_toks)
     batch.num_memory_decoder_vecs = torch.LongTensor(num_memory_dec_toks)
     return batch
Exemple #12
0
    def batchify_image_features(self, batch: Batch) -> Batch:
        """
        Format and return the batched image features.

        Image features represented by tensors will set to the right type.
        """
        if type(batch.image) == list and any(b is not None for b in batch.image):
            images = []
            for img in batch.image:
                if isinstance(img, torch.Tensor):
                    img = self._process_image_features(img)
                images.append(img)
            batch.image = images
        else:
            images = [None] * len(batch.valid_indices)
            batch.image = images
        return batch
Exemple #13
0
 def _dummy_batch(self, batchsize, maxlen):
     """
     Creates a dummy batch. This is used to preinitialize the cuda buffer,
     or otherwise force a null backward pass after an OOM.
     """
     return Batch(
         text_vec=torch.ones(batchsize, maxlen).long().cuda(),
         label_vec=torch.ones(batchsize, 2).long().cuda(),
     )
Exemple #14
0
 def _dummy_batch(self, batchsize: int, maxlen: int) -> Batch:
     """
     Override to include image feats.
     """
     return Batch(
         text_vec=torch.ones(batchsize, maxlen).long().cuda(),
         label_vec=torch.ones(batchsize, 2).long().cuda(),
         image=torch.ones(batchsize, self.image_features_dim).cuda(),
         personalities=torch.ones(batchsize, self.opt.get('embedding_size')).cuda(),
     )
Exemple #15
0
 def _set_batch_query_generator_vec(
     self, valid_exs: List[Message], batch: Batch
 ) -> Batch:
     """
     Set the query generator vec for the batch.
     """
     _q_gens = [ex.get('query_generator_vec', self.EMPTY) for ex in valid_exs]
     q_gen_vecs, _lens = self._pad_tensor(_q_gens)
     batch.query_generator_vec = q_gen_vecs
     return batch
Exemple #16
0
    def augment_batch_for_generation(self, batch: Batch, model: RagModel) -> Batch:
        """
        Augment batch for doc_only turn marginalization.

        src_text_vec and input_turns_cnt are each used during beam re-ranking;
        setting batch.batchsize lets this interact nicely with TGA._generate.

        :param batch:
            batch to augment
        :param model:
            model to possibly help with augmenting

        :return batch:
            return batch with appropriate augmentations.
        """
        if self.turn_marginalize == 'doc_only':
            input_turns_cnt = batch.input_turn_cnt_vec
            batch.batchsize = input_turns_cnt.sum().item()
            batch.src_text_vec = batch.text_vec
            batch.input_turns_cnt = input_turns_cnt
        return batch
Exemple #17
0
 def _set_batch_gold_doc_vec(self, valid_exs: List[Message], batch: Batch) -> Batch:
     """
     Set the gold docs vecs for the batch.
     """
     docs = []
     titles = []
     num_docs = []
     for ex in valid_exs:
         if ex.get('gold_doc_vec') is not None:
             ds, _ = self._pad_tensor(ex['gold_doc_vec'])
             ts, _ = self._pad_tensor(ex['gold_doc_title_vec'])
             docs.append(ds)
             titles.append(ts)
             num_docs.append(len(ex['gold_doc_vec']))
         else:
             docs.append(self.EMPTY.unsqueeze(0))
             titles.append(self.EMPTY.unsqueeze(0))
             num_docs.append(0)
     batch.gold_doc_vec = padded_3d(docs)
     batch.gold_doc_title_vec = padded_3d(titles)
     batch.num_gold_docs = torch.LongTensor(num_docs)
     return batch
Exemple #18
0
    def _dummy_batch(self, batchsize, maxlen):
        """
        Create a dummy batch.

        This is used to preinitialize the cuda buffer, or otherwise force a
        null backward pass after an OOM.

        If your model uses additional inputs beyond text_vec and label_vec,
        you will need to override it to add additional fields.
        """
        return Batch(
            text_vec=torch.ones(batchsize, maxlen).long().cuda(),
            label_vec=torch.ones(batchsize, 2).long().cuda(),
        )
Exemple #19
0
 def train_step(self, batch):
     self.biencoder.train_step(batch)
     # the crossencoder requires batches that are smaller.
     # split the batch into smaller pieces
     outc = []
     step = self.crossencoder_batchsize
     for start in range(0, len(batch.text_vec), step):
         mbatch = Batch(text_vec=batch.text_vec[start:start + step],
                        label_vec=batch.label_vec[start:start + step],
                        candidate_vecs=batch.candidate_vecs[start:start +
                                                            step],
                        candidates=batch.candidates[start:start + step])
         outc.append(self.crossencoder.train_step(mbatch))
     return Output(text=[text for out in outc for text in out.text])
Exemple #20
0
 def batchify(self, obs_batch, sort=False):
     batch = Batch(batchsize=0)
     if len(obs_batch) == 0:
         return batch
     valid_obs = [(i, ex) for i, ex in enumerate(obs_batch)
                  if self.is_valid(ex)]
     if len(valid_obs) == 0:
         return batch
     valid_inds, exs = zip(*valid_obs)
     src_text_numb = [len(obs['text_vec']['src_text']) for obs in obs_batch]
     retval = self._collate_fn(obs_batch)
     batch = Batch(batchsize=len(valid_obs),
                   valid_indices=valid_inds,
                   no_answer_reply=obs_batch[0].get('no_answer_reply',
                                                    'CANNOTANSWER'),
                   src=retval['src'],
                   src_char=retval['src_char'],
                   src_text=retval['src_text'],
                   bg=retval['bg'],
                   bg_char=retval['bg_char'],
                   bg_text=retval['bg_text'],
                   tgt_in=retval['tgt_in'],
                   tgt_out=retval['tgt_out'],
                   tgt_out_char=retval['tgt_out_char'],
                   tgt_text=retval['tgt_text'],
                   turn_ids=retval['turn_ids'],
                   ctx=retval['ctx'],
                   ctx_char=retval['ctx_char'],
                   ctx_text=retval['ctx_text'],
                   start=retval['start'],
                   end=retval['end'],
                   yesno=retval['yesno'],
                   followup=retval['followup'],
                   this_turn=retval['this_turn'],
                   ans_mask=retval['ans_mask'])
     return batch
Exemple #21
0
    def batchify(self, obs_batch: List[Message], sort: bool = False) -> Batch:
        """
        Override TA.batchify to incorporate query and input turn vecs.
        """
        assert not sort
        if len(obs_batch) == 0:
            return Batch(batchsize=0)

        valid_exs = [ex for ex in obs_batch if self.is_valid(ex)]

        if len(valid_exs) == 0:
            return Batch(batchsize=0)

        batch = self._generation_agent.batchify(self, obs_batch, sort)

        if any(ex.get('query_vec') is not None for ex in valid_exs):
            _qs = []
            for ex in valid_exs:
                q = ex.get('query_vec', self.EMPTY)
                if type(q) is list and type(q[0]) is list:
                    # handling input turns
                    _qs += q
                else:
                    _qs.append(q)
            self.set_batch_query(batch, _qs)

        batch.input_turn_cnt_vec = None
        if any(ex.get('input_turn_cnt_vec') is not None for ex in valid_exs):
            batch.input_turn_cnt_vec = torch.cat(
                [
                    ex.get('input_turn_cnt_vec', torch.LongTensor([1]))
                    for ex in valid_exs
                ],
                dim=0,
            )
        return batch
Exemple #22
0
 def _dummy_batch(self, batchsize: int, maxlen: int) -> Batch:
     """
     Override to include image feats.
     """
     b = super()._dummy_batch(batchsize, maxlen)
     image = torch.ones(batchsize, self.image_features_dim).cuda()
     if self.fp16:
         image = image.half()
     return Batch(
         text_vec=b.text_vec,
         label_vec=b.label_vec,
         image=image,
         personalities=torch.ones(batchsize,
                                  self.opt['embedding_size']).cuda(),
     )
Exemple #23
0
 def eval_step(self, batch):
     """ We pass the batch first in the biencoder, then filter with crossencoder
     """
     output_biencoder = self.biencoder.eval_step(batch)
     if output_biencoder is None:
         return None
     new_candidate_vecs = [
         self.biencoder.vectorize_fixed_candidates(cands[0:self.top_n_bi])
         for cands in output_biencoder.text_candidates
     ]
     new_candidates = [[c for c in cands[0:self.top_n_bi]]
                       for cands in output_biencoder.text_candidates
                       if cands is not None]
     copy_batch = Batch(text_vec=batch.text_vec,
                        candidate_vecs=new_candidate_vecs,
                        candidates=new_candidates)
     return self.crossencoder.eval_step(copy_batch)
Exemple #24
0
    def test_small(self):
        """
        From Huggingface.
        """
        opt = ParlaiParser(True, True).parse_args([
            '--model', 'hugging_face/t5', '--t5-model-arch', 't5-small',
            '--no-cuda'
        ])
        agent_small = create_agent(opt)
        text_vec = torch.LongTensor(
            agent_small.dict.txt2vec("Hello there")).unsqueeze(0)
        label_vec = torch.LongTensor(
            agent_small.dict.txt2vec("Hi I am")).unsqueeze(0)

        score = -agent_small.compute_loss(
            Batch(text_vec=text_vec, label_vec=label_vec)) * label_vec.size(1)
        EXPECTED_SCORE = -19.0845
        self.assertAlmostEqual(score.item(), EXPECTED_SCORE, places=3)
Exemple #25
0
 def eval_step(self, batch):
     """ We pass the batch first in the biencoder, then filter with crossencoder
     """
     output_biencoder = self.biencoder.eval_step(batch)
     if output_biencoder is None:
         return None
     new_candidate_vecs = [[
         surround(batch.text_vec.new_tensor(self.dict.txt2vec(c)),
                  self.START_IDX, self.END_IDX)
         for c in cands[0:self.top_n_bi]
     ] for cands in output_biencoder.text_candidates]
     new_candidates = [[c for c in cands[0:self.top_n_bi]]
                       for cands in output_biencoder.text_candidates
                       if cands is not None]
     copy_batch = Batch(text_vec=batch.text_vec,
                        candidate_vecs=new_candidate_vecs,
                        candidates=new_candidates)
     return self.crossencoder.eval_step(copy_batch)
Exemple #26
0
    def test_translation_en_to_ro(self):
        """
        From Huggingface.
        """
        cfg_name = 'translation_en_to_ro'
        cfg = TASK_CONFIGS[cfg_name]
        self.agent.opt['t5_generation_config'] = cfg_name
        en_text = "Taco Bell said it plans to add 2,000 locations in the US by 2022."
        expected_translation = "Taco Bell a declarat că intenţionează să adauge 2 000 de locaţii în SUA până în 2022."

        text_vec = (torch.LongTensor(
            self.agent.dict.txt2vec(cfg['prefix'] +
                                    en_text)).unsqueeze(0).to(device))
        generations, _ = self.agent._generate(Batch(text_vec=text_vec),
                                              beam_size=4,
                                              max_ts=300)
        translation = self.agent.dict.vec2txt(
            generations[0][0], clean_up_tokenization_spaces=False)
        self.assertEqual(translation, expected_translation)
Exemple #27
0
    def test_translation_en_to_de(self):
        """
        From Huggingface.
        """
        cfg_name = 'translation_en_to_de'
        cfg = TASK_CONFIGS[cfg_name]
        self.agent.opt['t5_generation_config'] = cfg_name

        en_text = '"Luigi often said to me that he never wanted the brothers to end up in court", she wrote.'
        expected_translation = '"Luigi sagte mir oft, dass er nie wollte, dass die Brüder am Gericht sitzen", schrieb sie.'

        text_vec = (torch.LongTensor(
            self.agent.dict.txt2vec(cfg['prefix'] +
                                    en_text)).unsqueeze(0).to(device))
        generations, _ = self.agent._generate(Batch(text_vec=text_vec),
                                              beam_size=4,
                                              max_ts=300)
        translation = self.agent.dict.vec2txt(
            generations[0][0], clean_up_tokenization_spaces=False)
        self.assertEqual(translation, expected_translation)
Exemple #28
0
    def test_summarization(self):
        """
        From Huggingface.
        """
        cfg_name = 'summarization'
        cfg = TASK_CONFIGS[cfg_name]
        self.agent.opt['t5_generation_config'] = cfg_name
        FRANCE_ARTICLE = 'Marseille, France (CNN)The French prosecutor leading an investigation into the crash of Germanwings Flight 9525 insisted Wednesday that he was not aware of any video footage from on board the plane. Marseille prosecutor Brice Robin told CNN that "so far no videos were used in the crash investigation." He added, "A person who has such a video needs to immediately give it to the investigators." Robin\'s comments follow claims by two magazines, German daily Bild and French Paris Match, of a cell phone video showing the harrowing final seconds from on board Germanwings Flight 9525 as it crashed into the French Alps. All 150 on board were killed. Paris Match and Bild reported that the video was recovered from a phone at the wreckage site. The two publications described the supposed video, but did not post it on their websites. The publications said that they watched the video, which was found by a source close to the investigation. "One can hear cries of \'My God\' in several languages," Paris Match reported. "Metallic banging can also be heard more than three times, perhaps of the pilot trying to open the cockpit door with a heavy object.  Towards the end, after a heavy shake, stronger than the others, the screaming intensifies. Then nothing." "It is a very disturbing scene," said Julian Reichelt, editor-in-chief of Bild online. An official with France\'s accident investigation agency, the BEA, said the agency is not aware of any such video. Lt. Col. Jean-Marc Menichini, a French Gendarmerie spokesman in charge of communications on rescue efforts around the Germanwings crash site, told CNN that the reports were "completely wrong" and "unwarranted." Cell phones have been collected at the site, he said, but that they "hadn\'t been exploited yet." Menichini said he believed the cell phones would need to be sent to the Criminal Research Institute in Rosny sous-Bois, near Paris, in order to be analyzed by specialized technicians working hand-in-hand with investigators. But none of the cell phones found so far have been sent to the institute, Menichini said. Asked whether staff involved in the search could have leaked a memory card to the media, Menichini answered with a categorical "no." Reichelt told "Erin Burnett: Outfront" that he had watched the video and stood by the report, saying Bild and Paris Match are "very confident" that the clip is real. He noted that investigators only revealed they\'d recovered cell phones from the crash site after Bild and Paris Match published their reports. "That is something we did not know before. ... Overall we can say many things of the investigation weren\'t revealed by the investigation at the beginning," he said. What was mental state of Germanwings co-pilot? German airline Lufthansa confirmed Tuesday that co-pilot Andreas Lubitz had battled depression years before he took the controls of Germanwings Flight 9525, which he\'s accused of deliberately crashing last week in the French Alps. Lubitz told his Lufthansa flight training school in 2009 that he had a "previous episode of severe depression," the airline said Tuesday. Email correspondence between Lubitz and the school discovered in an internal investigation, Lufthansa said, included medical documents he submitted in connection with resuming his flight training. The announcement indicates that Lufthansa, the parent company of Germanwings, knew of Lubitz\'s battle with depression, allowed him to continue training and ultimately put him in the cockpit. Lufthansa, whose CEO Carsten Spohr previously said Lubitz was 100% fit to fly, described its statement Tuesday as a "swift and seamless clarification" and said it was sharing the information and documents -- including training and medical records -- with public prosecutors. Spohr traveled to the crash site Wednesday, where recovery teams have been working for the past week to recover human remains and plane debris scattered across a steep mountainside. He saw the crisis center set up in Seyne-les-Alpes, laid a wreath in the village of Le Vernet, closer to the crash site, where grieving families have left flowers at a simple stone memorial. Menichini told CNN late Tuesday that no visible human remains were left at the site but recovery teams would keep searching. French President Francois Hollande, speaking Tuesday, said that it should be possible to identify all the victims using DNA analysis by the end of the week, sooner than authorities had previously suggested. In the meantime, the recovery of the victims\' personal belongings will start Wednesday, Menichini said. Among those personal belongings could be more cell phones belonging to the 144 passengers and six crew on board. Check out the latest from our correspondents . The details about Lubitz\'s correspondence with the flight school during his training were among several developments as investigators continued to delve into what caused the crash and Lubitz\'s possible motive for downing the jet. A Lufthansa spokesperson told CNN on Tuesday that Lubitz had a valid medical certificate, had passed all his examinations and "held all the licenses required." Earlier, a spokesman for the prosecutor\'s office in Dusseldorf, Christoph Kumpa, said medical records reveal Lubitz suffered from suicidal tendencies at some point before his aviation career and underwent psychotherapy before he got his pilot\'s license. Kumpa emphasized there\'s no evidence suggesting Lubitz was suicidal or acting aggressively before the crash. Investigators are looking into whether Lubitz feared his medical condition would cause him to lose his pilot\'s license, a European government official briefed on the investigation told CNN on Tuesday. While flying was "a big part of his life," the source said, it\'s only one theory being considered. Another source, a law enforcement official briefed on the investigation, also told CNN that authorities believe the primary motive for Lubitz to bring down the plane was that he feared he would not be allowed to fly because of his medical problems. Lubitz\'s girlfriend told investigators he had seen an eye doctor and a neuropsychologist, both of whom deemed him unfit to work recently and concluded he had psychological issues, the European government official said. But no matter what details emerge about his previous mental health struggles, there\'s more to the story, said Brian Russell, a forensic psychologist. "Psychology can explain why somebody would turn rage inward on themselves about the fact that maybe they weren\'t going to keep doing their job and they\'re upset about that and so they\'re suicidal," he said. "But there is no mental illness that explains why somebody then feels entitled to also take that rage and turn it outward on 149 other people who had nothing to do with the person\'s problems." Germanwings crash compensation: What we know . Who was the captain of Germanwings Flight 9525? CNN\'s Margot Haddad reported from Marseille and Pamela Brown from Dusseldorf, while Laura Smith-Spark wrote from London. CNN\'s Frederik Pleitgen, Pamela Boykoff, Antonia Mortensen, Sandrine Amiel and Anna-Maja Rappard contributed to this report.'  # @noqa
        SHORTER_ARTICLE = '(CNN)The Palestinian Authority officially became the 123rd member of the International Criminal Court on Wednesday, a step that gives the court jurisdiction over alleged crimes in Palestinian territories. The formal accession was marked with a ceremony at The Hague, in the Netherlands, where the court is based. The Palestinians signed the ICC\'s founding Rome Statute in January, when they also accepted its jurisdiction over alleged crimes committed "in the occupied Palestinian territory, including East Jerusalem, since June 13, 2014." Later that month, the ICC opened a preliminary examination into the situation in Palestinian territories, paving the way for possible war crimes investigations against Israelis. As members of the court, Palestinians may be subject to counter-charges as well. Israel and the United States, neither of which is an ICC member, opposed the Palestinians\' efforts to join the body. But Palestinian Foreign Minister Riad al-Malki, speaking at Wednesday\'s ceremony, said it was a move toward greater justice. "As Palestine formally becomes a State Party to the Rome Statute today, the world is also a step closer to ending a long era of impunity and injustice," he said, according to an ICC news release. "Indeed, today brings us closer to our shared goals of justice and peace." Judge Kuniko Ozaki, a vice president of the ICC, said acceding to the treaty was just the first step for the Palestinians. "As the Rome Statute today enters into force for the State of Palestine, Palestine acquires all the rights as well as responsibilities that come with being a State Party to the Statute. These are substantive commitments, which cannot be taken lightly," she said. Rights group Human Rights Watch welcomed the development. "Governments seeking to penalize Palestine for joining the ICC should immediately end their pressure, and countries that support universal acceptance of the court\'s treaty should speak out to welcome its membership," said Balkees Jarrah, international justice counsel for the group. "What\'s objectionable is the attempts to undermine international justice, not Palestine\'s decision to join a treaty to which over 100 countries around the world are members." In January, when the preliminary ICC examination was opened, Israeli Prime Minister Benjamin Netanyahu described it as an outrage, saying the court was overstepping its boundaries. The United States also said it "strongly" disagreed with the court\'s decision. "As we have said repeatedly, we do not believe that Palestine is a state and therefore we do not believe that it is eligible to join the ICC," the State Department said in a statement. It urged the warring sides to resolve their differences through direct negotiations. "We will continue to oppose actions against Israel at the ICC as counterproductive to the cause of peace," it said. But the ICC begs to differ with the definition of a state for its purposes and refers to the territories as "Palestine." While a preliminary examination is not a formal investigation, it allows the court to review evidence and determine whether to investigate suspects on both sides. Prosecutor Fatou Bensouda said her office would "conduct its analysis in full independence and impartiality." The war between Israel and Hamas militants in Gaza last summer left more than 2,000 people dead. The inquiry will include alleged war crimes committed since June. The International Criminal Court was set up in 2002 to prosecute genocide, crimes against humanity and war crimes. CNN\'s Vasco Cotovio, Kareem Khadder and Faith Karimi contributed to this report.'
        IRAN_ARTICLE = "(CNN)The United States and its negotiating partners reached a very strong framework agreement with Iran in Lausanne, Switzerland, on Thursday that limits Iran's nuclear program in such a way as to effectively block it from building a nuclear weapon. Expect pushback anyway, if the recent past is any harbinger. Just last month, in an attempt to head off such an agreement, House Speaker John Boehner invited Israeli Prime Minister Benjamin Netanyahu to preemptively blast it before Congress, and 47 senators sent a letter to the Iranian leadership warning them away from a deal. The debate that has already begun since the announcement of the new framework will likely result in more heat than light. It will not be helped by the gathering swirl of dubious assumptions and doubtful assertions. Let us address some of these: . The most misleading assertion, despite universal rejection by experts, is that the negotiations' objective at the outset was the total elimination of any nuclear program in Iran. That is the position of Netanyahu and his acolytes in the U.S. Congress. But that is not and never was the objective. If it had been, there would have been no Iranian team at the negotiating table. Rather, the objective has always been to structure an agreement or series of agreements so that Iran could not covertly develop a nuclear arsenal before the United States and its allies could respond. The new framework has exceeded expectations in achieving that goal. It would reduce Iran's low-enriched uranium stockpile, cut by two-thirds its number of installed centrifuges and implement a rigorous inspection regime. Another dubious assumption of opponents is that the Iranian nuclear program is a covert weapons program. Despite sharp accusations by some in the United States and its allies, Iran denies having such a program, and U.S. intelligence contends that Iran has not yet made the decision to build a nuclear weapon. Iran's continued cooperation with International Atomic Energy Agency inspections is further evidence on this point, and we'll know even more about Iran's program in the coming months and years because of the deal. In fact, the inspections provisions that are part of this agreement are designed to protect against any covert action by the Iranians. What's more, the rhetoric of some members of Congress has implied that the negotiations have been between only the United States and Iran (i.e., the 47 senators' letter warning that a deal might be killed by Congress or a future president). This of course is not the case. The talks were between Iran and the five permanent members of the U.N. Security Council (United States, United Kingdom, France, China and Russia) plus Germany, dubbed the P5+1. While the United States has played a leading role in the effort, it negotiated the terms alongside its partners. If the agreement reached by the P5+1 is rejected by Congress, it could result in an unraveling of the sanctions on Iran and threaten NATO cohesion in other areas. Another questionable assertion is that this agreement contains a sunset clause, after which Iran will be free to do as it pleases. Again, this is not the case. Some of the restrictions on Iran's nuclear activities, such as uranium enrichment, will be eased or eliminated over time, as long as 15 years. But most importantly, the framework agreement includes Iran's ratification of the Additional Protocol, which allows IAEA inspectors expanded access to nuclear sites both declared and nondeclared. This provision will be permanent. It does not sunset. Thus, going forward, if Iran decides to enrich uranium to weapons-grade levels, monitors will be able to detect such a move in a matter of days and alert the U.N. Security Council. Many in Congress have said that the agreement should be a formal treaty requiring the Senate to \"advise and consent.\" But the issue is not suited for a treaty. Treaties impose equivalent obligations on all signatories. For example, the New START treaty limits Russia and the United States to 1,550 deployed strategic warheads. But any agreement with Iran will not be so balanced.  The restrictions and obligations in the final framework agreement will be imposed almost exclusively on Iran. The P5+1 are obligated only to ease and eventually remove most but not all economic sanctions, which were imposed as leverage to gain this final deal. Finally some insist that any agreement must address Iranian missile programs, human rights violations or support for Hamas or Hezbollah.  As important as these issues are, and they must indeed be addressed, they are unrelated to the most important aim of a nuclear deal: preventing a nuclear Iran.  To include them in the negotiations would be a poison pill. This agreement should be judged on its merits and on how it affects the security of our negotiating partners and allies, including Israel. Those judgments should be fact-based, not based on questionable assertions or dubious assumptions."
        ARTICLE_SUBWAY = 'New York (CNN)When Liana Barrientos was 23 years old, she got married in Westchester County, New York. A year later, she got married again in Westchester County, but to a different man and without divorcing her first husband.  Only 18 days after that marriage, she got hitched yet again. Then, Barrientos declared "I do" five more times, sometimes only within two weeks of each other. In 2010, she married once more, this time in the Bronx. In an application for a marriage license, she stated it was her "first and only" marriage. Barrientos, now 39, is facing two criminal counts of "offering a false instrument for filing in the first degree," referring to her false statements on the 2010 marriage license application, according to court documents. Prosecutors said the marriages were part of an immigration scam. On Friday, she pleaded not guilty at State Supreme Court in the Bronx, according to her attorney, Christopher Wright, who declined to comment further. After leaving court, Barrientos was arrested and charged with theft of service and criminal trespass for allegedly sneaking into the New York subway through an emergency exit, said Detective Annette Markowski, a police spokeswoman. In total, Barrientos has been married 10 times, with nine of her marriages occurring between 1999 and 2002.  All occurred either in Westchester County, Long Island, New Jersey or the Bronx. She is believed to still be married to four men, and at one time, she was married to eight men at once, prosecutors say. Prosecutors said the immigration scam involved some of her husbands, who filed for permanent residence status shortly after the marriages.  Any divorces happened only after such filings were approved. It was unclear whether any of the men will be prosecuted. The case was referred to the Bronx District Attorney\'s Office by Immigration and Customs Enforcement and the Department of Homeland Security\'s Investigation Division. Seven of the men are from so-called "red-flagged" countries, including Egypt, Turkey, Georgia, Pakistan and Mali. Her eighth husband, Rashid Rajput, was deported in 2006 to his native Pakistan after an investigation by the Joint Terrorism Task Force. If convicted, Barrientos faces up to four years in prison.  Her next court appearance is scheduled for May 18.'

        expected_summaries = [
            'prosecutor: "so far no videos were used in the crash investigation" two magazines claim to have found a cell phone video of the final seconds . "one can hear cries of \'My God\' in several languages," one magazine says .',
            "the formal accession was marked by a ceremony at The Hague, in the Netherlands . the ICC opened a preliminary examination into the situation in the occupied Palestinian territory . as members of the court, Palestinians may be subject to counter-charges as well .",
            "the u.s. and its negotiating partners reached a very strong framework agreement with Iran . aaron miller: the debate that has already begun since the announcement of the new framework will likely result in more heat than light . the deal would reduce Iran's low-enriched uranium stockpile, cut centrifuges and implement a rigorous inspection regime .",
            'prosecutors say the marriages were part of an immigration scam . if convicted, barrientos faces two criminal counts of "offering a false instrument for filing in the first degree" she has been married 10 times, with nine of her marriages occurring between 1999 and 2002 .',
        ]

        text_vec, _ = padded_tensor([
            self.agent.dict.txt2vec(cfg['prefix'] + s) for s in
            [FRANCE_ARTICLE, SHORTER_ARTICLE, IRAN_ARTICLE, ARTICLE_SUBWAY]
        ])
        self.assertEqual(512, text_vec.shape[1])

        generations, _ = self.agent._generate(
            Batch(text_vec=text_vec.to(device)),
            beam_size=4,
            max_ts=142,
            overrides={
                'max_length': 142,
                'min_length': 56
            },
        )
        decoded = [
            self.agent.dict.vec2txt(g[0], clean_up_tokenization_spaces=False)
            for g in generations
        ]

        self.assertListEqual(expected_summaries, decoded)
Exemple #29
0
    def _dummy_batch(self, batchsize, maxlen):
        """
        Create a dummy batch.

        This is used to preinitialize the cuda buffer, or otherwise force a
        null backward pass after an OOM.

        If your model uses additional inputs beyond text_vec and label_vec,
        you will need to override it to add additional fields.
        """
        b = Batch(
            text_vec=torch.ones(batchsize, maxlen).long().cuda(),
            label_vec=torch.ones(batchsize, maxlen).long().cuda(),
            text_lengths=[maxlen] * batchsize,
        )
        b['u1'] = b['text_vec']
        b['u2'] = b['text_vec']
        b['u3'] = b['text_vec']

        b['u1_lens'] = b['text_lengths']
        b['u2_lens'] = b['text_lengths']
        b['u3_lens'] = b['text_lengths']

        return b
Exemple #30
0
    def batchify(self, *args, **kwargs):
        """
        Override batchify options for seq2seq.
        """
        kwargs['sort'] = True  # need sorted for pack_padded
        b = super().batchify(*args, **kwargs)
        u1s, u2s, u3s = [], [], []
        if self.is_training:
            for observation in b['observations']:
                tvec = observation['text_vec']
                indices = [
                    i for i, x in enumerate(tvec) if x == self.dict['</s>']
                ]
                try:
                    u1s.append(
                        torch.LongTensor(tvec[1:indices[0]]).reshape(-1))
                    u2s.append(
                        torch.LongTensor(tvec[indices[0] +
                                              2:indices[1]]).reshape(-1))
                    u3s.append(
                        torch.LongTensor(tvec[indices[1] +
                                              2:indices[2]]).reshape(-1))
                except IndexError:
                    return Batch()
                # in case of invalid triple
                if len(u1s[-1]) <= 0 or len(u2s[-1]) <= 0 or len(u3s[-1]) <= 0:
                    return Batch()
        else:
            if len(self.history.history_vecs) >= 2:
                u1s = [self.history.history_vecs[-2]]
                u2s = [self.history.history_vecs[-1]]
                u3s = [[self.dict['hello']]]
            elif len(self.history.history_vecs) >= 1:
                u1s = [[self.dict['hello']]]
                u2s = [self.history.history_vecs[-1]]
                u3s = [[self.dict['hello']]]
        # print('u1s',len(u1s),'u2s',len(u2s),'u3s',len(u3s))
        # print('u1s lens ', [x.size(0) for x in u1s])
        # print('u2s lens ', [x.size(0) for x in u2s])
        # print('u3s lens ', [x.size(0) for x in u3s])
        u1, u1_lens = self._pad_tensor(u1s)
        u2, u2_lens = self._pad_tensor(u2s)
        u3, u3_lens = self._pad_tensor(u3s)

        # print('u1 ITEM ', u1.max().item())
        # print('u2 ITEM ', u2.max().item())
        # print('u3 ITEM ', u3.max().item())

        b['label_vec'] = u3

        b['u1'] = u1
        b['u1_lens'] = u1_lens
        b['u2'] = u2
        b['u2_lens'] = u2_lens
        b['u3'] = u3
        b['u3_lens'] = u3_lens

        if u1 is None or u2 is None or u3 is None:
            return Batch()

        return b