Commit ·
a0b1503
0
Parent(s):
* First commit
Browse files- .gitattributes +9 -0
- LICENSE +57 -0
- README.md +3 -0
- README_ZH.md +3 -0
- whisper-base-maixcam2/base-decoder-loop.axmodel +3 -0
- whisper-base-maixcam2/base-decoder-main.axmodel +3 -0
- whisper-base-maixcam2/base-encoder.axmodel +3 -0
- whisper-base-maixcam2/base-positional_embedding.bin +3 -0
- whisper-base-maixcam2/base-tokens.txt +3 -0
- whisper-base-maixcam2/whisper-base.mud +3 -0
- whisper-base-maixcam2/whisper-decoder-loop.mud +3 -0
- whisper-base-maixcam2/whisper-decoder-main.mud +3 -0
.gitattributes
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
whisper-base-maixcam2 filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
whisper-base-maixcam2/base-positional_embedding.bin filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
whisper-base-maixcam2/base-tokens.txt filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
whisper-base-maixcam2/whisper-base.mud filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
whisper-base-maixcam2/whisper-decoder-loop.mud filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
whisper-base-maixcam2/whisper-decoder-main.mud filter=lfs diff=lfs merge=lfs -text
|
| 7 |
+
whisper-base-maixcam2/base-decoder-loop.axmodel filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
whisper-base-maixcam2/base-decoder-main.axmodel filter=lfs diff=lfs merge=lfs -text
|
| 9 |
+
whisper-base-maixcam2/base-encoder.axmodel filter=lfs diff=lfs merge=lfs -text
|
LICENSE
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: BSD 3-Clause "New" or "Revised" License
|
| 3 |
+
spdx-id: BSD-3-Clause
|
| 4 |
+
nickname: Modified BSD License
|
| 5 |
+
hidden: false
|
| 6 |
+
|
| 7 |
+
description: A permissive license similar to the <a href="/licenses/bsd-2-clause/">BSD 2-Clause License</a>, but with a 3rd clause that prohibits others from using the name of the copyright holder or its contributors to promote derived products without written consent.
|
| 8 |
+
|
| 9 |
+
how: Create a text file (typically named LICENSE or LICENSE.txt) in the root of your source code and copy the text of the license into the file. Replace [year] with the current year and [fullname] with the name (or names) of the copyright holders.
|
| 10 |
+
|
| 11 |
+
using:
|
| 12 |
+
Flutter: https://github.com/flutter/flutter/blob/master/LICENSE
|
| 13 |
+
LevelDB: https://github.com/google/leveldb/blob/master/LICENSE
|
| 14 |
+
Quill: https://github.com/quilljs/quill/blob/develop/LICENSE
|
| 15 |
+
|
| 16 |
+
permissions:
|
| 17 |
+
- commercial-use
|
| 18 |
+
- modifications
|
| 19 |
+
- distribution
|
| 20 |
+
- private-use
|
| 21 |
+
|
| 22 |
+
conditions:
|
| 23 |
+
- include-copyright
|
| 24 |
+
|
| 25 |
+
limitations:
|
| 26 |
+
- liability
|
| 27 |
+
- warranty
|
| 28 |
+
|
| 29 |
+
---
|
| 30 |
+
BSD 3-Clause License
|
| 31 |
+
|
| 32 |
+
Copyright (c) [year], [fullname]
|
| 33 |
+
|
| 34 |
+
Redistribution and use in source and binary forms, with or without
|
| 35 |
+
modification, are permitted provided that the following conditions are met:
|
| 36 |
+
|
| 37 |
+
1. Redistributions of source code must retain the above copyright notice, this
|
| 38 |
+
list of conditions and the following disclaimer.
|
| 39 |
+
|
| 40 |
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
| 41 |
+
this list of conditions and the following disclaimer in the documentation
|
| 42 |
+
and/or other materials provided with the distribution.
|
| 43 |
+
|
| 44 |
+
3. Neither the name of the copyright holder nor the names of its
|
| 45 |
+
contributors may be used to endorse or promote products derived from
|
| 46 |
+
this software without specific prior written permission.
|
| 47 |
+
|
| 48 |
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
| 49 |
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
| 50 |
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
| 51 |
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
| 52 |
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
| 53 |
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
| 54 |
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
| 55 |
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
| 56 |
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| 57 |
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
README.md
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Whisper
|
| 2 |
+
|
| 3 |
+
For usage documentation, please refer to [here](https://wiki.sipeed.com/maixpy/doc/zh/mllm/asr_sensevoice.html).
|
README_ZH.md
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Whisper
|
| 2 |
+
|
| 3 |
+
使用文档请参考[这里](https://wiki.sipeed.com/maixpy/doc/zh/mllm/asr_whisper.html)
|
whisper-base-maixcam2/base-decoder-loop.axmodel
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4b12160aaa1ca31248a32ce05713fd72e273b16444389853c1f52990cf5130eb
|
| 3 |
+
size 130364397
|
whisper-base-maixcam2/base-decoder-main.axmodel
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:940f273d111e3aee53cdb692a384a29556981aa146afbb2f558f6aac262c0621
|
| 3 |
+
size 135675471
|
whisper-base-maixcam2/base-encoder.axmodel
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b9f89ed5bbe31bcf98aa0e479ced1699b39816db2d3e2e2ff84c6e887af2b79b
|
| 3 |
+
size 56024079
|
whisper-base-maixcam2/base-positional_embedding.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:88fa1cdbf2b06f86b0ecb7be0fccfc39e906502986572b8cf5319c250e857169
|
| 3 |
+
size 917504
|
whisper-base-maixcam2/base-tokens.txt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b34b360dbb493e781e479794586d661700670d65564001f23024971d1f2fa126
|
| 3 |
+
size 816730
|
whisper-base-maixcam2/whisper-base.mud
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9e3c5b4a1a23ad59fdd12e4567776d1636accb94646da7226bc5325add3300ca
|
| 3 |
+
size 568
|
whisper-base-maixcam2/whisper-decoder-loop.mud
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e7c381b3284ad35c4930b4ae96f4b0d61e431b06c5f6db925a4dec05bf53eb3b
|
| 3 |
+
size 285
|
whisper-base-maixcam2/whisper-decoder-main.mud
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:92013e5e057cc178c3a3632c08a2c87cffe16d56e587598f4c914254ab14986b
|
| 3 |
+
size 285
|