mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2025-03-12 15:34:17 +00:00
* Updated models download URL * Updated list of models available All of the high efficiency quantized models are rejected when trying to download. They exist on the server. Let's allow them. * added path prefix for whisper-cli in message to user. The message is misleading if this script is called from another script in a different folder. So the message has to be fixed. * undid download URL change I made earlier. Fixed filepath.Join(urlPath, model) bug. * Undid download URL change I made earlier. Seems that the old URL works but only when provided a model to download. Still doesn't explain why there's a different download URL that also works. Please elucidate in docs. * Fixed URLForModel Function's bug filepath.Join is designed for filesystem paths, and it uses backslashes (\) on Windows. URLs, however, require forward slashes (/), so the use of filepath.Join is inappropriate for constructing URLs. The fmt.Sprintf function ensures that forward slashes are used. * Fixed URL trailing / double slash bug Ensure no double slash by trimming trailing '/' from srcUrl if present * Fixed bad download URL, missing ggml prefix Not sure if that was a bug I introduced but it was trying to download without the prefix. * Added question before downloading all models. Added download size estimate HEAD Requests: Efficiently fetches file sizes without downloading the content. Interactive Workflow: Allows the user to make informed decisions about downloading all models. Safe Defaults: Aborts if the user does not explicitly confirm. * Fixed Unbuffered channel warning. warning in context.go : misuse of unbuffered os.Signal channel as argument to signal. The warning indicates that the unbuffered channel used in signal.Notify in context.go may be misused. In Go, unbuffered channels can cause potential deadlocks if signals are sent faster than they are received. * Fixed download size calculation, download URL prefix bug, added link to models URL for user. The URL formatter was prepending the model name to the formatted model name in the URL * Added logs and exes to gitignore * Delete bindings/go/examples/go-model-download/go-model-download.exe * Delete whisper_build.log
62 lines
787 B
Plaintext
62 lines
787 B
Plaintext
*.o
|
|
*.a
|
|
*.d
|
|
.cache/
|
|
.coreml/
|
|
.test/
|
|
.venv/
|
|
.vs/
|
|
.vscode/
|
|
.DS_Store
|
|
.vimspector.json
|
|
/CMakeSettings.json
|
|
/talk-llama.dSYM/
|
|
|
|
build/
|
|
build-*/
|
|
|
|
# SPM
|
|
.build/
|
|
.swiftpm
|
|
*.metallib
|
|
|
|
ggml-metal-embed.metal
|
|
ggml-metal-embed.metal.tmp
|
|
|
|
/main
|
|
/stream
|
|
/command
|
|
/talk
|
|
/talk-llama
|
|
/bench
|
|
/quantize
|
|
/server
|
|
/lsp
|
|
|
|
arm_neon.h
|
|
sync.sh
|
|
libwhisper.a
|
|
libwhisper.so
|
|
compile_commands.json
|
|
|
|
examples/arm_neon.h
|
|
examples/whisper.objc/whisper.objc.xcodeproj/xcshareddata
|
|
examples/whisper.objc/whisper.objc.xcodeproj/xcuserdata/
|
|
examples/whisper.objc/whisper.objc.xcodeproj/project.xcworkspace/xcuserdata
|
|
|
|
extra/bench-gg.txt
|
|
|
|
models/*.mlmodel
|
|
models/*.mlmodelc
|
|
models/*.mlpackage
|
|
bindings/java/.gradle/
|
|
bindings/java/.idea/
|
|
.idea/
|
|
|
|
benchmark_results.csv
|
|
cmake-build-debug/
|
|
.cxx/
|
|
.gradle/
|
|
local.properties
|
|
.log
|
|
.exe |