Skip to main content

No project description provided

Project description

Introduction

Kaldi-compatible online fbank feature extractor without external dependencies.

Tested on the following architectures and operating systems:

  • Linux
  • macOS
  • Windows
  • Android
  • x86
  • arm
  • aarch64

Usage

See the following CMake-based speech recognition (i.e., text-to-speech) projects for its usage:

They use kaldi-native-fbank to compute fbank features for real-time speech recognition.

Python APIs

First, please install kaldi-native-fbank by

git clone https://github.com/csukuangfj/kaldi-native-fbank
cd kaldi-native-fbank
python3 setup.py install

or use

pip install kaldi-native-fbank

To check that you have installed kaldi-native-fbank successfully, please use

python3 -c "import kaldi_native_fbank; print(kaldi_native_fbank.__version__)"

which should print the version you have installed.

Please refer to

for usages.

For easier reference, we post the above file below:

#!/usr/bin/env python3

import sys

try:
    import kaldifeat
except:
    print("Please install kaldifeat first")
    sys.exit(0)

import kaldi_native_fbank as knf
import torch


def main():
    sampling_rate = 16000
    samples = torch.randn(16000 * 10)

    opts = kaldifeat.FbankOptions()
    opts.frame_opts.dither = 0
    opts.mel_opts.num_bins = 80
    opts.frame_opts.snip_edges = False
    opts.mel_opts.debug_mel = False

    online_fbank = kaldifeat.OnlineFbank(opts)

    online_fbank.accept_waveform(sampling_rate, samples)

    opts = knf.FbankOptions()
    opts.frame_opts.dither = 0
    opts.mel_opts.num_bins = 80
    opts.frame_opts.snip_edges = False
    opts.mel_opts.debug_mel = False

    fbank = knf.OnlineFbank(opts)
    fbank.accept_waveform(sampling_rate, samples.tolist())

    assert online_fbank.num_frames_ready == fbank.num_frames_ready
    for i in range(fbank.num_frames_ready):
        f1 = online_fbank.get_frame(i)
        f2 = torch.from_numpy(fbank.get_frame(i))
        assert torch.allclose(f1, f2, atol=1e-3), (i, (f1 - f2).abs().max())


if __name__ == "__main__":
    torch.manual_seed(20220825)
    main()
    print("success")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kaldi-native-fbank-1.20.1.tar.gz (68.9 kB view details)

Uploaded Source

Built Distributions

kaldi_native_fbank-1.20.1-cp312-cp312-win_amd64.whl (257.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

kaldi_native_fbank-1.20.1-cp312-cp312-win32.whl (229.9 kB view details)

Uploaded CPython 3.12 Windows x86

kaldi_native_fbank-1.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (236.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

kaldi_native_fbank-1.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (223.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

kaldi_native_fbank-1.20.1-cp312-cp312-macosx_11_0_arm64.whl (172.5 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

kaldi_native_fbank-1.20.1-cp312-cp312-macosx_10_9_x86_64.whl (192.7 kB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

kaldi_native_fbank-1.20.1-cp311-cp311-win_amd64.whl (256.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

kaldi_native_fbank-1.20.1-cp311-cp311-win32.whl (229.4 kB view details)

Uploaded CPython 3.11 Windows x86

kaldi_native_fbank-1.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (236.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

kaldi_native_fbank-1.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (222.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

kaldi_native_fbank-1.20.1-cp311-cp311-macosx_11_0_arm64.whl (171.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

kaldi_native_fbank-1.20.1-cp311-cp311-macosx_10_9_x86_64.whl (190.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

kaldi_native_fbank-1.20.1-cp310-cp310-win_amd64.whl (256.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

kaldi_native_fbank-1.20.1-cp310-cp310-win32.whl (229.4 kB view details)

Uploaded CPython 3.10 Windows x86

kaldi_native_fbank-1.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (236.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

kaldi_native_fbank-1.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (222.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

kaldi_native_fbank-1.20.1-cp310-cp310-macosx_11_0_arm64.whl (171.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

kaldi_native_fbank-1.20.1-cp310-cp310-macosx_10_9_x86_64.whl (190.9 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

kaldi_native_fbank-1.20.1-cp39-cp39-win_amd64.whl (256.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

kaldi_native_fbank-1.20.1-cp39-cp39-win32.whl (229.4 kB view details)

Uploaded CPython 3.9 Windows x86

kaldi_native_fbank-1.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (236.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

kaldi_native_fbank-1.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (222.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

kaldi_native_fbank-1.20.1-cp38-cp38-win_amd64.whl (256.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

kaldi_native_fbank-1.20.1-cp38-cp38-win32.whl (229.3 kB view details)

Uploaded CPython 3.8 Windows x86

kaldi_native_fbank-1.20.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (236.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

kaldi_native_fbank-1.20.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (222.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

kaldi_native_fbank-1.20.1-cp37-cp37m-win_amd64.whl (257.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

kaldi_native_fbank-1.20.1-cp37-cp37m-win32.whl (230.7 kB view details)

Uploaded CPython 3.7m Windows x86

kaldi_native_fbank-1.20.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (240.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

kaldi_native_fbank-1.20.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (228.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

File details

Details for the file kaldi-native-fbank-1.20.1.tar.gz.

File metadata

  • Download URL: kaldi-native-fbank-1.20.1.tar.gz
  • Upload date:
  • Size: 68.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.12

File hashes

Hashes for kaldi-native-fbank-1.20.1.tar.gz
Algorithm Hash digest
SHA256 05172c507b621c08c9f13ec596fc8d27ffc2aec3dfc6b20d3879214a8c11c404
MD5 54e3ffa89341a1bf3ee4080dc45b8898
BLAKE2b-256 20bbeaeeda8d6ecbc58a1fd4d1b8982fb46c5d6520f18611163def1a269280fc

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1b0d2d2f64141cd448f4bd1879359e852f17c9f79728e9aa3b5bcd05a6932779
MD5 c8a84cc8b37f794c7ac39932166cfa5d
BLAKE2b-256 fed79ccc128496cc3c229e2d313b1fd431f482c7ef50b806c18498442a46fb76

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0519d87846e787662116717880c07a29f7c7cbce227a6da09da7e1f59532a20c
MD5 f1d43c6203d036941390deef81687c21
BLAKE2b-256 3f3413fd88080a7bfd4cceacd9e2b9cbd0344271af73921abe6149a841925027

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c0c8f54bbb703f54377457ac72aca05c531e63cce2c4863bf2b52b093e9bc23
MD5 d1a449904d49cec4d0517b8830c9c0a1
BLAKE2b-256 b5317c6dcba6929432aba0a504c060eefc3d35e2fd97879ff74ede796fb20f96

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a84fda0c7cda7183126567a78d3270fa950a239cc00f50c44dc8245a9f76aad
MD5 977c0520ecd2b2432c6509ee61b5da3f
BLAKE2b-256 ad6511d3e9f9e8c23a01844996950405c77ca19e1478e906a8e5c2f4b60dc2df

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 160e1f0e5ce5c93fbd0c1d66f3c28ea2c8427d1c1489fba0d387c92260c5f69b
MD5 d293414040135870a2396e59e64fe878
BLAKE2b-256 22025b8cd1125b83c74c6d47d9979bec6e2e3e9a275dad050074b5d09840f381

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba2a9ee49107edc71db6a2fafdbf2b84eaa19898f4e8f45a862e2b53d54af864
MD5 f42eb8ebc98bdbaaa83cd56da8af7e25
BLAKE2b-256 4ab477e59e174c1ffd7501aba4b05232f7e94c9fc6528e7bad7eadf2ab682255

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 47f6ba8732f3de1e896b6f809cdd910ff763e5056847827f4a87906cb758ae61
MD5 d16131465b2cd6c7dc00f788d88d1285
BLAKE2b-256 051f3056346212f709eefe45669119f37ead14e061789a6ed70361a689a311d6

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 29493594efed3e66616ddacd3380ed4150c5d1774b4f61aef0f46ad957586099
MD5 543ede4ecc61e0d2e93315ee8f151b7f
BLAKE2b-256 e2b46c6c6be8395da72a84564f004cbd8e250c78c99b72f378407d5006f9ab79

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 485f313b36051255be59391106edb1cb6ab0660cab40b44767efc45971483327
MD5 10253d1f018f38087c11754d2070e4d8
BLAKE2b-256 49f50b718efc8bedda8c5fa73b30bb6ff3c4383fdc39e18f4542ec2bd0486f90

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed0aa89f7cd779b3d31e6f986f4f0295c594ce98d294a67ab7cc50e726dda1f3
MD5 859697bf161886e4a3f4edfa6ba2d050
BLAKE2b-256 b3aaeac131dcb6264069236bf8d28fd1279ef3664c6617cd493bf09f5ef65e4f

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c0c98a269ec9cbf6eee3a3af2c8c5730e93aaaa6469b177bda365e964eb3519
MD5 10bbdbf1046b58d2bf04986a21a08afa
BLAKE2b-256 203bb8124108008ba0a37e74d3daf8be57a72fb6917c36caea758e3e9ae68d25

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fb5b9f3a8cf0aebca9c66f84bcfc4cd1f502db3dd0076f9d37e3f4f9de9d4ab4
MD5 214f0a73a64602097810390150770e5c
BLAKE2b-256 ea72b3d151b9812282f24e1af7d67c5ccb940f12d07f1f5138e8acea0ab9bec3

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 217c2c1325ae7412ba0a89e6bec160aef4bc41f2651e25135b81c9198a30d9bf
MD5 1124800437edaf13a89d6f4e0626481b
BLAKE2b-256 f552ee4ee4d04e5fcb7f1e9d24f537d8384354405a7bfb100741156b7b24e7df

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 622ec830a46012c916444d2107e3d7f64c001a69e9fd6d1b37d2caaf717ff109
MD5 4668c0ce67f364a14f70be0fc4d60704
BLAKE2b-256 535eb652d6a3baabdc96e2f50e8385ba00e9a90d1db10f4d2cf51dcd3339f567

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68e9553875d8acd98ae18780587b34f7dae6690bc541f768706e0a9ad8a40c77
MD5 d0e7d712a07956ba7170a47243548e73
BLAKE2b-256 f948d547367a1a5c303e92675254390dccff70cae9208f19f5f7f653fa2ed9e5

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 693ead44901c77b615324bbb4e6c944af8d32d4f5b03698b743473ad697e89e9
MD5 83d5a37bc42caf348c68543633cc9e65
BLAKE2b-256 d04dd43fdb00f22576fcc11ef3291b2fe1176e090c224faf6b65d86750280cbd

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 860105fdf1a579bc750e392e4fc2e036c35bd581d514b2a9ab9d1161a9a99ce1
MD5 e12903b74020375c6303313cd8a96f56
BLAKE2b-256 cd0a144b42e45b94202e730a4ee83aa5b3cdf72614879614d7333523e1d417c1

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2ce9108f8eb521703a088891b12bfd0767f3c9ca4d6b7038670998e4c8cedc1
MD5 627a892d282248d053bc268755a05efe
BLAKE2b-256 176e60530ae08cc1e5552d5e67ce4798d4b41e2c9ece6a2a0a8c76895c6919f7

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 569b0d619f112ed4b2271d62a815b0dfd2173f7dc043ddfdbdc0ef8a5bfa295d
MD5 661af95df43e1b0f4fd16bc48d08185a
BLAKE2b-256 fc64989851033dd3e01955656c6d47589bff7ee8c31b017116c260d19759e3b2

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f3998aa6183a1ff4189670a735819d952183c2eaef35c6886cecd288036638b4
MD5 d8a7884bc53dd61e712eb5285eb26626
BLAKE2b-256 0199e16c194c1320d4bcfb89babc57b00aa53e2ea24345dfc4c262c70e38f09b

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40db4542f8bc1bfceddf636090e3ebd9b2bdeb48a49cef6ae5b305240a0c4c68
MD5 90e4b19ea5dca31cbda26e93332946d4
BLAKE2b-256 be1b9369346763de89e6b312738a8f5f2732bce52e8a656d144f02a894e67b70

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 acc5724b9fcccd3d0aad573c230202ae81c5a818560db7a904bafed699bd1130
MD5 a6d5317b7007dd765a59fdc2f26fca8f
BLAKE2b-256 26f6c2a332ef4ca54b1e71a54684b4b22561e63c477c44820d255c8765c84450

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 88a5c871a10342a6a1012f6f9660e67033ffd2202570b0d8e09f7cea98ca8ff6
MD5 67f080875db939b0b080457a3666aad3
BLAKE2b-256 a705abcbb2cac0d8732251b0020632eae6cae014c476f8a67a1cf04055d0cd4a

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0ad0fef1601c1a597f2fca7b19d90209c8dfb61bd87d7d9aad400ff0851cfb92
MD5 5bfa7a470daa058c96cc749aa8d57416
BLAKE2b-256 ab96dac5eeba0fb7da147022ef66f4f91185bc2db13a1e4f18074bdbf7a11c04

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f790aac931077954fc5f192aaaff030f3593872048bfd17b6ad7243dc2a16ea0
MD5 14431b4bfb0eaa34e8fd774320a2a0ce
BLAKE2b-256 253cc944b04b8f90d9b6c8392f8986b96b3f633a5087c61a9254afc2df85f084

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c90f19fb1d4223a88b865a36ea4ea959df13a19255d324c3cb215db46b2e0b82
MD5 a4b9251253cfd2b3cb692af871159c0f
BLAKE2b-256 fc430c83ea00034196ec90e4395fe599c359e409d62ba5582f24bcb8ced625a4

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 22b42ef4d2e7a4de6d72631a340c08002f179ea866ad3d82bc8bc7e5cf6a8dd2
MD5 d599d78692e8c2d0fc88c835d869ee11
BLAKE2b-256 4ec2d01cc284a2618ffcc9bff90a0e723161d3f6e09cf33c6ed5a25c4e4562df

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e19949b24b83fa4aba7888523d683197129e6037909962c1efafa6da3a5db793
MD5 7f1c89ff10140c80b5f01120c5149d13
BLAKE2b-256 78665174874745974fd95c9a5c584a38e23cbdf8999a02c6773de87597088a2d

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33306226a4779bece90edf03327921ec46031eba2438aefcad212a21e8319f9d
MD5 957840f77effd8e6bb753b3f92c7217c
BLAKE2b-256 857a9a258daba2e33ff3bfade484d48fddc301ff3bb6a3cf13269468547f18a8

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.20.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.20.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a918d6d620c22808fe332d1697fec0caa6e137e70ee4ab49586bf824b3290e9
MD5 512e14476bcc9c6bd8e79baccce01db3
BLAKE2b-256 f7b5519af476c9ceb3f19d74e1139d1246c3fbd5c3acf9f3d05a60bbfb58e95a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page