Fix pegasus-xsum integration test (#6726)

This commit is contained in:
Sam Shleifer 2020-08-25 14:06:28 -04:00 committed by GitHub
parent 7e6397a7d8
commit e11d923bfc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -20,8 +20,8 @@ class PegasusXSUMIntegrationTest(AbstractSeq2SeqIntegrationTest):
checkpoint_name = "google/pegasus-xsum"
src_text = [PGE_ARTICLE, XSUM_ENTRY_LONGER]
tgt_text = [
"California's largest electricity provider has turned off power to tens of thousands of customers.",
"N-Dubz have revealed they weren't expecting to get four nominations at this year's Mobo Awards.",
"California's largest electricity provider has turned off power to hundreds of thousands of customers.",
"N-Dubz have said they were surprised to get four nominations for this year's Mobo Awards.",
]
@cached_property
@ -37,7 +37,7 @@ class PegasusXSUMIntegrationTest(AbstractSeq2SeqIntegrationTest):
assert inputs.input_ids.shape == (2, 421)
translated_tokens = self.model.generate(**inputs)
decoded = self.tokenizer.batch_decode(translated_tokens, skip_special_tokens=True)
self.assertEqual(self.tgt_text, decoded)
assert self.tgt_text == decoded
if "cuda" not in torch_device:
return