Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update speech-t5 example #11889

Merged
merged 1 commit into from
Aug 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ conda activate llm
# below command will install intel_extension_for_pytorch==2.1.10+xpu as default
pip install --pre --upgrade ipex-llm[xpu] --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/us/

pip install transformers==4.36.2
pip install "datasets<2.18" soundfile # additional package required for SpeechT5 to conduct generation
pip install "datasets==2.16.1" soundfile # additional package required for SpeechT5 to conduct generation
```

#### 1.2 Installation on Windows
Expand All @@ -28,8 +27,7 @@ conda activate llm
# below command will install intel_extension_for_pytorch==2.1.10+xpu as default
pip install --pre --upgrade ipex-llm[xpu] --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/us/

pip install transformers==4.36.2
pip install "datasets<2.18" soundfile # additional package required for SpeechT5 to conduct generation
pip install "datasets==2.16.1" soundfile # additional package required for SpeechT5 to conduct generation
```

### 2. Configures OneAPI environment variables for Linux
Expand Down
Loading