Skip to content

Commit

Permalink
Revert "ci: add distil-large-v3 model support to Docker workflow"
Browse files Browse the repository at this point in the history
This reverts commit 8d8dcce.

WhisperX is currently using faster-whisper==1.0.0
And distil-large-v3 is added in 1.0.2, large-v3-turbo is added in 1.1.0

Signed-off-by: CHEN, CHUN <[email protected]>
  • Loading branch information
jim60105 committed Dec 29, 2024
1 parent 8d8dcce commit 3a997e3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,8 @@ jobs:
- base
- small
- medium
- large-v2
- large-v3
- distil-large-v3
needs: docker-no_model # wait for docker-no_model to finish

steps:
Expand Down Expand Up @@ -255,8 +255,8 @@ jobs:
- base
- small
- medium
- large-v2
- large-v3
- distil-large-v3
needs:
- docker-no_model # wait for docker-no_model to finish
- docker-cache # wait for docker-cache to finish
Expand Down Expand Up @@ -333,9 +333,9 @@ jobs:
id=$(echo ${{ github.sha }} | cut -c 1-7)
echo "id=$id" >> $GITHUB_OUTPUT
- name: Test distil-large-v3-zh docker image
- name: Test large-v3-zh docker image
run: |
docker run --group-add 0 -v ".:/app" ghcr.io/jim60105/whisperx:distil-large-v3-zh-${{ steps.get-sha.outputs.id }} -- --device cpu --compute_type int8 --output_format srt .github/workflows/test/zh.webm;
docker run --group-add 0 -v ".:/app" ghcr.io/jim60105/whisperx:large-v3-zh-${{ steps.get-sha.outputs.id }} -- --device cpu --compute_type int8 --output_format srt .github/workflows/test/zh.webm;
if [ ! -f zh.srt ]; then
echo "The zh.srt file does not exist"
exit 1
Expand Down
1 change: 0 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"comodoro",
"CUDA",
"Diarization",
"distil",
"ffprobe",
"findutils",
"ftspeech",
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ docker run --gpus all -it -v ".:/app" ghcr.io/jim60105/whisperx:large-v3-ja -- -
docker run --gpus all -it -v ".:/app" ghcr.io/jim60105/whisperx:no_model -- --model tiny --language en --output_format srt audio.mp3
```

The image tags are formatted as `WHISPER_MODEL`-`LANG`, for example, `tiny-en`, `base-de`, `large-v3-zh` or `distil-large-v3-ja`.
Please be aware that the whisper models `*.en`, `large-v1`, `large-v2` have been excluded as I believe they are not frequently used. If you require these models, please refer to the following section to build them on your own.
The image tags are formatted as `WHISPER_MODEL`-`LANG`, for example, `tiny-en`, `base-de`, or `large-v3-zh`.
Please be aware that the whisper models `*.en` and `large-v1` have been excluded as I believe they are not frequently used. If you require these models, please refer to the following section to build them on your own.

You can find all available tags at [ghcr.io](https://github.com/jim60105/docker-whisperX/pkgs/container/whisperx/versions?filters%5Bversion_type%5D=tagged).

Expand Down
2 changes: 1 addition & 1 deletion docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ target "build" {
"base",
"small",
"medium",
"large-v2",
"large-v3",
"distil-large-v3"
]
"LANG" = [
"en",
Expand Down

0 comments on commit 3a997e3

Please sign in to comment.