Can anyone recommend a good STT model that is well suited to work on with tensorflow-metal on the M1 Mac?

I have a M1 Macbook Pro and am trying to find a good model that is optimized to work with the Tensorflow Metal. I have been using these:

wav2vec_processor = Wav2Vec2Processor.from_pretrained(“facebook/wav2vec2-base-960h”)

wav2vec_model = Wav2Vec2ForCTC.from_pretrained(“facebook/wav2vec2-base-960h”).to(DEVICE)

with torch but it is not optimized to for the M1. Any suggestions or recommendations would be appreciated.