mirror of
https://github.com/chidiwilliams/buzz.git
synced 2026-03-14 14:45:46 +01:00
Fix for speech extraction on Windows (#1132)
This commit is contained in:
parent
bc5d4b1c71
commit
a37c366672
5 changed files with 44 additions and 267 deletions
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
|
@ -126,6 +126,13 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: poetry install
|
||||
|
||||
- name: Install CUDA torch for Windows
|
||||
run: |
|
||||
if [ "$RUNNER_OS" == "Windows" ]; then
|
||||
pip3 install torch==2.2.2+cu121 torchaudio==2.2.2+cu121 --index-url https://download.pytorch.org/whl/cu121
|
||||
fi
|
||||
shell: bash
|
||||
|
||||
- uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: "3.0" # Not needed with a .ruby-version file
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue