Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing
    • Website
      • Tasks
      • HuggingChat
      • Collections
      • Languages
      • Organizations
    • Community
      • Blog
      • Posts
      • Daily Papers
      • Hardware
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

mobilint
/
whisper-small

Automatic Speech Recognition
Transformers
Safetensors
Mobilint
mobilint-whisper
text-generation
custom_code
Model card Files Files and versions
xet
Community

Instructions to use mobilint/whisper-small with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use mobilint/whisper-small with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("automatic-speech-recognition", model="mobilint/whisper-small", trust_remote_code=True)
    # Load model directly
    from transformers import AutoModelForCausalLM
    model = AutoModelForCausalLM.from_pretrained("mobilint/whisper-small", trust_remote_code=True, device_map="auto")
  • Mobilint

    How to use mobilint/whisper-small with Mobilint:

    # pip install mblt-model-zoo
    from mblt_model_zoo.vision import MBLT_Engine
    
    model = MBLT_Engine(
        model_cls="whisper-small",
        model_type="DEFAULT",
        model_path="",
        core_mode="global8",
    )
    
    try:
        image = model.preprocess("path/to/image.jpg")
        output = model(image)
        result = model.postprocess(output)
    finally:
        model.dispose()
    
  • Notebooks
  • Google Colab
  • Kaggle
whisper-small
433 MB
Ctrl+K
Ctrl+K
  • 4 contributors
History: 21 commits
parkjinman98's picture
parkjinman98
Adjust library_name metadata for model card
1abffcb verified 28 days ago
  • .gitattributes
    1.64 kB
    Upload folder using huggingface_hub 8 months ago
  • README.md
    1.14 kB
    Adjust library_name metadata for model card 28 days ago
  • added_tokens.json
    34.6 kB
    Upload folder using huggingface_hub 8 months ago
  • config.json
    2.37 kB
    Update: recompile MXQ models with compile_mode='all' 4 months ago
  • generation_config.json
    3.84 kB
    Update generation_config.json about 2 months ago
  • merges.txt
    494 kB
    Upload folder using huggingface_hub 8 months ago
  • model.safetensors
    161 MB
    xet
    Upload folder using huggingface_hub 8 months ago
  • normalizer.json
    52.7 kB
    Upload folder using huggingface_hub 8 months ago
  • preprocessor_config.json
    185 kB
    Update preprocessor_config.json 3 months ago
  • proxy_whisper.py
    889 Bytes
    Update proxy_whisper.py 3 months ago
  • special_tokens_map.json
    2.19 kB
    Upload folder using huggingface_hub 8 months ago
  • tokenizer.json
    2.48 MB
    Upload folder using huggingface_hub 8 months ago
  • tokenizer_config.json
    283 kB
    refactor: simplify whisper proxy 3 months ago
  • vocab.json
    836 kB
    Upload folder using huggingface_hub 8 months ago
  • whisper-small_decoder.mxq
    169 MB
    xet
    Update: replace MXQ(WER:0.2878, CER:0.0869) 3 months ago
  • whisper-small_encoder.mxq
    98.6 MB
    xet
    Update: replace MXQ(WER:0.2878, CER:0.0869) 3 months ago