Whisper example in wasm. (#169)

* Whisper example in wasm.

* Load the model.

* Get the whisper demo to work (though slowly).

* Polish the UI a bit.

* Minor tweak.

* More UI.

* Add the progress bar.
This commit is contained in:
Laurent Mazare
2023-07-14 19:33:36 +01:00
committed by GitHub
parent 3f930bdaee
commit d1f6fad84a
8 changed files with 491 additions and 347 deletions

View File

@ -0,0 +1,6 @@
import init, { run_app } from './pkg/candle_wasm_example.js';
async function main() {
await init('/pkg/candle_wasm_example_bg.wasm');
run_app();
}
main()