Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
services:
whisper_worker_1:
image: gitlab.clarin-pl.eu:5050/markowanga/asr-benchmarks/whisper-worker:latest
command: poetry run python new_datasets/whisper_asr_runner.py
environment:
WHISPER_MODEL: 'base'
deploy:
resources:
reservations:
devices:
- driver: nvidia
capabilities: [ gpu ]
whisper_worker_2:
image: gitlab.clarin-pl.eu:5050/markowanga/asr-benchmarks/whisper-worker:latest
command: poetry run python new_datasets/whisper_asr_runner.py
environment:
WHISPER_MODEL: 'small'
deploy:
resources:
reservations:
devices:
- driver: nvidia
capabilities: [ gpu ]
whisper_worker_3:
image: gitlab.clarin-pl.eu:5050/markowanga/asr-benchmarks/whisper-worker:latest
command: poetry run python new_datasets/whisper_asr_runner.py
environment:
WHISPER_MODEL: 'tiny'
deploy:
resources:
reservations:
devices:
- driver: nvidia
capabilities: [ gpu ]