Skip to content

Commit b53b28b

Browse files
committed
fix: change default model & update ignore list
1 parent cba3659 commit b53b28b

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
*.bin
2+
volume/input/*
3+
volume/output/*

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
2-
https://github.com/ggerganov/whisper.cpp
1+
Run the (whisper.cpp)[https://github.com/ggerganov/] in a Docker container with GPU support.
32

43
## TLDR
54
```
@@ -39,7 +38,7 @@ LANGUAGE=ru \
3938
```
4039
| Argument | Values | Defaults |
4140
| -------- | ------- |------- |
42-
| model | base, medium, large, [other options](https://github.com/ggerganov/whisper.cpp/blob/master/models/download-ggml-model.sh#L25) | large-v3
41+
| model | base, medium, large, [other options](https://github.com/ggerganov/whisper.cpp/blob/master/models/download-ggml-model.sh#L25) | large-v2
4342
| language | rn, ru, fr, etc. (depends on the model) | ru
4443

4544
### 5. Result

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
stdin_open: true
88
tty: true
99
environment:
10-
- MODEL=${MODEL:-ggml-large-v3.bin}
10+
- MODEL=${MODEL:-large-v2}
1111
- LANGUAGE=${LANGUAGE:-ru}
1212
volumes:
1313
- ./models:/usr/local/src/whisper.cpp/models

0 commit comments

Comments
 (0)