Exemplo n.º 1
0
    def create_and_check_model(
        self, config, input_ids, token_type_ids, input_mask, sequence_labels, token_labels, choice_labels
    ):
        model = TFRoFormerModel(config=config)
        inputs = {"input_ids": input_ids, "attention_mask": input_mask, "token_type_ids": token_type_ids}

        inputs = [input_ids, input_mask]
        result = model(inputs)

        result = model(input_ids)

        self.parent.assertEqual(result.last_hidden_state.shape, (self.batch_size, self.seq_length, self.hidden_size))
Exemplo n.º 2
0
 def test_model_from_pretrained(self):
     model = TFRoFormerModel.from_pretrained("junnyu/roformer_chinese_base")
     self.assertIsNotNone(model)