Ejemplo n.º 1
0
 def create_and_check_for_pretraining(
     self,
     config,
     input_ids,
     token_type_ids,
     input_mask,
     sequence_labels,
     token_labels,
     choice_labels,
     fake_token_labels,
 ):
     config.num_labels = self.num_labels
     model = FunnelForPreTraining(config=config)
     model.to(torch_device)
     model.eval()
     result = model(input_ids,
                    attention_mask=input_mask,
                    token_type_ids=token_type_ids,
                    labels=fake_token_labels)
     self.parent.assertEqual(result.logits.shape,
                             (self.batch_size, self.seq_length))