]> git.djapps.eu Git - pkg/ggml/sources/whisper.cpp/commitdiff
readme : fix broken links in implementation details section (#2382)
authorstormofice <redacted>
Wed, 28 Aug 2024 08:41:51 +0000 (10:41 +0200)
committerGitHub <redacted>
Wed, 28 Aug 2024 08:41:51 +0000 (11:41 +0300)
README.md

index 3d2aed5b2ffd8f3baa338a65f0088587f209dd39..6acb410d79268d66ad9796d2c9222b2258d2e1a5 100644 (file)
--- a/README.md
+++ b/README.md
@@ -55,8 +55,8 @@ Or you can even run it straight in the browser: [talk.wasm](examples/talk.wasm)
 
 ## Implementation details
 
-- The core tensor operations are implemented in C ([ggml.h](ggml.h) / [ggml.c](ggml.c))
-- The transformer model and the high-level C-style API are implemented in C++ ([whisper.h](whisper.h) / [whisper.cpp](whisper.cpp))
+- The core tensor operations are implemented in C ([ggml.h](ggml/include/ggml.h) / [ggml.c](ggml/src/ggml.c))
+- The transformer model and the high-level C-style API are implemented in C++ ([whisper.h](include/whisper.h) / [whisper.cpp](src/whisper.cpp))
 - Sample usage is demonstrated in [main.cpp](examples/main)
 - Sample real-time audio transcription from the microphone is demonstrated in [stream.cpp](examples/stream)
 - Various other examples are available in the [examples](examples) folder