AIRsLight commited on
Commit
2a188df
·
verified ·
1 Parent(s): 3925bad

Publish minimal Windows x64 ASR runtimes

Browse files
.gitattributes CHANGED
@@ -33,3 +33,25 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ runtimes/funasr-nano-cpu/llama-funasr-cli.exe filter=lfs diff=lfs merge=lfs -text
37
+ runtimes/funasr-nano-vulkan/llama-funasr-cli.exe filter=lfs diff=lfs merge=lfs -text
38
+ runtimes/paraformer-cpu/llama-funasr-paraformer.exe filter=lfs diff=lfs merge=lfs -text
39
+ runtimes/sensevoice-cpu/llama-funasr-sensevoice.exe filter=lfs diff=lfs merge=lfs -text
40
+ runtimes/sensevoice-vulkan/llama-funasr-sensevoice.exe filter=lfs diff=lfs merge=lfs -text
41
+ runtimes/whisper-cpu/ggml-base.dll filter=lfs diff=lfs merge=lfs -text
42
+ runtimes/whisper-cpu/ggml-cpu-alderlake.dll filter=lfs diff=lfs merge=lfs -text
43
+ runtimes/whisper-cpu/ggml-cpu-cannonlake.dll filter=lfs diff=lfs merge=lfs -text
44
+ runtimes/whisper-cpu/ggml-cpu-cascadelake.dll filter=lfs diff=lfs merge=lfs -text
45
+ runtimes/whisper-cpu/ggml-cpu-haswell.dll filter=lfs diff=lfs merge=lfs -text
46
+ runtimes/whisper-cpu/ggml-cpu-icelake.dll filter=lfs diff=lfs merge=lfs -text
47
+ runtimes/whisper-cpu/ggml-cpu-sandybridge.dll filter=lfs diff=lfs merge=lfs -text
48
+ runtimes/whisper-cpu/ggml-cpu-skylakex.dll filter=lfs diff=lfs merge=lfs -text
49
+ runtimes/whisper-cpu/ggml-cpu-sse42.dll filter=lfs diff=lfs merge=lfs -text
50
+ runtimes/whisper-cpu/ggml-cpu-x64.dll filter=lfs diff=lfs merge=lfs -text
51
+ runtimes/whisper-cpu/whisper-server.exe filter=lfs diff=lfs merge=lfs -text
52
+ runtimes/whisper-cpu/whisper.dll filter=lfs diff=lfs merge=lfs -text
53
+ runtimes/whisper-vulkan/ggml-base.dll filter=lfs diff=lfs merge=lfs -text
54
+ runtimes/whisper-vulkan/ggml-cpu.dll filter=lfs diff=lfs merge=lfs -text
55
+ runtimes/whisper-vulkan/ggml-vulkan.dll filter=lfs diff=lfs merge=lfs -text
56
+ runtimes/whisper-vulkan/whisper-server.exe filter=lfs diff=lfs merge=lfs -text
57
+ runtimes/whisper-vulkan/whisper.dll filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # VRChat Voice Input native runtimes
2
+
3
+ This repository contains the minimal Windows x64 native ASR runtimes used by
4
+ VRChat Voice Input. Model weights are distributed separately. The application
5
+ downloads these files from an immutable Hugging Face revision and verifies the
6
+ size and SHA-256 of every file before installation.
7
+
8
+ The archive intentionally excludes development tools, test executables,
9
+ quantizers, Parakeet utilities, SDL, and command-line programs that the
10
+ application does not call.
11
+
12
+ ## Sources
13
+
14
+ - Paraformer resident worker: FunASR commit
15
+ `5990412a196518d511bff12584417195fb9c952b` plus the product worker and English
16
+ post-processing patch.
17
+ - SenseVoice resident workers: SenseVoice commit
18
+ `fbf91f3baccebec554dcee68708b0cda61d42805` plus the product worker patch.
19
+ - Fun-ASR-Nano resident workers: FunASR commit
20
+ `5990412a196518d511bff12584417195fb9c952b` plus the product worker and Vulkan
21
+ backend patch.
22
+ - Whisper CPU and Vulkan servers: whisper.cpp v1.9.1 commit
23
+ `f049fff95a089aa9969deb009cdd4892b3e74916`.
24
+
25
+ The FunASR, SenseVoice, and whisper.cpp-derived files are provided under their
26
+ respective MIT licenses included in each runtime directory. Vulkan-enabled
27
+ runtimes require the Vulkan loader installed by the target machine's graphics
28
+ driver; `vulkan-1.dll` is not redistributed.
licenses/funasr-MIT.txt ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2025 FunASR
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
licenses/whisper.cpp-MIT.txt ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2023-2026 The ggml authors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
runtimes/funasr-nano-cpu/llama-funasr-cli.exe ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:93092e523328d3af5579396755200c81efbe92b05f1f36b4e6b1a421f0353e9b
3
+ size 3998720
runtimes/funasr-nano-vulkan/llama-funasr-cli.exe ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6fc43298ba433ac603eb40f193e0b5d3469dbb826961ace70a302aa46d87d0bd
3
+ size 77970944
runtimes/paraformer-cpu/llama-funasr-paraformer.exe ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57cb7beed899cbc0914c498614c7dbc816d0deecf2f2cf8f0e915c41f3f62527
3
+ size 1926144
runtimes/sensevoice-cpu/llama-funasr-sensevoice.exe ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:977fcd532c7b1465a6e5b73916e0db878001adea0cf5bf94621e3c36ec59a745
3
+ size 1916416
runtimes/sensevoice-vulkan/llama-funasr-sensevoice.exe ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:583d4dcbea043c85d957758d08455dfc8ed2d50a626007db61d59a89cc257bf8
3
+ size 75918848
runtimes/whisper-cpu/ggml-base.dll ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8be6f3e06388b3a9aac75d29bec86363e2e2f5b0cee86ce6438866bcac0bcf86
3
+ size 656384
runtimes/whisper-cpu/ggml-cpu-alderlake.dll ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:323408503da53ccc67248b26d711f16d73d2d6239f7703a00a6a18b60ed5b8b8
3
+ size 790528
runtimes/whisper-cpu/ggml-cpu-cannonlake.dll ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0f659d98b823bb871c7845787bba7485facd220099cf58aa773652b9b842ab2e
3
+ size 833536
runtimes/whisper-cpu/ggml-cpu-cascadelake.dll ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8116b0e516134139de29400c536ecf06fe708ce1a078a96d30b562b30d524fbe
3
+ size 830976
runtimes/whisper-cpu/ggml-cpu-haswell.dll ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5925923a47672392f9e9c8c92e4b9b65ea473948bf4f568a0300a3a42485135
3
+ size 791552
runtimes/whisper-cpu/ggml-cpu-icelake.dll ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b726d528bee0c811c6b2ad8775357379d651cabb487bbf800331697fe73da187
3
+ size 830976
runtimes/whisper-cpu/ggml-cpu-sandybridge.dll ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c49c64817233b2447ca305b41c66afa4bed31b058bc190a98af2a30cc703542
3
+ size 783360
runtimes/whisper-cpu/ggml-cpu-skylakex.dll ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:06082dc62a09a82fbba4aab49b2c049b96db84c5fc561a446a8ddbfb9b20bf86
3
+ size 833536
runtimes/whisper-cpu/ggml-cpu-sse42.dll ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9a8f55ff1dfad231aa6250ac52c330c5bfa5c4c37691c8b591a68b52090ce40c
3
+ size 772096
runtimes/whisper-cpu/ggml-cpu-x64.dll ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:45ff644d301b8a1fffc7c5e3864205047360eb197814c7311f366d106bb5b19f
3
+ size 776704
runtimes/whisper-cpu/ggml.dll ADDED
Binary file (67.6 kB). View file
 
runtimes/whisper-cpu/whisper-server.exe ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c1ef08694756eda280e79b8217da63ee2af33c87ac3d5f27d68f9f3f966fd32
3
+ size 725504
runtimes/whisper-cpu/whisper.dll ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b31690c12461517fe9774e61318ab63a69972b948151feed98b913be35f708b6
3
+ size 1366016
runtimes/whisper-vulkan/ggml-base.dll ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:280ee55bb770d4d22a11e62b08e40fa312f6167e0dacaf436f4cc367d85386b8
3
+ size 639488
runtimes/whisper-vulkan/ggml-cpu.dll ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b756806d2dcbd68abd26b61f960684238f788bac026fa6487b462f0845690298
3
+ size 786944
runtimes/whisper-vulkan/ggml-vulkan.dll ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34f0b5465ca4c9a4529a96d043f64ebd2ffc440182ca39fe55a1f73d79355b30
3
+ size 73818112
runtimes/whisper-vulkan/ggml.dll ADDED
Binary file (67.1 kB). View file
 
runtimes/whisper-vulkan/whisper-server.exe ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2c1ef08694756eda280e79b8217da63ee2af33c87ac3d5f27d68f9f3f966fd32
3
+ size 725504
runtimes/whisper-vulkan/whisper.dll ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aa3052ad44b299379e86a3aac063794f138dda76d55b1a60d1c2dd588c344879
3
+ size 1308160