radames commited on
Commit
6a98e36
·
1 Parent(s): 4a62ef4

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +3 -0
index.html CHANGED
@@ -66,6 +66,7 @@
66
  <button id="fetch-whisper-tiny" onclick="loadWhisper('tiny')">tiny (75 MB)</button>
67
  <button id="fetch-whisper-base-en" onclick="loadWhisper('base.en')">base.en (142 MB)</button>
68
  <button id="fetch-whisper-base" onclick="loadWhisper('base')">base (142 MB)</button>
 
69
  <span id="fetch-whisper-progress"></span>
70
 
71
  <input type="file" id="whisper-file" name="file" onchange="loadFile(event, 'whisper.bin')" />
@@ -324,6 +325,8 @@
324
  'tiny': 'models/ggml-tiny.bin',
325
  'base.en': 'models/ggml-base.en.bin',
326
  'base': 'models/ggml-base.bin',
 
 
327
  };
328
 
329
  let sizes = {
 
66
  <button id="fetch-whisper-tiny" onclick="loadWhisper('tiny')">tiny (75 MB)</button>
67
  <button id="fetch-whisper-base-en" onclick="loadWhisper('base.en')">base.en (142 MB)</button>
68
  <button id="fetch-whisper-base" onclick="loadWhisper('base')">base (142 MB)</button>
69
+ <button id="fetch-whisper-extra" onclick="loadWhisper('extra')">base (142 MB)</button>
70
  <span id="fetch-whisper-progress"></span>
71
 
72
  <input type="file" id="whisper-file" name="file" onchange="loadFile(event, 'whisper.bin')" />
 
325
  'tiny': 'models/ggml-tiny.bin',
326
  'base.en': 'models/ggml-base.en.bin',
327
  'base': 'models/ggml-base.bin',
328
+ 'extra': 'https://huggingface.co/radames/temp-model/resolve/main/ggml-tiny.bin'
329
+
330
  };
331
 
332
  let sizes = {