Spaces:
Running
Running
Enforce 30s audio duration
Browse files- assets/{index-0hpb9Maq.js β index-CTHbq6_O.js} +0 -0
- index.css +49 -0
- index.html +2 -56
- moonshine/base/cached_decode.onnx +2 -2
- moonshine/base/encode.onnx +2 -2
- moonshine/base/preprocess.onnx +2 -2
- moonshine/base/uncached_decode.onnx +2 -2
- moonshine/tiny/cached_decode.onnx +2 -2
- moonshine/tiny/encode.onnx +2 -2
- moonshine/tiny/preprocess.onnx +2 -2
- moonshine/tiny/uncached_decode.onnx +2 -2
assets/{index-0hpb9Maq.js β index-CTHbq6_O.js}
RENAMED
The diff for this file is too large to render.
See raw diff
|
|
index.css
ADDED
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
font-family: Arial, Helvetica, sans-serif;
|
3 |
+
}
|
4 |
+
div {
|
5 |
+
margin-bottom: 1em;
|
6 |
+
}
|
7 |
+
button {
|
8 |
+
height: 3em;
|
9 |
+
width: 6em;
|
10 |
+
margin-left: 0.5em;
|
11 |
+
}
|
12 |
+
.container {
|
13 |
+
max-width: 600px;
|
14 |
+
margin: 0 auto;
|
15 |
+
}
|
16 |
+
.justify-center {
|
17 |
+
display: flex;
|
18 |
+
justify-content: center;
|
19 |
+
}
|
20 |
+
.logo-container {
|
21 |
+
text-align: center;
|
22 |
+
}
|
23 |
+
#logo {
|
24 |
+
width: 196px;
|
25 |
+
}
|
26 |
+
#sound {
|
27 |
+
width: 100%;
|
28 |
+
}
|
29 |
+
#transcription {
|
30 |
+
color: #447ff7;
|
31 |
+
}
|
32 |
+
#audioPanel {
|
33 |
+
display: none;
|
34 |
+
}
|
35 |
+
.st0 {
|
36 |
+
fill: #ffffff;
|
37 |
+
stroke: #3a4966;
|
38 |
+
stroke-width: 20;
|
39 |
+
stroke-linecap: round;
|
40 |
+
stroke-linejoin: round;
|
41 |
+
stroke-miterlimit: 10;
|
42 |
+
}
|
43 |
+
.st1 {
|
44 |
+
fill: none;
|
45 |
+
stroke: #447ff7;
|
46 |
+
stroke-width: 30;
|
47 |
+
stroke-linecap: round;
|
48 |
+
stroke-miterlimit: 10;
|
49 |
+
}
|
index.html
CHANGED
@@ -3,63 +3,10 @@
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8" />
|
5 |
<link rel="icon" href="/favicon.png" />
|
|
|
6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
7 |
<title>Moonshine β lightweight ASR by Useful Sensors</title>
|
8 |
-
<
|
9 |
-
body {
|
10 |
-
font-family: Arial, Helvetica, sans-serif;
|
11 |
-
}
|
12 |
-
div {
|
13 |
-
margin-bottom: 1em;
|
14 |
-
}
|
15 |
-
button {
|
16 |
-
height: 3em;
|
17 |
-
width: 6em;
|
18 |
-
margin-left: 0.5em;
|
19 |
-
}
|
20 |
-
.container {
|
21 |
-
max-width: 600px;
|
22 |
-
margin: 0 auto;
|
23 |
-
}
|
24 |
-
.justify-center {
|
25 |
-
display: flex;
|
26 |
-
justify-content: center;
|
27 |
-
}
|
28 |
-
.logo-container {
|
29 |
-
text-align: center;
|
30 |
-
}
|
31 |
-
#logo {
|
32 |
-
width: 196px;
|
33 |
-
}
|
34 |
-
#sound {
|
35 |
-
width: 100%;
|
36 |
-
}
|
37 |
-
#transcription {
|
38 |
-
color: #447ff7;
|
39 |
-
}
|
40 |
-
#audioPanel {
|
41 |
-
display: none;
|
42 |
-
}
|
43 |
-
#inferenceTime {
|
44 |
-
|
45 |
-
}
|
46 |
-
.st0 {
|
47 |
-
fill: #ffffff;
|
48 |
-
stroke: #3a4966;
|
49 |
-
stroke-width: 20;
|
50 |
-
stroke-linecap: round;
|
51 |
-
stroke-linejoin: round;
|
52 |
-
stroke-miterlimit: 10;
|
53 |
-
}
|
54 |
-
.st1 {
|
55 |
-
fill: none;
|
56 |
-
stroke: #447ff7;
|
57 |
-
stroke-width: 30;
|
58 |
-
stroke-linecap: round;
|
59 |
-
stroke-miterlimit: 10;
|
60 |
-
}
|
61 |
-
</style>
|
62 |
-
<script type="module" crossorigin src="/assets/index-0hpb9Maq.js"></script>
|
63 |
</head>
|
64 |
<body>
|
65 |
<div id="root">
|
@@ -105,4 +52,3 @@
|
|
105 |
</div>
|
106 |
</body>
|
107 |
</html>
|
108 |
-
|
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8" />
|
5 |
<link rel="icon" href="/favicon.png" />
|
6 |
+
<link rel="stylesheet" href="/index.css">
|
7 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
8 |
<title>Moonshine β lightweight ASR by Useful Sensors</title>
|
9 |
+
<script type="module" crossorigin src="/assets/index-CTHbq6_O.js"></script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
</head>
|
11 |
<body>
|
12 |
<div id="root">
|
|
|
52 |
</div>
|
53 |
</body>
|
54 |
</html>
|
|
moonshine/base/cached_decode.onnx
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b4ce1a77e172eea8f4161e55d242aaeb670c245faf89175432d6d6d0ff6e59b6
|
3 |
+
size 231431906
|
moonshine/base/encode.onnx
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f7080bed747cf5b5cd632441e834437bb587466f676b39e6a3531a11595d8a57
|
3 |
+
size 83407854
|
moonshine/base/preprocess.onnx
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ffa630d395c5ccf76f5d4954be5b882df76aaf6491519ec01fd82ea7a3819fb2
|
3 |
+
size 14077290
|
moonshine/base/uncached_decode.onnx
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:311cdcb7ba1d754ccb02ebf1ae6d75c0179ac831bd0242b7f58a1bf97cfc013a
|
3 |
+
size 253570809
|
moonshine/tiny/cached_decode.onnx
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3d27f1a476d7615a2eaf33aed3c30d181557258f8c83a9308ba0c7ca13b07189
|
3 |
+
size 119667327
|
moonshine/tiny/encode.onnx
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:36ba25e28e9dc3899b2e8f63e4031ef445a5a91d31b4cc18f0771b8a26993fd6
|
3 |
+
size 30095274
|
moonshine/tiny/preprocess.onnx
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f33addce61a143460fe753b5ee5b7db255e5140b5b779c065b94f6c83ff0bf4e
|
3 |
+
size 6800738
|
moonshine/tiny/uncached_decode.onnx
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fe688629b801f7e91983d87fbe6bf8f07cfc5340f4c2c3b340f67cf4827af3cb
|
3 |
+
size 127620212
|