Aratako/MioCodec-25Hz-44.1kHz-v2
Audio-to-Audio • 0.1B • Updated • 23.8k • 10
Error code: JWTInvalidSignature
Exception: InvalidSignatureError
Message: Signature verification failed
Traceback: Traceback (most recent call last):
File "/src/libs/libapi/src/libapi/jwt_token.py", line 286, in validate_jwt
decoded = jwt.decode(
jwt=token,
...<2 lines>...
options=options,
)
File "/usr/local/lib/python3.14/site-packages/jwt/api_jwt.py", line 368, in decode
decoded = self.decode_complete(
jwt,
...<8 lines>...
leeway=leeway,
)
File "/usr/local/lib/python3.14/site-packages/jwt/api_jwt.py", line 265, in decode_complete
decoded = self._jws.decode_complete(
jwt,
...<3 lines>...
detached_payload=detached_payload,
)
File "/usr/local/lib/python3.14/site-packages/jwt/api_jws.py", line 270, in decode_complete
self._verify_signature(
~~~~~~~~~~~~~~~~~~~~~~^
signing_input,
^^^^^^^^^^^^^^
...<4 lines>...
options=merged_options,
^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/local/lib/python3.14/site-packages/jwt/api_jws.py", line 417, in _verify_signature
raise InvalidSignatureError("Signature verification failed")
jwt.exceptions.InvalidSignatureError: Signature verification failedNeed help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Libriheavy: a 50,000 hours ASR corpus with punctuation casing and context. Libriheavy is a labeled version of Librilight.
This uploaded version replaces the default Libri-Light audio files with the highest quality available versions from librivox. In most cases, this consists an upgrade of the source audio from a 64kbps mp3 to a 128kbps mp3.
Audio files are then re-encoded using the Opus 68kbps codec to retain quality and reduce size.
Each dataset config exposes a single split named train.
small (train): 509 hours of speech. 417 speakers averaging 1.22 hours per speaker.medium (train): 5042 hours of speech. 1531 speakers averaging 3.29 hours per speaker.large (train): 50794 hours of speech. 6736 speakers averaging 7.54 hours per speaker.dev (train): 22.3 hours of speech. 141 speakers averaging 0.16 hours per speaker.test_clean (train): 10.5 hours of speech. 70 speakers averaging 0.15 hours per speaker.test_other (train): 11.5 hours of speech. 72 speakers averaging 0.16 hours per speaker.test_clean_large (train): 107.5 hours of speech. 72 speakers averaging 1.49 hours per speaker.test_other_large (train): 100.3 hours of speech. 73 speakers averaging 1.37 hours per speaker.from datasets import load_dataset
small = load_dataset("mythicinfinity/libriheavy", "small", split="train")
Targeting a specific config only downloads files declared for that config, which is a good way to control disk usage.
from datasets import concatenate_datasets, load_dataset
ALL_CONFIGS = [
"small",
"medium",
"large",
"dev",
"test_clean",
"test_clean_large",
"test_other",
"test_other_large",
]
def load_libriheavy_all_train(configs: list[str] | None = None):
cfgs = configs or ALL_CONFIGS
parts = [load_dataset("mythicinfinity/libriheavy", cfg, split="train") for cfg in cfgs]
return concatenate_datasets(parts)
full = load_libriheavy_all_train()
@misc{kang2023libriheavy,
title={Libriheavy: a 50,000 hours ASR corpus with punctuation casing and context},
author={Wei Kang and Xiaoyu Yang and Zengwei Yao and Fangjun Kuang and Yifan Yang and Liyong Guo and Long Lin and Daniel Povey},
year={2023},
eprint={2309.08105},
archivePrefix={arXiv},
primaryClass={eess.AS}
}