Views
No views yet
openai/whisper-large-v3 (frozen)1import torch
2from huggingface_hub import hf_hub_download
3
4ckpt = torch.load(
5 hf_hub_download("FatimahEmadEldin/whisper-deepstack-tn-intent", "best_classifier.pt"),
6 map_location='cpu'
7)