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.22.3.tar.gz (71.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

kaldi_native_fbank-1.22.3-cp314-cp314-win32.whl (279.7 kB view details)

Uploaded CPython 3.14Windows x86

kaldi_native_fbank-1.22.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (322.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

kaldi_native_fbank-1.22.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (300.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

kaldi_native_fbank-1.22.3-cp314-cp314-macosx_11_0_arm64.whl (229.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

kaldi_native_fbank-1.22.3-cp314-cp314-macosx_10_15_x86_64.whl (249.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

kaldi_native_fbank-1.22.3-cp313-cp313-win_amd64.whl (308.0 kB view details)

Uploaded CPython 3.13Windows x86-64

kaldi_native_fbank-1.22.3-cp313-cp313-win32.whl (273.3 kB view details)

Uploaded CPython 3.13Windows x86

kaldi_native_fbank-1.22.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (322.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

kaldi_native_fbank-1.22.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (299.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

kaldi_native_fbank-1.22.3-cp313-cp313-macosx_11_0_arm64.whl (229.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

kaldi_native_fbank-1.22.3-cp313-cp313-macosx_10_15_x86_64.whl (249.1 kB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

kaldi_native_fbank-1.22.3-cp312-cp312-win_amd64.whl (308.0 kB view details)

Uploaded CPython 3.12Windows x86-64

kaldi_native_fbank-1.22.3-cp312-cp312-win32.whl (273.3 kB view details)

Uploaded CPython 3.12Windows x86

kaldi_native_fbank-1.22.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (322.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

kaldi_native_fbank-1.22.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (298.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

kaldi_native_fbank-1.22.3-cp312-cp312-macosx_11_0_arm64.whl (228.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

kaldi_native_fbank-1.22.3-cp312-cp312-macosx_10_15_x86_64.whl (249.0 kB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

kaldi_native_fbank-1.22.3-cp311-cp311-win_amd64.whl (303.3 kB view details)

Uploaded CPython 3.11Windows x86-64

kaldi_native_fbank-1.22.3-cp311-cp311-win32.whl (273.0 kB view details)

Uploaded CPython 3.11Windows x86

kaldi_native_fbank-1.22.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (321.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

kaldi_native_fbank-1.22.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (299.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

kaldi_native_fbank-1.22.3-cp311-cp311-macosx_11_0_arm64.whl (229.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

kaldi_native_fbank-1.22.3-cp311-cp311-macosx_10_15_x86_64.whl (245.9 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

kaldi_native_fbank-1.22.3-cp310-cp310-win_amd64.whl (302.7 kB view details)

Uploaded CPython 3.10Windows x86-64

kaldi_native_fbank-1.22.3-cp310-cp310-win32.whl (272.3 kB view details)

Uploaded CPython 3.10Windows x86

kaldi_native_fbank-1.22.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (320.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

kaldi_native_fbank-1.22.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (297.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

kaldi_native_fbank-1.22.3-cp310-cp310-macosx_11_0_arm64.whl (227.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

kaldi_native_fbank-1.22.3-cp310-cp310-macosx_10_15_x86_64.whl (244.5 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

kaldi_native_fbank-1.22.3-cp39-cp39-win_amd64.whl (319.9 kB view details)

Uploaded CPython 3.9Windows x86-64

kaldi_native_fbank-1.22.3-cp39-cp39-win32.whl (272.2 kB view details)

Uploaded CPython 3.9Windows x86

kaldi_native_fbank-1.22.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (320.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

kaldi_native_fbank-1.22.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (297.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

kaldi_native_fbank-1.22.3-cp39-cp39-macosx_11_0_arm64.whl (228.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

kaldi_native_fbank-1.22.3-cp39-cp39-macosx_10_15_x86_64.whl (244.6 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

kaldi_native_fbank-1.22.3-cp38-cp38-win_amd64.whl (302.5 kB view details)

Uploaded CPython 3.8Windows x86-64

kaldi_native_fbank-1.22.3-cp38-cp38-win32.whl (272.2 kB view details)

Uploaded CPython 3.8Windows x86

kaldi_native_fbank-1.22.3-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (319.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

kaldi_native_fbank-1.22.3-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (296.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

kaldi_native_fbank-1.22.3-cp38-cp38-macosx_11_0_arm64.whl (227.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

kaldi_native_fbank-1.22.3-cp38-cp38-macosx_10_15_x86_64.whl (244.2 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

File details

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

File metadata

  • Download URL: kaldi-native-fbank-1.22.3.tar.gz
  • Upload date:
  • Size: 71.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for kaldi-native-fbank-1.22.3.tar.gz
Algorithm Hash digest
SHA256 387bf87225c6b83c93ae652eeaef1b4d531994b6e398e7a77189de340674f9af
MD5 249dbad76d2947f01a36281dca136aed
BLAKE2b-256 3a2c84076b352107ce12d56f28c313f1aca1be332d953dd96aec7b84976e6d53

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.22.3-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d6387ab52b56e2978524590e11b24cf03419d9e9361965bc8d6ff34ff9e867da
MD5 ca1fb77afb9c881e27c22aa89da0d0dc
BLAKE2b-256 632aedd85a2292d2af28af68214a3bdd029ab8ce2e6bc5aaac77255aa57ce964

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.22.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f1cc2b8eeec52a33868cf59bb95d40b335fa9cff7e15a6208e0e9b67b7fd7236
MD5 8c90ab773b3e5c278f59672826b9df28
BLAKE2b-256 2b6a374ec4e1cf13e672f5acd8272116c1885c2a7f84be491fc652415fc6e870

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.22.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 41fb506fde155d97aeef95dd6ceccc38c2c5dd4401f9b8fded9bacaf1bafef36
MD5 102769c88fb0cb15c8c0e47e3f8925ba
BLAKE2b-256 d64b1f3f17a7b601124df88112a1d1fcb543c8d908d6674f752f7d3322991770

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.22.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f6086073ec658a23d22f8657b3ee8c6ba69d65be57324a7284209ac7424b5ac
MD5 bfda7b9dcae0af3d09c0ef7b7d7a1c53
BLAKE2b-256 789ff98f72ba5a90a39675e82f2175dc5ec99a85892a88b9ccdd25f2dc916c82

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.22.3-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2efa8368cdd46a32c37a28c4baaa508b0a294ab1ca2aefddd3e97f62cfebc27b
MD5 a87362893f50ad2cf69d4179a3c01d01
BLAKE2b-256 b97ed47f64d5332b2527e6b65490888d99793eb3280bca735d0b69348eaeb6a3

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.22.3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4fb769337c7d482166ada8ba041003e4a9de3a778dc970b6b5802a382e581724
MD5 2e420614ff0ce865c9e15b56ba1980e7
BLAKE2b-256 634820bfa3f8d88605e2ec2c274c343dec1f112077e687440d64d3caa4b9136c

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.22.3-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a63d5bd6b5bd5f7c0e0af886c12c3f686fbc62347f6b886fed2694ab2f0dbd14
MD5 79f6f6252c8c11473dce4e4192be8aad
BLAKE2b-256 75473fcb52e0ef081efa40b4ca5c04f207509d31157f33f3ac314578d93794f9

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.22.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e3f9c6551ff5b6ae785dd15f819c3b2b7432d77bfb79ea8806748e2c7d900b5d
MD5 dd3b0bb2beeaa2e6fa98acb66de80b14
BLAKE2b-256 bc1e496c7ae814b2a7f8f47d423dc33aae2cdfb1edf898e2faaf5c5b39b90363

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.22.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f74b85948328ab4b4c88522f98a59f83dd5295443b08483e945c7de2c35e5dcc
MD5 4cc291518c35e0d7d39d8f7c6aaea64d
BLAKE2b-256 9a72adb11d27c545aca1db442da744ee430a6aae377a33574bfd2ec159dcf673

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.22.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3768ea99933aa25080cb820f93f7b612968633b9a4fa23bc8a7337e2137f3fbb
MD5 4992dc799e379f2837f5ff34a6b29a5a
BLAKE2b-256 d874ef21aabdd2f32539735e2ed4d3ea072112d4e3d30dfc2d17695f6d9df072

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.22.3-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 78ca163686a4aa1693194d098aa79b517845d851aa6fd27d5b162c05e1012361
MD5 1e8b6a3fe0aef23352921a60931349ca
BLAKE2b-256 0ddf4110f685067946c8b2e59ed76cebdf51c979ae999d90f65208a9d1966cba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cbbeea19fe6d584c54e93fe6615a7185b10e0d78fdb6471f9e44596018437c38
MD5 dcb288b74f74d6429f26e4f3aa701c2c
BLAKE2b-256 cb8dc0b0b6280edabad85d7e15093fad612c027e175fe4e0b960ce2f36485143

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a90f51377569575fc0d1a66ef7e89a36102bfb6dcd1d15d6c4afb930ce726672
MD5 1b9e9149e8df1793923dd9f9d8b6ae30
BLAKE2b-256 661cfce142bd3aeadb1292360a90ceb91f923c8e12081c21576fe69917243c5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f16e74372fe9e20abb4183f98a8e2288d5ee4c48d04d94b6160311170e007661
MD5 68bb72d6f606791658bd2d3f9dc69e40
BLAKE2b-256 849001ef7331c52b1eaf9916f3f7a535155aac2e9e2ddad12a141613d92758c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f5a44b4a83cf9bf13d3f77858928068b06d3ec2238c27ff2e39393fbf7749c9f
MD5 5abd36c291e0f4c72681c310b223dca0
BLAKE2b-256 43286f4fd8953c0b3f30de4526fd024095032abcdc25b6736c77a891687c604e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abd31a8bfe1db62a7ddb0beee84f3a5de9bb559fcdd2b96ca0fb729c551b9412
MD5 1b041ea9aefab7ada5f9282f48baf092
BLAKE2b-256 7764e57ce185dda028b7b9af72cdfb16825bfa52183653945681e7cb8e7c2dfa

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.22.3-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7f636ccdea28bd187f93b06a1e4b9275e42e43af9405b0684fc739e829299c4b
MD5 eb10711c930805e9094b527e78c40c26
BLAKE2b-256 c2defbdbfcc75fad9d9a6f9a250bc986f1002902581eaa47a5948f53a7f11851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bd225d0624d45b533c1780094b3c59666276a6e9f20222943441212cdf301c9e
MD5 b896868403b918f77325ccc41ce037b5
BLAKE2b-256 4068da630b035cd343311168e5fe02c39fe7b192638717e3202de92ccf8ae18e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 516bce595eb5e5899a91dfec1142bea56a2fa232e53425e9966785aee8cd024e
MD5 303218c67006ca9c1d1cf69270b058cf
BLAKE2b-256 3bbbee42418b77dbfc5ff619857b8eb372af98a88d47c8ca8b9a2d3ca2936c96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ce84c65779c9eed6ec02699797a4ba1859451977537a993be3ea8167a210ec3e
MD5 5c700d8310632d6f30b22306890a1fc0
BLAKE2b-256 523fbeb161e4fdf6710938ccf18418c147d87ba8f102903d6c6e4eda25588e22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 d48e5dd8e897bf4509be2c6eeb4bbab728eaaef1f214ae0510c96219c4253d17
MD5 67e9f27e98a4d703b611998f2f132adf
BLAKE2b-256 e353720ffbe8b30de203570f397866334eb4c6364c9214699010f2086de911ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29452f2900e771086e9022dde17a92d191217ab3e34ca7dc361bd9be53e94fb4
MD5 e7ef7c7d9f7ac5ac33e16b397719aac0
BLAKE2b-256 642b3132083b930fa6411f14469f36c465b7d2fba29a8a3e121d8fd6baffc8ea

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.22.3-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6b9ef5b6302ee45628a51a4484cb4f41006af02141508939c09ce36899fb3f41
MD5 0103e8d19d20829868b571961dce442a
BLAKE2b-256 9dd007ab65d7c8389f56f8c772a55f8846a81c24d973abecfc0275c2c833f63e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1eb9a3a9c87597872a48acc167de7321b4660bc3a10ed2f552c5f633015b1b61
MD5 b392f107b3417c133eb37b7e04d2b91c
BLAKE2b-256 94dd0be9a61d373449d9782dad3b259892720bdc90c553cf618cb45a1c6443c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4d3c97ee08b9d3d528ff4fe8a20aeb7484eea06b2ccb7a3b5a7c86fa3b065b44
MD5 d37de16507baec054c9821fc0fc02291
BLAKE2b-256 3e143f0d13909fee89d3826279a129bc3261c677fb1f39db1c4f714d92918762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c710b62442a43720db853cbafbf57ea3f920b593128dfb8fb88e08d6a8225772
MD5 919f0ef6ba51dbada7066046ae495bf6
BLAKE2b-256 2b099031a517a0655e54c5bb8f243078798c19441f037b70a3f10b8aad82d073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f1e6b8c587dfe4f646b3a62f4b4ee840a83f4c491fe4bdfb74ccd9937ce17cdc
MD5 2f5a7e93e08c2ba17b6b7de5e46276b6
BLAKE2b-256 3c9a2ba3bcdf8b0d78339d3bb17307f70113d32bfc5492917d254995e61fd1c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 947cb8fae3611244b15006bd42263fe56afe583077e7006aac4bdb0e10dc5a4f
MD5 d15982b7faa73ec993fd8cd205c16ab1
BLAKE2b-256 9fd5be771230ba2f071ad036a9224139fa4e0ac576b8abac15209342fc63ef86

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.22.3-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 af04cae53beb6da1e28e57e053d16118513e5fbe8d16ce0b3261f1b1b396af0a
MD5 5072c9fa53c49e0618d3df09221fcecf
BLAKE2b-256 dcc1ff7a8c85a100dbef0df6473579cb78b1527f01d34859432de3f38d5a38d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0ba6f11d8eb686503ee034816f7fcfa0aa14f18d27ed683b43d020080d9cd009
MD5 9496b525b1f4500f32bddc40afccc94d
BLAKE2b-256 54cc1f69734020a334b481d8282e3a963612785914d511364318a21e41200cd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c3c3f1017e6b548d9d8debf5ff310f9e599931fba91c249dd2e1da74b009b8ea
MD5 24162cfbff5231eef1f44d9303824640
BLAKE2b-256 41a65451c97e20dd411c29d569678f33ed6c9d0ca5d952329f3a18e438b4bf03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d2fb1dd40a362264539d239dcfede9d01cd57f88d4e89858e3eed054d5fc923b
MD5 53138744456c56c017d6960afc95b93e
BLAKE2b-256 d79dce8f369d18555c09082bad13785c907318cbc3c3463577a15b2633dce290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0a332ed459f02532f35ea7fe6d55af9e90a636c0b95493dadd7d3284e844b3c2
MD5 866fc3a1401b03b0bebc1bce188a3554
BLAKE2b-256 1046acd2b188e9f7c260f630b9564a8793f8f8cbd596ae1cec89835b2938324d

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.22.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77b738d03f42bd8f4b8990484ac7ef1d96706365b84d13e81121afe24c6817cd
MD5 0e2c3666d82157bb4680d189283c1794
BLAKE2b-256 0c234de1cd398e5724043a8621b07e66496238db724659452eb9491c88dbcc8d

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.22.3-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3f18bf7d1e073951692eb6e4ae51585462a8e7c89dcf053294d47d20cf0759a3
MD5 b4df2c9b642b32e496ee3b7ff54bc277
BLAKE2b-256 11b8cb0e0e97ca24ed5e1c4f5e54dcaae50515d4b8428860871f0cb6dde92a53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 94994d3c46fb3d9c1300df5c27feee35a78719ca4d1b83cf47e3d3dc5b13be9a
MD5 5b8da123ac2b52b46d1047b1a36ec9bc
BLAKE2b-256 95e7e0626ee6215f2be1d91fcf1e9781086eb06b51683d273c8f57a18e8d5520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 adaa13ef9023622988d871c5150833df4c8671f63b9f19ccca90c426011c800f
MD5 52759822111abd9ee12bf4f259a074a3
BLAKE2b-256 677b75af84494f9b5f3f408d515e7fd741cfc7472b85074482c108f07cff9ece

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 956d3078dc1ccbe3897d528e8e44d8f1bd7b952f961174fc1de4667f02793657
MD5 965e6c18e0ff55df576ff9a90e654a2f
BLAKE2b-256 ecbd4648ed1b45cb4870c3e8b9de68f43469913d3ff99afe05fdaa8d271d8718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 fc78134a588fd6f7ce61e45495524c1bb6c487ffe1c1bc7360b8084f2b0d6921
MD5 66c1b7a635b72cc9dedc2b61e064c891
BLAKE2b-256 f56ef5233c511782f7c09f77b761e0340369bed545a2e3d29bdf599eca18a72c

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.22.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9e9a1dbb99e57a5217448f34f1a5c3079b234c0a9bf61167cc964e89053fb2d
MD5 57c0f5c173652cd8eacc79756cd9cbc6
BLAKE2b-256 219482e0db35de20dc44dc3ff58443d6f3fdd84ccfda0d828c5dbd63feb2e0e9

See more details on using hashes here.

File details

Details for the file kaldi_native_fbank-1.22.3-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for kaldi_native_fbank-1.22.3-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 17959ce274efa7c96b730e25354251b8da57337661714a9b7018cb7b4488f6bc
MD5 a01961759a0866c3ca00d63e60f21bd7
BLAKE2b-256 4ce868e5638d4b8d68f31d39d035a539f729787c077999c0bfbe36d9ddbe0b2b

See more details on using hashes here.

Supported by

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