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.31.tar.gz
(27.8 kB
view details)
Built Distribution
asrp-0.0.31-py3-none-any.whl
(25.3 kB
view details)
File details
Details for the file asrp-0.0.31.tar.gz
.
File metadata
- Download URL: asrp-0.0.31.tar.gz
- Upload date:
- Size: 27.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.8.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5bb9cbebc6cdc93871520d7901e19127e8b3a6e0a0aa4c0469b29952566f43f8 |
|
MD5 | 71e6a0aa0d7e12e071439aca277f96ee |
|
BLAKE2b-256 | a568ccf1576c135dc3772b4beadb5c9f501217d61db9d41a69e4a9736ba871d0 |
File details
Details for the file asrp-0.0.31-py3-none-any.whl
.
File metadata
- Download URL: asrp-0.0.31-py3-none-any.whl
- Upload date:
- Size: 25.3 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 | 5999454698af3b16e4815124663593b566db706343e95b3e3cad5b01750298a5 |
|
MD5 | 1d3719e1a38c36dec4d428e6041ede67 |
|
BLAKE2b-256 | 25f9eb82905c336bb3a38f32893133fe8fba9ff349e23c97f5b2bc1decd7cfa1 |