Skip to content

[BUG] Loop with Nvidia RTX 3060 #73

Description

@dexter74

Is there an existing issue for this?

  • I have searched the existing issues

Current Behavior

Hello,

Can you'r help me for fix a problem, i don't know where is problem.

Thank you.

Expected Behavior

I hate a log incomprehensible

Steps To Reproduce

  1. Install Debian 12
  2. Update OS
  3. Install Nvidia + Cuda 12.6
  4. Check Nvidia Runtime
  5. Test with Fileflows docker --> OK (GPU Work)
  6. Start container by compose
  7. Check

Environment

- OS: Debian 12
- How docker service was installed: By dock official
- Nvidia 560.35.03+ Cuda 12.6


+-----------------------------------------------------------------------------------------+
| NVIDIA-SMI 560.35.03              Driver Version: 560.35.03      CUDA Version: 12.6     |
|-----------------------------------------+------------------------+----------------------+
| GPU  Name                 Persistence-M | Bus-Id          Disp.A | Volatile Uncorr. ECC |
| Fan  Temp   Perf          Pwr:Usage/Cap |           Memory-Usage | GPU-Util  Compute M. |
|                                         |                        |               MIG M. |
|=========================================+========================+======================|
|   0  NVIDIA GeForce RTX 3060        Off |   00000000:01:00.0 Off |                  N/A |
| 30%   52C    P0             42W /  180W |     284MiB /  12288MiB |     12%      Default |
|                                         |                        |                  N/A |
+-----------------------------------------+------------------------+----------------------+

CPU architecture

x86-64

Docker creation

###########
services: #
###########
#
#############################################
 Demo:                                      #
  # --------------------------------------- #
  image: 'linuxserver/faster-whisper:gpu-legacy'   #
  container_name: 'faster-whisper'          #
  # --------------------------------------- #
  restart: 'unless-stopped'                 #
  # --------------------------------------- #
  runtime: 'nvidia'                         #
  # --------------------------------------- #
  deploy:                                   #
   resources:                               #
   # -------------------------------------- #
    reservations:                           #
    # ------------------------------------- #
     devices:                               #
      - driver: nvidia                      #
        count: all                          #
        capabilities: [gpu]                 #
  # --------------------------------------- #
  environment:
   PUID: '0'
   PGID: '0'
   TZ: 'Europe/Paris'
   DEBUG: 'false'
   LOCAL_ONLY: 'false'
   WHISPER_BEAM: '1'
   WHISPER_LANG: 'auto'
   WHISPER_MODEL: 'auto'
  # --------------------------------------- #
  volumes:                                  #
   - 'Data:/config'
  # --------------------------------------- #
  ports:                                    #
   - '10300:10300'
#############################################
#
#############################################
volumes:                                    #
 # ---------------------------------------- #
 Data:                                      #
  external: false                           #
 # ---------------------------------------- #
#############################################

Container logs

[faster-whisper] 2026-09-12T01:54:18.533815371Z   File "<frozen runpy>", line 88, in _run_code
[faster-whisper] 2026-09-12T01:54:18.533819421Z   File "/lsiopy/lib/python3.12/site-packages/wyoming_faster_whisper/__main__.py", line 461, in <module>
[faster-whisper] 2026-09-12T01:54:18.533894561Z     run()
[faster-whisper] 2026-09-12T01:54:18.533909911Z   File "/lsiopy/lib/python3.12/site-packages/wyoming_faster_whisper/__main__.py", line 456, in run
[faster-whisper] 2026-09-12T01:54:18.534069531Z     asyncio.run(main())
[faster-whisper] 2026-09-12T01:54:18.534081341Z   File "/usr/lib/python3.12/asyncio/runners.py", line 194, in run
[faster-whisper] 2026-09-12T01:54:18.534185791Z     return runner.run(main)
[faster-whisper] 2026-09-12T01:54:18.534196051Z            ^^^^^^^^^^^^^^^^
[faster-whisper] 2026-09-12T01:54:18.534201571Z   File "/usr/lib/python3.12/asyncio/runners.py", line 118, in run
[faster-whisper] 2026-09-12T01:54:18.534320511Z     return self._loop.run_until_complete(task)
[faster-whisper] 2026-09-12T01:54:18.534332591Z            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[faster-whisper] 2026-09-12T01:54:18.534339281Z   File "/usr/lib/python3.12/asyncio/base_events.py", line 687, in run_until_complete
[faster-whisper] 2026-09-12T01:54:18.534511442Z     return future.result()
[faster-whisper] 2026-09-12T01:54:18.534524572Z            ^^^^^^^^^^^^^^^
[faster-whisper] 2026-09-12T01:54:18.534529272Z   File "/lsiopy/lib/python3.12/site-packages/wyoming_faster_whisper/__main__.py", line 317, in main
[faster-whisper] 2026-09-12T01:54:18.534655062Z     await loader.load_transcriber()
[faster-whisper] 2026-09-12T01:54:18.534680932Z   File "/lsiopy/lib/python3.12/site-packages/wyoming_faster_whisper/models.py", line 189, in load_transcriber
[faster-whisper] 2026-09-12T01:54:18.534757042Z     transcriber = self._load_cache_first(stt_library, model, streaming)
[faster-whisper] 2026-09-12T01:54:18.534841282Z                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[faster-whisper] 2026-09-12T01:54:18.534851512Z   File "/lsiopy/lib/python3.12/site-packages/wyoming_faster_whisper/models.py", line 210, in _load_cache_first
[faster-whisper] 2026-09-12T01:54:18.534921952Z     return self._build_transcriber(
[faster-whisper] 2026-09-12T01:54:18.534929982Z            ^^^^^^^^^^^^^^^^^^^^^^^^
[faster-whisper] 2026-09-12T01:54:18.534934222Z   File "/lsiopy/lib/python3.12/site-packages/wyoming_faster_whisper/models.py", line 302, in _build_transcriber
[faster-whisper] 2026-09-12T01:54:18.535060712Z     return FasterWhisperTranscriber(
[faster-whisper] 2026-09-12T01:54:18.535067322Z            ^^^^^^^^^^^^^^^^^^^^^^^^^
[faster-whisper] 2026-09-12T01:54:18.535070842Z   File "/lsiopy/lib/python3.12/site-packages/wyoming_faster_whisper/faster_whisper_handler.py", line 40, in __init__
[faster-whisper] 2026-09-12T01:54:18.535179142Z     self.model = faster_whisper.WhisperModel(
[faster-whisper] 2026-09-12T01:54:18.535191002Z                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[faster-whisper] 2026-09-12T01:54:18.535196982Z   File "/lsiopy/lib/python3.12/site-packages/faster_whisper/transcribe.py", line 681, in __init__
[faster-whisper] 2026-09-12T01:54:18.535361813Z     model_path = download_model(
[faster-whisper] 2026-09-12T01:54:18.535373213Z                  ^^^^^^^^^^^^^^^
[faster-whisper] 2026-09-12T01:54:18.535379313Z   File "/lsiopy/lib/python3.12/site-packages/faster_whisper/utils.py", line 116, in download_model
[faster-whisper] 2026-09-12T01:54:18.535480793Z     return huggingface_hub.snapshot_download(repo_id, **kwargs)
[faster-whisper] 2026-09-12T01:54:18.535492613Z            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[faster-whisper] 2026-09-12T01:54:18.535497453Z   File "/lsiopy/lib/python3.12/site-packages/huggingface_hub/utils/_validators.py", line 88, in _inner_fn
[faster-whisper] 2026-09-12T01:54:18.535630623Z     return fn(*args, **kwargs)
[faster-whisper] 2026-09-12T01:54:18.535642583Z            ^^^^^^^^^^^^^^^^^^^
[faster-whisper] 2026-09-12T01:54:18.535648823Z   File "/lsiopy/lib/python3.12/site-packages/huggingface_hub/_snapshot_download.py", line 360, in snapshot_download
[faster-whisper] 2026-09-12T01:54:18.535808443Z     raise LocalEntryNotFoundError(
[faster-whisper] 2026-09-12T01:54:18.535816743Z huggingface_hub.errors.LocalEntryNotFoundError: Cannot find an appropriate cached snapshot folder for the specified revision on the local disk and outgoing traffic has been disabled. To enable repo look-ups and downloads online, pass 'local_files_only=False' as input.
[faster-whisper] 2026-09-12T01:54:19.853107417Z DEBUG:__main__:Namespace(uri='tcp://0.0.0.0:10300', zeroconf=None, model='auto', data_dir=['/config'], download_dir='/config', device='cuda', language='auto', compute_type='default', beam_size=1, cpu_threads=4, initial_prompt=None, whisper_task='transcribe', vad_filter=False, vad_threshold=0.5, vad_min_speech_ms=250, vad_min_silence_ms=2000, vad_endpointing=None, vad_clip=None, vad_clip_threshold=0.5, vad_clip_pad_ms=400, stt_library=<SttLibrary.AUTO: 'auto'>, sherpa_streaming=False, local_files_only=True, hass_token=None, hass_api='http://homeassistant.local:8123/api', hass_refresh_seconds=0.0, hass_prompt_max_tokens=200, hass_prompt_timeout=1.0, debug=True, log_format='%(levelname)s:%(name)s:%(message)s')
[faster-whisper] 2026-09-12T01:54:19.853279077Z DEBUG:__main__:Pre-loading transcriber
[faster-whisper] 2026-09-12T01:54:19.853573097Z DEBUG:wyoming_faster_whisper.models:Backends available: sherpa=False transformers=False onnx_asr=False funasr=False qwen3_asr=True
[faster-whisper] 2026-09-12T01:54:19.853583957Z DEBUG:wyoming_faster_whisper.models:Selected stt-library 'faster-whisper' with model 'Systran/faster-whisper-small' (streaming=False, device=cuda)
[faster-whisper] 2026-09-12T01:54:20.010765371Z Traceback (most recent call last):
[faster-whisper] 2026-09-12T01:54:20.010789181Z   File "<frozen runpy>", line 198, in _run_module_as_main
[faster-whisper] 2026-09-12T01:54:20.010794301Z   File "<frozen runpy>", line 88, in _run_code
[faster-whisper] 2026-09-12T01:54:20.010800611Z   File "/lsiopy/lib/python3.12/site-packages/wyoming_faster_whisper/__main__.py", line 461, in <module>
[faster-whisper] 2026-09-12T01:54:20.010882471Z     run()
[faster-whisper] 2026-09-12T01:54:20.010893661Z   File "/lsiopy/lib/python3.12/site-packages/wyoming_faster_whisper/__main__.py", line 456, in run
[faster-whisper] 2026-09-12T01:54:20.010975311Z     asyncio.run(main())
[faster-whisper] 2026-09-12T01:54:20.010983651Z   File "/usr/lib/python3.12/asyncio/runners.py", line 194, in run
[faster-whisper] 2026-09-12T01:54:20.011057551Z     return runner.run(main)
[faster-whisper] 2026-09-12T01:54:20.011078361Z            ^^^^^^^^^^^^^^^^
[faster-whisper] 2026-09-12T01:54:20.011084321Z   File "/usr/lib/python3.12/asyncio/runners.py", line 118, in run
[faster-whisper] 2026-09-12T01:54:20.011135231Z     return self._loop.run_until_complete(task)
[faster-whisper] 2026-09-12T01:54:20.011167941Z            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions