|
|
@ -1,5 +1,6 @@
|
|
|
|
#!/bin/bash
|
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
set -e
|
|
|
|
|
|
|
|
echo -e "\e[1;31monly if you see 'Test success !!!', the cli testing is successful\e[0m"
|
|
|
|
|
|
|
|
|
|
|
|
# Audio classification
|
|
|
|
# Audio classification
|
|
|
|
wget -c https://paddlespeech.bj.bcebos.com/PaddleAudio/cat.wav https://paddlespeech.bj.bcebos.com/PaddleAudio/dog.wav
|
|
|
|
wget -c https://paddlespeech.bj.bcebos.com/PaddleAudio/cat.wav https://paddlespeech.bj.bcebos.com/PaddleAudio/dog.wav
|
|
|
@ -13,6 +14,13 @@ wget -c https://paddlespeech.bj.bcebos.com/PaddleAudio/zh.wav https://paddlespee
|
|
|
|
paddlespeech asr --input ./zh.wav
|
|
|
|
paddlespeech asr --input ./zh.wav
|
|
|
|
paddlespeech asr --model transformer_librispeech --lang en --input ./en.wav
|
|
|
|
paddlespeech asr --model transformer_librispeech --lang en --input ./en.wav
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# long audio restriction
|
|
|
|
|
|
|
|
wget -c wget https://paddlespeech.bj.bcebos.com/datasets/single_wav/zh/test_long_audio_01.wav
|
|
|
|
|
|
|
|
paddlespeech asr --input test_long_audio_01.wav
|
|
|
|
|
|
|
|
if [ $? -ne 1 ]; then
|
|
|
|
|
|
|
|
exit 1
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# Text To Speech
|
|
|
|
# Text To Speech
|
|
|
|
paddlespeech tts --input "你好,欢迎使用百度飞桨深度学习框架!"
|
|
|
|
paddlespeech tts --input "你好,欢迎使用百度飞桨深度学习框架!"
|
|
|
|
paddlespeech tts --am speedyspeech_csmsc --input "你好,欢迎使用百度飞桨深度学习框架!"
|
|
|
|
paddlespeech tts --am speedyspeech_csmsc --input "你好,欢迎使用百度飞桨深度学习框架!"
|
|
|
@ -56,3 +64,6 @@ paddlespeech stats --task cls
|
|
|
|
paddlespeech stats --task text
|
|
|
|
paddlespeech stats --task text
|
|
|
|
paddlespeech stats --task vector
|
|
|
|
paddlespeech stats --task vector
|
|
|
|
paddlespeech stats --task st
|
|
|
|
paddlespeech stats --task st
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo "Test success !!!"
|
|
|
|