Skip to content
Snippets Groups Projects
Select Git revision
  • 55b31ce6c0fb322f61b5921ac43a9c6f3c63f8f4
  • main default protected
  • change_data_model
  • feature/add_auth_asr_service
  • fix/incorrect_import
  • feature/change_registry_clarin
  • feature/add_base_asr_service
  • feature/add_poetry
  • feature/add_word_ids
  • feature/add_sziszapangma
10 results

docker-compose.yaml

Blame
  • user avatar
    Marcin Wątroba authored
    87fd29f1
    History
    docker-compose.yaml 1.26 KiB
    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 ]