forked from k2-fsa/sherpa-onnx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build-apk-two-pass.sh
executable file
·222 lines (171 loc) · 6.41 KB
/
build-apk-two-pass.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
#!/usr/bin/env bash
# Please set the environment variable ANDROID_NDK
# before running this script
# Inside the $ANDROID_NDK directory, you can find a binary ndk-build
# and some other files like the file "build/cmake/android.toolchain.cmake"
set -e
log() {
# This function is from espnet
local fname=${BASH_SOURCE[1]##*/}
echo -e "$(date '+%Y-%m-%d %H:%M:%S') (${fname}:${BASH_LINENO[0]}:${FUNCNAME[1]}) $*"
}
SHERPA_ONNX_VERSION=$(grep "SHERPA_ONNX_VERSION" ./CMakeLists.txt | cut -d " " -f 2 | cut -d '"' -f 2)
log "Building two-pass APK for sherpa-onnx v${SHERPA_ONNX_VERSION}"
log "====================arm64-v8a================="
./build-android-arm64-v8a.sh
log "====================armv7-eabi================"
./build-android-armv7-eabi.sh
log "====================x86-64===================="
./build-android-x86-64.sh
log "====================x86===================="
./build-android-x86.sh
mkdir -p apks
log "Download 1st pass streaming model (English)"
# Download the model
# see https://k2-fsa.github.io/sherpa/onnx/pretrained_models/online-transducer/zipformer-transducer-models.html#csukuangfj-sherpa-onnx-streaming-zipformer-en-20m-2023-02-17-english
repo_url=https://huggingface.co/csukuangfj/sherpa-onnx-streaming-zipformer-en-20M-2023-02-17
log "$repo_url"
log "Start downloading ${repo_url}"
repo=$(basename $repo_url)
log "Download pretrained model from $repo_url"
GIT_LFS_SKIP_SMUDGE=1 git clone $repo_url
pushd $repo
git lfs pull --include "*.onnx"
# remove .git to save spaces
rm -rf .git
rm README.md
rm -rf test_wavs
rm .gitattributes
rm export-onnx*.sh
rm encoder-epoch-99-avg-1.onnx
rm decoder-epoch-99-avg-1.int8.onnx
rm joiner-epoch-99-avg-1.onnx
ls -lh
popd
mv -v $repo ./android/SherpaOnnx2Pass/app/src/main/assets/
tree ./android/SherpaOnnx2Pass/app/src/main/assets/
repo_1st=$repo
# https://k2-fsa.github.io/sherpa/onnx/pretrained_models/whisper/tiny.en.html
repo_url=https://huggingface.co/csukuangfj/sherpa-onnx-whisper-tiny.en
log "$repo_url"
log "Start downloading ${repo_url}"
repo=$(basename $repo_url)
log "Download pretrained model from $repo_url"
GIT_LFS_SKIP_SMUDGE=1 git clone $repo_url
pushd $repo
git lfs pull --include "*.onnx"
# remove .git to save spaces
rm -rf .git
rm -fv README.md
rm -rf test_wavs
rm .gitattributes
rm -fv *.ort
rm tiny.en-encoder.onnx
rm tiny.en-decoder.onnx
ls -lh
popd
mv -v $repo ./android/SherpaOnnx2Pass/app/src/main/assets/
tree ./android/SherpaOnnx2Pass/app/src/main/assets/
repo_2nd=$repo
pushd android/SherpaOnnx2Pass/app/src/main/java/com/k2fsa/sherpa/onnx
# sed -i.bak s/"firstType = 1"/"firstType = 1"/ ./MainActivity.kt
sed -i.bak s/"secondType = 1"/"secondType = 2"/ ./MainActivity.kt
git diff
popd
for arch in arm64-v8a armeabi-v7a x86_64 x86; do
log "------------------------------------------------------------"
log "build apk for $arch"
log "------------------------------------------------------------"
src_arch=$arch
if [ $arch == "armeabi-v7a" ]; then
src_arch=armv7-eabi
elif [ $arch == "x86_64" ]; then
src_arch=x86-64
fi
ls -lh ./build-android-$src_arch/install/lib/*.so
cp -v ./build-android-$src_arch/install/lib/*.so ./android/SherpaOnnx2Pass/app/src/main/jniLibs/$arch/
pushd ./android/SherpaOnnx2Pass
./gradlew build
popd
mv android/SherpaOnnx2Pass/app/build/outputs/apk/debug/app-debug.apk ./apks/sherpa-onnx-${SHERPA_ONNX_VERSION}-$arch-en-2pass-whisper-tiny.en.apk
ls -lh apks
rm -v ./android/SherpaOnnx2Pass/app/src/main/jniLibs/$arch/*.so
done
git checkout .
rm -rf ./android/SherpaOnnx2Pass/app/src/main/assets/$repo_1st
rm -rf ./android/SherpaOnnx2Pass/app/src/main/assets/$repo_2nd
log "=================================================="
log " two-pass Chinese "
log "=================================================="
log "Download 1st pass streaming model (Chinese)"
# https://k2-fsa.github.io/sherpa/onnx/pretrained_models/online-transducer/zipformer-transducer-models.html#sherpa-onnx-streaming-zipformer-zh-14m-2023-02-23
repo_url=https://huggingface.co/csukuangfj/sherpa-onnx-streaming-zipformer-zh-14M-2023-02-23
log "$repo_url"
log "Start downloading ${repo_url}"
repo=$(basename $repo_url)
log "Download pretrained model from $repo_url"
GIT_LFS_SKIP_SMUDGE=1 git clone $repo_url
pushd $repo
git lfs pull --include "*.onnx"
# remove .git to save spaces
rm -rf .git
rm README.md
rm -rf test_wavs
rm .gitattributes
rm export-onnx*.sh
rm encoder-epoch-99-avg-1.onnx
rm decoder-epoch-99-avg-1.int8.onnx
rm joiner-epoch-99-avg-1.onnx
ls -lh
popd
mv -v $repo ./android/SherpaOnnx2Pass/app/src/main/assets/
tree ./android/SherpaOnnx2Pass/app/src/main/assets/
repo_1st=$repo
# https://k2-fsa.github.io/sherpa/onnx/pretrained_models/offline-paraformer/paraformer-models.html#csukuangfj-sherpa-onnx-paraformer-zh-2023-03-28-chinese
repo_url=https://huggingface.co/csukuangfj/sherpa-onnx-paraformer-zh-2023-03-28
log "$repo_url"
log "Start downloading ${repo_url}"
repo=$(basename $repo_url)
log "Download pretrained model from $repo_url"
GIT_LFS_SKIP_SMUDGE=1 git clone $repo_url
pushd $repo
git lfs pull --include "*.onnx"
# remove .git to save spaces
rm -rf .git
rm README.md
rm -rf test_wavs
rm .gitattributes
rm model.onnx
ls -lh
popd
mv -v $repo ./android/SherpaOnnx2Pass/app/src/main/assets/
tree ./android/SherpaOnnx2Pass/app/src/main/assets/
repo_2nd=$repo
pushd android/SherpaOnnx2Pass/app/src/main/java/com/k2fsa/sherpa/onnx
sed -i.bak s/"firstType = 1"/"firstType = 0"/ ./MainActivity.kt
sed -i.bak s/"secondType = 1"/"secondType = 0"/ ./MainActivity.kt
git diff
popd
for arch in arm64-v8a armeabi-v7a x86_64 x86; do
log "------------------------------------------------------------"
log "build apk for $arch"
log "------------------------------------------------------------"
src_arch=$arch
if [ $arch == "armeabi-v7a" ]; then
src_arch=armv7-eabi
elif [ $arch == "x86_64" ]; then
src_arch=x86-64
fi
ls -lh ./build-android-$src_arch/install/lib/*.so
cp -v ./build-android-$src_arch/install/lib/*.so ./android/SherpaOnnx2Pass/app/src/main/jniLibs/$arch/
pushd ./android/SherpaOnnx2Pass
./gradlew build
popd
mv android/SherpaOnnx2Pass/app/build/outputs/apk/debug/app-debug.apk ./apks/sherpa-onnx-${SHERPA_ONNX_VERSION}-$arch-zh-2pass-paraformer.apk
ls -lh apks
rm -v ./android/SherpaOnnx2Pass/app/src/main/jniLibs/$arch/*.so
done
git checkout .
rm -rf ./android/SherpaOnnx2Pass/app/src/main/assets/$repo_1st
rm -rf ./android/SherpaOnnx2Pass/app/src/main/assets/$repo_2nd
ls -lh apks/