#!/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 lang: str src: str # piper, coqui def __init__(self, s): s = str(s)[len('speaker-identification/'):] split = s.split("-") self.major, self.minor, self.patch = list(map(int, split[2].split("."))) self.arch = split[3] self.lang = split[4] self.src = split[7] if "arm" in s: self.arch += "-" + split[4] self.lang = split[5] self.src = 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, -ord(x.src[0]), -ord(x.lang[0])) 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 Speaker Identification

This page lists the speaker identification 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

Note: Models from NVidia/NeMo have their names prefixed with nemo-.

Note: Models from wespeaker have their names prefixed with wespeaker-.

Note: Models from 3D-Speaker have their names prefixed with 3dspeaker-.

You can download all supported models from https://github.com/k2-fsa/sherpa-onnx/releases/tag/speaker-recongition-models

""" 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("speaker-identification", suffix="*.apk") to_file("./apk-speaker-identification.html", apk) if __name__ == "__main__": main()