[Speech models] Disable non-existing chunking in tests (#15163)

This commit is contained in:
Patrick von Platen
2022-01-16 17:15:19 +01:00
committed by GitHub
parent 669e3c50c9
commit 7a787c68c6
6 changed files with 36 additions and 0 deletions

View File

@@ -518,6 +518,10 @@ class UniSpeechRobustModelTest(ModelTesterMixin, unittest.TestCase):
self.assertEqual(logits.shape, (1, 1498, 32))
@unittest.skip(reason="Feed forward chunking is not implemented")
def test_feed_forward_chunking(self):
pass
@slow
def test_model_from_pretrained(self):
model = UniSpeechModel.from_pretrained("microsoft/unispeech-large-1500h-cv")