No project description provided
Project description
asrp
ASR text preprocessing utility
install
pip install asrp
usage - preprocess
input: dictionary, with key sentence
output: preprocessed result, inplace handling.
import asrp
batch_data = {
'sentence': "I'm fine, thanks."
}
asrp.fun_en(batch_data)
dynamic loading
import asrp
batch_data = {
'sentence': "I'm fine, thanks."
}
preprocessor = getattr(asrp, 'fun_en')
preprocessor(batch_data)
usage - evaluation
import asrp
targets = ['HuggingFace is great!', 'Love Transformers!', 'Let\'s wav2vec!']
preds = ['HuggingFace is awesome!', 'Transformers is powerful.', 'Let\'s finetune wav2vec!']
print("chunk size WER: {:2f}".format(100 * asrp.chunked_wer(targets, preds, chunk_size=None)))
print("chunk size CER: {:2f}".format(100 * asrp.chunked_cer(targets, preds, chunk_size=None)))
usage - hubertcode
import asrp
hc = asrp.HubertCode("facebook/hubert-large-ll60k", './km_feat_100_layer_20', 20)
hc('voice file path')
usage - code2speech
import asrp
code = [] # discrete unit
# download tts checkpoint and waveglow_checkpint from https://github.com/pytorch/fairseq/tree/main/examples/textless_nlp/gslm/unit2speech
cs = asrp.Code2Speech(tts_checkpoint='./tts_checkpoint_best.pt', waveglow_checkpint='waveglow_256channels_new.pt')
cs(code)
# play on notebook
import IPython.display as ipd
ipd.Audio(data=cs(code), autoplay=False, rate=cs.sample_rate)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
asrp-0.0.36.tar.gz
(32.2 kB
view details)
Built Distribution
asrp-0.0.36-py3-none-any.whl
(30.0 kB
view details)
File details
Details for the file asrp-0.0.36.tar.gz
.
File metadata
- Download URL: asrp-0.0.36.tar.gz
- Upload date:
- Size: 32.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.8.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7eed69263c139f730a88a0d305e285f74aa119a68ab872632e05bd1747dc2f0 |
|
MD5 | e0b7189c9249a323eeb8f3b3513b4bdf |
|
BLAKE2b-256 | 2943ad672e47db60f2dd45dde61a35d267f533855a808ac94625f78e9b7d682c |
File details
Details for the file asrp-0.0.36-py3-none-any.whl
.
File metadata
- Download URL: asrp-0.0.36-py3-none-any.whl
- Upload date:
- Size: 30.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.8.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2dd95f42965d5ec608324e2e1b69dc0a3e6960bd62016728977949caf61976ed |
|
MD5 | 6eea9615c30913ea4f7011ae2135b9f2 |
|
BLAKE2b-256 | 6886d77ed12688bcaca569884a670c6020e88f062e3b6e5622ded9b47649f0d5 |