Skip to content

Commit

Permalink
Upgrade Whisper.cpp (chidiwilliams#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
chidiwilliams authored Dec 4, 2022
1 parent 35d7b2b commit 8b077e6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion buzz/transcriber.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,6 @@ def run(self):
'--language', self.language if self.language is not None else 'en',
'--max-len', '1' if self.word_level_timings else '0',
'--model', self.model_path,
'--verbose'
]
if self.task == Task.TRANSLATE:
args.append('--translate')
Expand Down
2 changes: 1 addition & 1 deletion whisper.cpp
Submodule whisper.cpp updated 59 files
+70 −0 .github/workflows/build.yml
+2 −0 .gitignore
+3 −1 CMakeLists.txt
+40 −4 Makefile
+63 −35 README.md
+2 −1 bindings/javascript/CMakeLists.txt
+31 −12 bindings/javascript/emscripten.cpp
+1 −1 bindings/javascript/whisper.js
+4 −0 examples/CMakeLists.txt
+10 −11 examples/bench/bench.cpp
+47 −0 examples/command.wasm/CMakeLists.txt
+23 −0 examples/command.wasm/README.md
+408 −0 examples/command.wasm/emscripten.cpp
+386 −0 examples/command.wasm/index-tmpl.html
+7 −0 examples/command/CMakeLists.txt
+30 −0 examples/command/README.md
+655 −0 examples/command/command.cpp
+11 −0 examples/generate-karaoke.sh
+182 −0 examples/helpers.js
+98 −0 examples/livestream.sh
+23 −24 examples/main/README.md
+171 −120 examples/main/main.cpp
+47 −0 examples/stream.wasm/CMakeLists.txt
+20 −0 examples/stream.wasm/README.md
+213 −0 examples/stream.wasm/emscripten.cpp
+386 −0 examples/stream.wasm/index-tmpl.html
+4 −0 examples/stream/README.md
+132 −122 examples/stream/stream.cpp
+48 −0 examples/talk.wasm/CMakeLists.txt
+72 −0 examples/talk.wasm/README.md
+380 −0 examples/talk.wasm/emscripten.cpp
+925 −0 examples/talk.wasm/gpt-2.cpp
+27 −0 examples/talk.wasm/gpt-2.h
+829 −0 examples/talk.wasm/index-tmpl.html
+4 −0 examples/whisper.objc/README.md
+2 −0 examples/whisper.objc/whisper.objc.xcodeproj/project.pbxproj
+16 −3 examples/whisper.objc/whisper.objc/Base.lproj/Main.storyboard
+4 −0 examples/whisper.objc/whisper.objc/ViewController.h
+98 −41 examples/whisper.objc/whisper.objc/ViewController.m
+1 −0 examples/whisper.wasm/CMakeLists.txt
+4 −5 examples/whisper.wasm/README.md
+114 −44 examples/whisper.wasm/index-tmpl.html
+132 −0 examples/yt-wsp.sh
+30 −0 extra/deploy-wasm.sh
+174 −1 ggml.c
+1 −0 ggml.h
+28 −6 models/README.md
+212 −0 models/convert-h5-to-ggml.py
+125 −125 models/convert-pt-to-ggml.py
+2 −2 models/download-ggml-model.cmd
+9 −3 models/download-ggml-model.sh
+3 −0 tests/.gitignore
+1 −0 tests/en-0-ref.txt
+1 −0 tests/en-1-ref.txt
+1 −0 tests/en-2-ref.txt
+1 −0 tests/es-0-ref.txt
+125 −0 tests/run-tests.sh
+268 −160 whisper.cpp
+59 −36 whisper.h

0 comments on commit 8b077e6

Please sign in to comment.