#!/usr/bin/env python3 import os import re from pathlib import Path from typing import List BASE_URL = "https://huggingface.co/csukuangfj/sherpa-onnx-apk/resolve/main/" from dataclasses import dataclass @dataclass class APK: major: int minor: int patch: int arch: str short_name: str def __init__(self, s): # sherpa-onnx-1.9.23-arm64-v8a-kws-en-gigaspeech-zipformer.apk # sherpa-onnx-1.9.23-x86-kws-en-gigaspeech-zipformer.apk s = str(s)[len("asr/") :] split = s.split("-") self.major, self.minor, self.patch = list(map(int, split[2].split("."))) self.arch = split[3] self.lang = split[5] self.short_name = split[6] + split[7] if "arm" in s: self.arch += "-" + split[4] self.lang = split[6] self.short_name = split[7] + split[8] if "armeabi" in self.arch: self.arch = "y" + self.arch if "arm64" in self.arch: self.arch = "z" + self.arch def sort_by_apk(x): x = APK(x) return (x.major, x.minor, x.patch, x.arch, x.lang, x.short_name) def generate_url(files: List[str]) -> List[str]: ans = [] base = BASE_URL for f in files: ans.append(base + str(f)) return ans def get_all_files(d: str, suffix: str) -> List[str]: ans = sorted(Path(d).glob(suffix), key=sort_by_apk, reverse=True) return list(map(lambda x: BASE_URL + str(x), ans)) def to_file(filename: str, files: List[str]): content = r"""

APKs for keyword spotting

This page lists the keyword spotting APKs for sherpa-onnx, one of the deployment frameworks of the Next-gen Kaldi project.
The name of an APK has the following rule: where
You can download all supported models from https://github.com/k2-fsa/sherpa-onnx/releases/tag/kws-models

APK Comment Model
sherpa-onnx-x.y.z-arm64-v8a-kws-zh-wenetspeech-zipformer.apk It supports only Chinese. sherpa-onnx-kws-zipformer-gigaspeech-3.3M-2024-01-01.tar.bz2
sherpa-onnx-x.y.z-arm64-v8a-kws-en-gigaspeech-zipformer.apk It supports only English. sherpa-onnx-kws-zipformer-wenetspeech-3.3M-2024-01-01.tar.bz2


""" if "-cn" not in filename: content += """ For Chinese users, please visit this address, which replaces huggingface.co with hf-mirror.com

中国用户, 请访问这个地址

""" with open(filename, "w") as f: print(content, file=f) for x in files: name = x.rsplit("/", maxsplit=1)[-1] print(f'{name}
', file=f) def main(): apk = get_all_files("kws", suffix="*.apk") to_file("./apk-kws.html", apk) # for Chinese users apk2 = [] for a in apk: a = a.replace("huggingface.co", "hf-mirror.com") a = a.replace("resolve", "blob") apk2.append(a) to_file("./apk-kws-cn.html", apk2) if __name__ == "__main__": main()