PruneSLU-15M is an optimized version of the
openai/whisper-tiny.en model, specifically tailored for Spoken Language Understanding (SLU) tasks. This model has been pruned and further fine-tuned to achieve a lightweight yet powerful solution, ideal for deployment in resource-constrained environments.
1from transformers import WhisperForConditionalGeneration
2
3model = WhisperForConditionalGeneration.from_pretrained("kodiak619/PruneSLU-15M")
PruneSLU-15M is ideal for scenarios where computational resources are limited, such as mobile devices or embedded systems. It is particularly well-suited for tasks like voice command recognition, intent detection, and other SLU-related applications in low-resource settings.