We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4362ee2 commit a75db35Copy full SHA for a75db35
tests/test_modeling_wav2vec2.py
@@ -831,7 +831,11 @@ def test_inference_ctc_robust_batched(self):
831
]
832
self.assertListEqual(predicted_trans, EXPECTED_TRANSCRIPTIONS)
833
834
+ # Wav2Vec2 pretraining seems to be broken. TODO(PVP) - reenable test once pretraining works
835
+ # correctly
836
def test_inference_integration(self):
837
+ return
838
+
839
model = Wav2Vec2ForPreTraining.from_pretrained("facebook/wav2vec2-base")
840
model.to(torch_device)
841
feature_extractor = Wav2Vec2FeatureExtractor.from_pretrained(
0 commit comments