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-medium

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-medium with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use mobilint/whisper-medium with Transformers:

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

    How to use mobilint/whisper-medium with Mobilint:

    # pip install mblt-model-zoo
    from mblt_model_zoo.vision import MBLT_Engine
    
    model = MBLT_Engine(
        model_cls="whisper-medium",
        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-medium
1.03 GB
Ctrl+K
Ctrl+K
  • 3 contributors
History: 8 commits
khh0303's picture
khh0303
perf(mxq): update mxq file, support all core modes
492a148 17 days ago
  • .gitattributes
    1.56 kB
    Add model for inference 5 months ago
  • README.md
    1.14 kB
    Adjust library_name metadata for model card about 2 months ago
  • added_tokens.json
    34.6 kB
    Add model for inference 5 months ago
  • config.json
    2.4 kB
    Add model for inference 5 months ago
  • generation_config.json
    3.76 kB
    Add model for inference 5 months ago
  • merges.txt
    494 kB
    Add model for inference 5 months ago
  • model.safetensors
    214 MB
    xet
    Add model for inference 5 months ago
  • normalizer.json
    52.7 kB
    Add model for inference 5 months ago
  • preprocessor_config.json
    201 kB
    Update Whisper feature extractor proxy 4 months ago
  • proxy_whisper.py
    917 Bytes
    Update Whisper feature extractor proxy 4 months ago
  • special_tokens_map.json
    2.19 kB
    Add model for inference 5 months ago
  • tokenizer.json
    2.48 MB
    Add model for inference 5 months ago
  • tokenizer_config.json
    283 kB
    Add model for inference 5 months ago
  • vocab.json
    836 kB
    Add model for inference 5 months ago
  • whisper-medium_decoder.mxq
    486 MB
    xet
    perf(mxq): update mxq file, support all core modes 17 days ago
  • whisper-medium_encoder.mxq
    326 MB
    xet
    perf(mxq): update mxq file, support all core modes 17 days ago