|
|
|
#!/bin/bash
|
|
|
|
source test_tipc/common_func.sh
|
|
|
|
|
|
|
|
# set env
|
|
|
|
python=python
|
|
|
|
export model_branch=`git symbolic-ref HEAD 2>/dev/null | cut -d"/" -f 3`
|
|
|
|
export model_commit=$(git log|head -n1|awk '{print $2}')
|
|
|
|
export str_tmp=$(echo `pip list|grep paddlepaddle-gpu|awk -F ' ' '{print $2}'`)
|
|
|
|
export frame_version=${str_tmp%%.post*}
|
|
|
|
export frame_commit=$(echo `${python} -c "import paddle;print(paddle.version.commit)"`)
|
|
|
|
|
|
|
|
# run benchmark sh
|
|
|
|
# Usage:
|
|
|
|
# bash run_benchmark_train.sh config.txt params
|
|
|
|
# or
|
|
|
|
# bash run_benchmark_train.sh config.txt
|
|
|
|
|
|
|
|
function func_parser_params(){
|
|
|
|
strs=$1
|
|
|
|
IFS="="
|
|
|
|
array=(${strs})
|
|
|
|
tmp=${array[1]}
|
|
|
|
echo ${tmp}
|
|
|
|
}
|
|
|
|
|
|
|
|
function func_sed_params(){
|
|
|
|
filename=$1
|
|
|
|
line=$2
|
|
|
|
param_value=$3
|
|
|
|
params=`sed -n "${line}p" $filename`
|
|
|
|
IFS=":"
|
|
|
|
array=(${params})
|
|
|
|
key=${array[0]}
|
|
|
|
value=${array[1]}
|
|
|
|
if [[ $value =~ 'benchmark_train' ]];then
|
|
|
|
IFS='='
|
|
|
|
_val=(${value})
|
|
|
|
param_value="${_val[0]}=${param_value}"
|
|
|
|
fi
|
|
|
|
new_params="${key}:${param_value}"
|
|
|
|
IFS=";"
|
|
|
|
cmd="sed -i '${line}s/.*/${new_params}/' '${filename}'"
|
|
|
|
eval $cmd
|
|
|
|
}
|
|
|
|
|
|
|
|
function set_gpu_id(){
|
|
|
|
string=$1
|
|
|
|
_str=${string:1:6}
|
|
|
|
IFS="C"
|
|
|
|
arr=(${_str})
|
|
|
|
M=${arr[0]}
|
|
|
|
P=${arr[1]}
|
|
|
|
gn=`expr $P - 1`
|
|
|
|
gpu_num=`expr $gn / $M`
|
|
|
|
seq=`seq -s "," 0 $gpu_num`
|
|
|
|
echo $seq
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_repo_name(){
|
|
|
|
IFS=";"
|
|
|
|
cur_dir=$(pwd)
|
|
|
|
IFS="/"
|
|
|
|
arr=(${cur_dir})
|
|
|
|
echo ${arr[-2]}
|
|
|
|
}
|
|
|
|
|
|
|
|
FILENAME=$1
|
|
|
|
# copy FILENAME as new
|
|
|
|
new_filename="./test_tipc/benchmark_train.txt"
|
|
|
|
cmd=`yes|cp $FILENAME $new_filename`
|
|
|
|
FILENAME=$new_filename
|
|
|
|
# MODE must be one of ['benchmark_train']
|
|
|
|
MODE=$2
|
|
|
|
PARAMS=$3
|
|
|
|
# bash test_tipc/benchmark_train.sh test_tipc/configs/det_mv3_db_v2_0/train_benchmark.txt benchmark_train dynamic_bs8_null_DP_N1C1
|
|
|
|
IFS=$'\n'
|
|
|
|
# parser params from train_benchmark.txt
|
|
|
|
dataline=`cat $FILENAME`
|
|
|
|
# parser params
|
|
|
|
IFS=$'\n'
|
|
|
|
lines=(${dataline})
|
|
|
|
model_name=$(func_parser_value "${lines[1]}")
|
|
|
|
|
|
|
|
# 获取benchmark_params所在的行数
|
|
|
|
line_num=`grep -n "train_benchmark_params" $FILENAME | cut -d ":" -f 1`
|
|
|
|
# for train log parser
|
|
|
|
batch_size=$(func_parser_value "${lines[line_num]}")
|
|
|
|
line_num=`expr $line_num + 1`
|
|
|
|
fp_items=$(func_parser_value "${lines[line_num]}")
|
|
|
|
line_num=`expr $line_num + 1`
|
|
|
|
epoch=$(func_parser_value "${lines[line_num]}")
|
|
|
|
|
|
|
|
line_num=`expr $line_num + 1`
|
|
|
|
profile_option_key=$(func_parser_key "${lines[line_num]}")
|
|
|
|
profile_option_params=$(func_parser_value "${lines[line_num]}")
|
|
|
|
profile_option="${profile_option_key}:${profile_option_params}"
|
|
|
|
|
|
|
|
line_num=`expr $line_num + 1`
|
|
|
|
flags_value=$(func_parser_value "${lines[line_num]}")
|
|
|
|
# set flags
|
|
|
|
IFS=";"
|
|
|
|
flags_list=(${flags_value})
|
|
|
|
for _flag in ${flags_list[*]}; do
|
|
|
|
cmd="export ${_flag}"
|
|
|
|
eval $cmd
|
|
|
|
done
|
|
|
|
|
|
|
|
# set log_name
|
|
|
|
repo_name=$(get_repo_name )
|
|
|
|
SAVE_LOG=${BENCHMARK_LOG_DIR:-$(pwd)} # */benchmark_log
|
|
|
|
mkdir -p "${SAVE_LOG}/benchmark_log/"
|
|
|
|
status_log="${SAVE_LOG}/benchmark_log/results.log"
|
Cherry-pick to r1.4 branch (#3798)
* [TTS]add Diffsinger with opencpop dataset (#3005)
* Update requirements.txt
* fix vits reduce_sum's input/output dtype, test=tts (#3028)
* [TTS] add opencpop PWGAN example (#3031)
* add opencpop voc, test=tts
* soft link
* Update textnorm_test_cases.txt
* [TTS] add opencpop HIFIGAN example (#3038)
* add opencpop voc, test=tts
* soft link
* add opencpop hifigan, test=tts
* update
* fix dtype diff of last expand_v2 op of VITS (#3041)
* [ASR]add squeezeformer model (#2755)
* add squeezeformer model
* change CodeStyle, test=asr
* change CodeStyle, test=asr
* fix subsample rate error, test=asr
* merge classes as required, test=asr
* change CodeStyle, test=asr
* fix missing code, test=asr
* split code to new file, test=asr
* remove rel_shift, test=asr
* Update README.md
* Update README_cn.md
* Update README.md
* Update README_cn.md
* Update README.md
* fix input dtype of elementwise_mul op from bool to int64 (#3054)
* [TTS] add svs frontend (#3062)
* [TTS]clean starganv2 vc model code and add docstring (#2987)
* clean code
* add docstring
* [Doc] change define asr server config to chunk asr config, test=doc (#3067)
* Update README.md
* Update README_cn.md
* get music score, test=doc (#3070)
* [TTS]fix elementwise_floordiv's fill_constant (#3075)
* fix elementwise_floordiv's fill_constant
* add float converter for min_value in attention
* fix paddle2onnx's install version, install the newest paddle2onnx in run.sh (#3084)
* [TTS] update svs_music_score.md (#3085)
* rm unused dep, test=tts (#3097)
* Update bug-report-tts.md (#3120)
* [TTS]Fix VITS lite infer (#3098)
* [TTS]add starganv2 vc trainer (#3143)
* add starganv2 vc trainer
* fix StarGANv2VCUpdater and losses
* fix StarGANv2VCEvaluator
* add some typehint
* [TTS]【Hackathon + No.190】 + 模型复现:iSTFTNet (#3006)
* iSTFTNet implementation based on hifigan, not affect the function and execution of HIFIGAN
* modify the comment in iSTFT.yaml
* add the comments in hifigan
* iSTFTNet implementation based on hifigan, not affect the function and execution of HIFIGAN
* modify the comment in iSTFT.yaml
* add the comments in hifigan
* add iSTFTNet.md
* modify the format of iSTFTNet.md
* modify iSTFT.yaml and hifigan.py
* Format code using pre-commit
* modify hifigan.py,delete the unused self.istft_layer_id , move the self.output_conv behind else, change conv_post to output_conv
* update iSTFTNet_csmsc_ckpt.zip download link
* modify iSTFTNet.md
* modify hifigan.py and iSTFT.yaml
* modify iSTFTNet.md
* add function for generating srt file (#3123)
* add function for generating srt file
在原来websocket_client.py的基础上,增加了由wav或mp3格式的音频文件生成对应srt格式字幕文件的功能
* add function for generating srt file
在原来websocket_client.py的基础上,增加了由wav或mp3格式的音频文件生成对应srt格式字幕文件的功能
* keep origin websocket_client.py
恢复原本的websocket_client.py文件
* add generating subtitle function into README
* add generate subtitle funciton into README
* add subtitle generation function
* add subtitle generation function
* fix example/aishell local/train.sh if condition bug, test=asr (#3146)
* fix some preprocess bugs (#3155)
* add amp for U2 conformer.
* fix scaler save
* fix scaler save and load.
* mv scaler.unscale_ blow grad_clip.
* [TTS]add StarGANv2VC preprocess (#3163)
* [TTS] [黑客松]Add JETS (#3109)
* Update quick_start.md (#3175)
* [BUG] Fix progress bar unit. (#3177)
* Update quick_start_cn.md (#3176)
* [TTS]StarGANv2 VC fix some trainer bugs, add add reset_parameters (#3182)
* VITS learning rate revised, test=tts
* VITS learning rate revised, test=tts
* [s2t] mv dataset into paddlespeech.dataset (#3183)
* mv dataset into paddlespeech.dataset
* add aidatatang
* fix import
* Fix some typos. (#3178)
* [s2t] move s2t data preprocess into paddlespeech.dataset (#3189)
* move s2t data preprocess into paddlespeech.dataset
* avg model, compute wer, format rsl into paddlespeech.dataset
* fix format rsl
* fix avg ckpts
* Update pretrained model in README (#3193)
* [TTS]Fix losses of StarGAN v2 VC (#3184)
* VITS learning rate revised, test=tts
* VITS learning rate revised, test=tts
* add new aishell model for better CER.
* add readme
* [s2t] fix cli args to config (#3194)
* fix cli args to config
* fix train cli
* Update README.md
* [ASR] Support Hubert, fintuned on the librispeech dataset (#3088)
* librispeech hubert, test=asr
* librispeech hubert, test=asr
* hubert decode
* review
* copyright, notes, example related
* hubert cli
* pre-commit format
* fix conflicts
* fix conflicts
* doc related
* doc and train config
* librispeech.py
* support hubert cli
* [ASR] fix asr 0-d tensor. (#3214)
* Update README.md
* Update README.md
* fix: 🐛 修复服务端 python ASREngine 无法使用conformer_talcs模型 (#3230)
* fix: 🐛 fix python ASREngine not pass codeswitch
* docs: 📝 Update Docs
* 修改模型判断方式
* Adding WavLM implementation
* fix model m5s
* Code clean up according to comments in https://github.com/PaddlePaddle/PaddleSpeech/pull/3242
* fix error in tts/st
* Changed the path for the uploaded weight
* Update phonecode.py
# 固话的正则 错误修改
参考https://github.com/speechio/chinese_text_normalization/blob/master/python/cn_tn.py
固化的正则为:
pattern = re.compile(r"\D((0(10|2[1-3]|[3-9]\d{2})-?)?[1-9]\d{6,7})\D")
* Adapted wavlmASR model to pretrained weights and CLI
* Changed the MD5 of the pretrained tar file due to bug fixes
* Deleted examples/librispeech/asr5/format_rsl.py
* Update released_model.md
* Code clean up for CIs
* Fixed the transpose usages ignored before
* Update setup.py
* refactor mfa scripts
* Final cleaning; Modified SSL/infer.py and README for wavlm inclusion in model options
* updating readme and readme_cn
* remove tsinghua pypi
* Update setup.py (#3294)
* Update setup.py
* refactor rhy
* fix ckpt
* add dtype param for arange API. (#3302)
* add scripts for tts code switch
* add t2s assets
* more comment on tts frontend
* fix librosa==0.8.1 numpy==1.23.5 for paddleaudio align with this version
* move ssl into t2s.frontend; fix spk_id for 0-D tensor;
* add ssml unit test
* add en_frontend file
* add mix frontend test
* fix long text oom using ssml; filter comma; update polyphonic
* remove print
* hotfix english G2P
* en frontend unit text
* fix profiler (#3323)
* old grad clip has 0d tensor problem, fix it (#3334)
* update to py3.8
* remove fluid.
* add roformer
* fix bugs
* add roformer result
* support position interpolation for langer attention context windown length.
* RoPE with position interpolation
* rope for streaming decoding
* update result
* fix rotary embeding
* Update README.md
* fix weight decay
* fix develop view confict with model's
* Add XPU support for SpeedySpeech (#3502)
* Add XPU support for SpeedySpeech
* fix typos
* update description of nxpu
* Add XPU support for FastSpeech2 (#3514)
* Add XPU support for FastSpeech2
* optimize
* Update ge2e_clone.py (#3517)
修复在windows上的多空格错误
* Fix Readme. (#3527)
* Update README.md
* Update README_cn.md
* Update README_cn.md
* Update README.md
* FIX: Added missing imports
* FIX: Fixed the implementation of a special method
* 【benchmark】add max_mem_reserved for benchmark (#3604)
* fix profiler
* add max_mem_reserved for benchmark
* fix develop bug function:view to reshape (#3633)
* 【benchmark】fix gpu_mem unit (#3634)
* fix profiler
* add max_mem_reserved for benchmark
* fix benchmark
* 增加文件编码读取 (#3606)
Fixed #3605
* bugfix: audio_len should be 1D, no 0D, which will raise list index out (#3490)
of range error in the following decode process
Co-authored-by: Luzhenhui <luzhenhui@mqsz.com>
* Update README.md (#3532)
Fixed a typo
* fixed version for paddlepaddle. (#3701)
* fixed version for paddlepaddle.
* fix code style
* 【Fix Speech Issue No.5】issue 3444 transformation import error (#3779)
* fix paddlespeech.s2t.transform.transformation import error
* fix paddlespeech.s2t.transform import error
* 【Fix Speech Issue No.8】issue 3652 merge_yi function has a bug (#3786)
* 【Fix Speech Issue No.8】issue 3652 merge_yi function has a bug
* 【Fix Speech Issue No.8】issue 3652 merge_yi function has a bug
* 【test】add cli test readme (#3784)
* add cli test readme
* fix code style
* 【test】fix test cli bug (#3793)
* add cli test readme
* fix code style
* fix bug
* Update setup.py (#3795)
* adapt view behavior change, fix KeyError. (#3794)
* adapt view behavior change, fix KeyError.
* fix readme demo run error.
* fixed opencc version
---------
Co-authored-by: liangym <34430015+lym0302@users.noreply.github.com>
Co-authored-by: TianYuan <white-sky@qq.com>
Co-authored-by: 夜雨飘零 <yeyupiaoling@foxmail.com>
Co-authored-by: zxcd <228587199@qq.com>
Co-authored-by: longRookie <68834517+longRookie@users.noreply.github.com>
Co-authored-by: twoDogy <128727742+twoDogy@users.noreply.github.com>
Co-authored-by: lemondy <lemondy9@gmail.com>
Co-authored-by: ljhzxc <33015549+ljhzxc@users.noreply.github.com>
Co-authored-by: PiaoYang <495384481@qq.com>
Co-authored-by: WongLaw <mailoflawrence@gmail.com>
Co-authored-by: Hui Zhang <zhtclz@foxmail.com>
Co-authored-by: Shuangchi He <34329208+Yulv-git@users.noreply.github.com>
Co-authored-by: TianHao Zhang <32243340+Zth9730@users.noreply.github.com>
Co-authored-by: guanyc <guanyc@gmail.com>
Co-authored-by: jiamingkong <kinetical@live.com>
Co-authored-by: zoooo0820 <zoooo0820@qq.com>
Co-authored-by: shuishu <990941859@qq.com>
Co-authored-by: LixinGuo <18510030324@126.com>
Co-authored-by: gmm <38800877+mmglove@users.noreply.github.com>
Co-authored-by: Wang Huan <wanghuan29@baidu.com>
Co-authored-by: Kai Song <50285351+USTCKAY@users.noreply.github.com>
Co-authored-by: skyboooox <zcj924@gmail.com>
Co-authored-by: fazledyn-or <ataf@openrefactory.com>
Co-authored-by: luyao-cv <1367355728@qq.com>
Co-authored-by: Color_yr <402067010@qq.com>
Co-authored-by: JeffLu <luzhenhui@gmail.com>
Co-authored-by: Luzhenhui <luzhenhui@mqsz.com>
Co-authored-by: satani99 <42287151+satani99@users.noreply.github.com>
Co-authored-by: mjxs <52824616+kk-2000@users.noreply.github.com>
Co-authored-by: Mattheliu <leonliuzx@outlook.com>
5 months ago
|
|
|
# get benchmark profiling params : PROFILING_TIMER_ONLY=no|True|False
|
|
|
|
PROFILING_TIMER_ONLY=${PROFILING_TIMER_ONLY:-"True"}
|
|
|
|
|
|
|
|
# The number of lines in which train params can be replaced.
|
|
|
|
line_python=3
|
|
|
|
line_gpuid=4
|
|
|
|
line_precision=6
|
|
|
|
line_epoch=7
|
|
|
|
line_batchsize=9
|
|
|
|
line_profile=13
|
|
|
|
line_eval_py=24
|
|
|
|
line_export_py=30
|
|
|
|
|
|
|
|
func_sed_params "$FILENAME" "${line_eval_py}" "null"
|
|
|
|
func_sed_params "$FILENAME" "${line_export_py}" "null"
|
|
|
|
func_sed_params "$FILENAME" "${line_python}" "$python"
|
|
|
|
|
|
|
|
# if params
|
|
|
|
if [ ! -n "$PARAMS" ] ;then
|
|
|
|
# PARAMS input is not a word.
|
|
|
|
IFS="|"
|
|
|
|
batch_size_list=(${batch_size})
|
|
|
|
fp_items_list=(${fp_items})
|
|
|
|
device_num_list=(N1C4)
|
|
|
|
run_mode="DP"
|
|
|
|
else
|
|
|
|
# parser params from input: modeltype_bs${bs_item}_${fp_item}_${run_mode}_${device_num}
|
|
|
|
IFS="_"
|
|
|
|
params_list=(${PARAMS})
|
|
|
|
model_type=${params_list[0]}
|
|
|
|
batch_size=${params_list[1]}
|
|
|
|
batch_size=`echo ${batch_size} | tr -cd "[0-9]" `
|
|
|
|
precision=${params_list[2]}
|
|
|
|
run_mode=${params_list[3]}
|
|
|
|
device_num=${params_list[4]}
|
|
|
|
IFS=";"
|
|
|
|
|
|
|
|
if [ ${precision} = "null" ];then
|
|
|
|
precision="fp32"
|
|
|
|
fi
|
|
|
|
|
|
|
|
fp_items_list=($precision)
|
|
|
|
batch_size_list=($batch_size)
|
|
|
|
device_num_list=($device_num)
|
|
|
|
fi
|
|
|
|
|
|
|
|
PYTHON="${python}" bash test_tipc/barrier.sh
|
|
|
|
IFS="|"
|
|
|
|
for batch_size in ${batch_size_list[*]}; do
|
|
|
|
for precision in ${fp_items_list[*]}; do
|
|
|
|
for device_num in ${device_num_list[*]}; do
|
|
|
|
# sed batchsize and precision
|
|
|
|
func_sed_params "$FILENAME" "${line_precision}" "$precision"
|
|
|
|
func_sed_params "$FILENAME" "${line_batchsize}" "$MODE=$batch_size"
|
|
|
|
func_sed_params "$FILENAME" "${line_epoch}" "$MODE=$epoch"
|
|
|
|
gpu_id=$(set_gpu_id $device_num)
|
|
|
|
|
|
|
|
if [ ${#gpu_id} -le 1 ];then
|
|
|
|
func_sed_params "$FILENAME" "${line_gpuid}" "0" # sed used gpu_id
|
Cherry-pick to r1.4 branch (#3798)
* [TTS]add Diffsinger with opencpop dataset (#3005)
* Update requirements.txt
* fix vits reduce_sum's input/output dtype, test=tts (#3028)
* [TTS] add opencpop PWGAN example (#3031)
* add opencpop voc, test=tts
* soft link
* Update textnorm_test_cases.txt
* [TTS] add opencpop HIFIGAN example (#3038)
* add opencpop voc, test=tts
* soft link
* add opencpop hifigan, test=tts
* update
* fix dtype diff of last expand_v2 op of VITS (#3041)
* [ASR]add squeezeformer model (#2755)
* add squeezeformer model
* change CodeStyle, test=asr
* change CodeStyle, test=asr
* fix subsample rate error, test=asr
* merge classes as required, test=asr
* change CodeStyle, test=asr
* fix missing code, test=asr
* split code to new file, test=asr
* remove rel_shift, test=asr
* Update README.md
* Update README_cn.md
* Update README.md
* Update README_cn.md
* Update README.md
* fix input dtype of elementwise_mul op from bool to int64 (#3054)
* [TTS] add svs frontend (#3062)
* [TTS]clean starganv2 vc model code and add docstring (#2987)
* clean code
* add docstring
* [Doc] change define asr server config to chunk asr config, test=doc (#3067)
* Update README.md
* Update README_cn.md
* get music score, test=doc (#3070)
* [TTS]fix elementwise_floordiv's fill_constant (#3075)
* fix elementwise_floordiv's fill_constant
* add float converter for min_value in attention
* fix paddle2onnx's install version, install the newest paddle2onnx in run.sh (#3084)
* [TTS] update svs_music_score.md (#3085)
* rm unused dep, test=tts (#3097)
* Update bug-report-tts.md (#3120)
* [TTS]Fix VITS lite infer (#3098)
* [TTS]add starganv2 vc trainer (#3143)
* add starganv2 vc trainer
* fix StarGANv2VCUpdater and losses
* fix StarGANv2VCEvaluator
* add some typehint
* [TTS]【Hackathon + No.190】 + 模型复现:iSTFTNet (#3006)
* iSTFTNet implementation based on hifigan, not affect the function and execution of HIFIGAN
* modify the comment in iSTFT.yaml
* add the comments in hifigan
* iSTFTNet implementation based on hifigan, not affect the function and execution of HIFIGAN
* modify the comment in iSTFT.yaml
* add the comments in hifigan
* add iSTFTNet.md
* modify the format of iSTFTNet.md
* modify iSTFT.yaml and hifigan.py
* Format code using pre-commit
* modify hifigan.py,delete the unused self.istft_layer_id , move the self.output_conv behind else, change conv_post to output_conv
* update iSTFTNet_csmsc_ckpt.zip download link
* modify iSTFTNet.md
* modify hifigan.py and iSTFT.yaml
* modify iSTFTNet.md
* add function for generating srt file (#3123)
* add function for generating srt file
在原来websocket_client.py的基础上,增加了由wav或mp3格式的音频文件生成对应srt格式字幕文件的功能
* add function for generating srt file
在原来websocket_client.py的基础上,增加了由wav或mp3格式的音频文件生成对应srt格式字幕文件的功能
* keep origin websocket_client.py
恢复原本的websocket_client.py文件
* add generating subtitle function into README
* add generate subtitle funciton into README
* add subtitle generation function
* add subtitle generation function
* fix example/aishell local/train.sh if condition bug, test=asr (#3146)
* fix some preprocess bugs (#3155)
* add amp for U2 conformer.
* fix scaler save
* fix scaler save and load.
* mv scaler.unscale_ blow grad_clip.
* [TTS]add StarGANv2VC preprocess (#3163)
* [TTS] [黑客松]Add JETS (#3109)
* Update quick_start.md (#3175)
* [BUG] Fix progress bar unit. (#3177)
* Update quick_start_cn.md (#3176)
* [TTS]StarGANv2 VC fix some trainer bugs, add add reset_parameters (#3182)
* VITS learning rate revised, test=tts
* VITS learning rate revised, test=tts
* [s2t] mv dataset into paddlespeech.dataset (#3183)
* mv dataset into paddlespeech.dataset
* add aidatatang
* fix import
* Fix some typos. (#3178)
* [s2t] move s2t data preprocess into paddlespeech.dataset (#3189)
* move s2t data preprocess into paddlespeech.dataset
* avg model, compute wer, format rsl into paddlespeech.dataset
* fix format rsl
* fix avg ckpts
* Update pretrained model in README (#3193)
* [TTS]Fix losses of StarGAN v2 VC (#3184)
* VITS learning rate revised, test=tts
* VITS learning rate revised, test=tts
* add new aishell model for better CER.
* add readme
* [s2t] fix cli args to config (#3194)
* fix cli args to config
* fix train cli
* Update README.md
* [ASR] Support Hubert, fintuned on the librispeech dataset (#3088)
* librispeech hubert, test=asr
* librispeech hubert, test=asr
* hubert decode
* review
* copyright, notes, example related
* hubert cli
* pre-commit format
* fix conflicts
* fix conflicts
* doc related
* doc and train config
* librispeech.py
* support hubert cli
* [ASR] fix asr 0-d tensor. (#3214)
* Update README.md
* Update README.md
* fix: 🐛 修复服务端 python ASREngine 无法使用conformer_talcs模型 (#3230)
* fix: 🐛 fix python ASREngine not pass codeswitch
* docs: 📝 Update Docs
* 修改模型判断方式
* Adding WavLM implementation
* fix model m5s
* Code clean up according to comments in https://github.com/PaddlePaddle/PaddleSpeech/pull/3242
* fix error in tts/st
* Changed the path for the uploaded weight
* Update phonecode.py
# 固话的正则 错误修改
参考https://github.com/speechio/chinese_text_normalization/blob/master/python/cn_tn.py
固化的正则为:
pattern = re.compile(r"\D((0(10|2[1-3]|[3-9]\d{2})-?)?[1-9]\d{6,7})\D")
* Adapted wavlmASR model to pretrained weights and CLI
* Changed the MD5 of the pretrained tar file due to bug fixes
* Deleted examples/librispeech/asr5/format_rsl.py
* Update released_model.md
* Code clean up for CIs
* Fixed the transpose usages ignored before
* Update setup.py
* refactor mfa scripts
* Final cleaning; Modified SSL/infer.py and README for wavlm inclusion in model options
* updating readme and readme_cn
* remove tsinghua pypi
* Update setup.py (#3294)
* Update setup.py
* refactor rhy
* fix ckpt
* add dtype param for arange API. (#3302)
* add scripts for tts code switch
* add t2s assets
* more comment on tts frontend
* fix librosa==0.8.1 numpy==1.23.5 for paddleaudio align with this version
* move ssl into t2s.frontend; fix spk_id for 0-D tensor;
* add ssml unit test
* add en_frontend file
* add mix frontend test
* fix long text oom using ssml; filter comma; update polyphonic
* remove print
* hotfix english G2P
* en frontend unit text
* fix profiler (#3323)
* old grad clip has 0d tensor problem, fix it (#3334)
* update to py3.8
* remove fluid.
* add roformer
* fix bugs
* add roformer result
* support position interpolation for langer attention context windown length.
* RoPE with position interpolation
* rope for streaming decoding
* update result
* fix rotary embeding
* Update README.md
* fix weight decay
* fix develop view confict with model's
* Add XPU support for SpeedySpeech (#3502)
* Add XPU support for SpeedySpeech
* fix typos
* update description of nxpu
* Add XPU support for FastSpeech2 (#3514)
* Add XPU support for FastSpeech2
* optimize
* Update ge2e_clone.py (#3517)
修复在windows上的多空格错误
* Fix Readme. (#3527)
* Update README.md
* Update README_cn.md
* Update README_cn.md
* Update README.md
* FIX: Added missing imports
* FIX: Fixed the implementation of a special method
* 【benchmark】add max_mem_reserved for benchmark (#3604)
* fix profiler
* add max_mem_reserved for benchmark
* fix develop bug function:view to reshape (#3633)
* 【benchmark】fix gpu_mem unit (#3634)
* fix profiler
* add max_mem_reserved for benchmark
* fix benchmark
* 增加文件编码读取 (#3606)
Fixed #3605
* bugfix: audio_len should be 1D, no 0D, which will raise list index out (#3490)
of range error in the following decode process
Co-authored-by: Luzhenhui <luzhenhui@mqsz.com>
* Update README.md (#3532)
Fixed a typo
* fixed version for paddlepaddle. (#3701)
* fixed version for paddlepaddle.
* fix code style
* 【Fix Speech Issue No.5】issue 3444 transformation import error (#3779)
* fix paddlespeech.s2t.transform.transformation import error
* fix paddlespeech.s2t.transform import error
* 【Fix Speech Issue No.8】issue 3652 merge_yi function has a bug (#3786)
* 【Fix Speech Issue No.8】issue 3652 merge_yi function has a bug
* 【Fix Speech Issue No.8】issue 3652 merge_yi function has a bug
* 【test】add cli test readme (#3784)
* add cli test readme
* fix code style
* 【test】fix test cli bug (#3793)
* add cli test readme
* fix code style
* fix bug
* Update setup.py (#3795)
* adapt view behavior change, fix KeyError. (#3794)
* adapt view behavior change, fix KeyError.
* fix readme demo run error.
* fixed opencc version
---------
Co-authored-by: liangym <34430015+lym0302@users.noreply.github.com>
Co-authored-by: TianYuan <white-sky@qq.com>
Co-authored-by: 夜雨飘零 <yeyupiaoling@foxmail.com>
Co-authored-by: zxcd <228587199@qq.com>
Co-authored-by: longRookie <68834517+longRookie@users.noreply.github.com>
Co-authored-by: twoDogy <128727742+twoDogy@users.noreply.github.com>
Co-authored-by: lemondy <lemondy9@gmail.com>
Co-authored-by: ljhzxc <33015549+ljhzxc@users.noreply.github.com>
Co-authored-by: PiaoYang <495384481@qq.com>
Co-authored-by: WongLaw <mailoflawrence@gmail.com>
Co-authored-by: Hui Zhang <zhtclz@foxmail.com>
Co-authored-by: Shuangchi He <34329208+Yulv-git@users.noreply.github.com>
Co-authored-by: TianHao Zhang <32243340+Zth9730@users.noreply.github.com>
Co-authored-by: guanyc <guanyc@gmail.com>
Co-authored-by: jiamingkong <kinetical@live.com>
Co-authored-by: zoooo0820 <zoooo0820@qq.com>
Co-authored-by: shuishu <990941859@qq.com>
Co-authored-by: LixinGuo <18510030324@126.com>
Co-authored-by: gmm <38800877+mmglove@users.noreply.github.com>
Co-authored-by: Wang Huan <wanghuan29@baidu.com>
Co-authored-by: Kai Song <50285351+USTCKAY@users.noreply.github.com>
Co-authored-by: skyboooox <zcj924@gmail.com>
Co-authored-by: fazledyn-or <ataf@openrefactory.com>
Co-authored-by: luyao-cv <1367355728@qq.com>
Co-authored-by: Color_yr <402067010@qq.com>
Co-authored-by: JeffLu <luzhenhui@gmail.com>
Co-authored-by: Luzhenhui <luzhenhui@mqsz.com>
Co-authored-by: satani99 <42287151+satani99@users.noreply.github.com>
Co-authored-by: mjxs <52824616+kk-2000@users.noreply.github.com>
Co-authored-by: Mattheliu <leonliuzx@outlook.com>
5 months ago
|
|
|
if [[ ${PROFILING_TIMER_ONLY} != "no" ]];then
|
|
|
|
echo "run profile"
|
|
|
|
# The default value of profile_option's timer_only parameter is True
|
|
|
|
if [[ ${PROFILING_TIMER_ONLY} = "False" ]];then
|
|
|
|
profile_option="${profile_option};timer_only=False"
|
|
|
|
fi
|
|
|
|
log_path="$SAVE_LOG/profiling_log"
|
|
|
|
mkdir -p $log_path
|
|
|
|
log_name="${repo_name}_${model_name}_bs${batch_size}_${precision}_${run_mode}_${device_num}_${to_static}profiling"
|
|
|
|
# set profile_option params
|
|
|
|
tmp=`sed -i "${line_profile}s/.*/\"${profile_option}\"/" "${FILENAME}"`
|
|
|
|
# run test_train_inference_python.sh
|
|
|
|
cmd="timeout 5m bash test_tipc/test_train_inference_python.sh ${FILENAME} benchmark_train > ${log_path}/${log_name} 2>&1 "
|
|
|
|
echo $cmd
|
|
|
|
eval ${cmd}
|
|
|
|
eval "cat ${log_path}/${log_name}"
|
|
|
|
fi
|
|
|
|
echo "run without profile"
|
|
|
|
# without profile
|
|
|
|
log_path="$SAVE_LOG/train_log"
|
|
|
|
speed_log_path="$SAVE_LOG/index"
|
|
|
|
mkdir -p $log_path
|
|
|
|
mkdir -p $speed_log_path
|
|
|
|
log_name="${repo_name}_${model_name}_bs${batch_size}_${precision}_${run_mode}_${device_num}_log"
|
|
|
|
speed_log_name="${repo_name}_${model_name}_bs${batch_size}_${precision}_${run_mode}_${device_num}_speed"
|
|
|
|
func_sed_params "$FILENAME" "${line_profile}" "null" # sed profile_id as null
|
|
|
|
cmd="bash test_tipc/test_train_inference_python.sh ${FILENAME} benchmark_train > ${log_path}/${log_name} 2>&1 "
|
|
|
|
echo $cmd
|
|
|
|
job_bt=`date '+%Y%m%d%H%M%S'`
|
|
|
|
eval $cmd
|
|
|
|
job_et=`date '+%Y%m%d%H%M%S'`
|
|
|
|
export model_run_time=$((${job_et}-${job_bt}))
|
|
|
|
eval "cat ${log_path}/${log_name}"
|
|
|
|
|
|
|
|
# parser log
|
|
|
|
_model_name="${model_name}_bs${batch_size}_${precision}_${run_mode}"
|
|
|
|
cmd="${python} ${BENCHMARK_ROOT}/scripts/analysis.py --filename ${log_path}/${log_name} \
|
|
|
|
--speed_log_file '${speed_log_path}/${speed_log_name}' \
|
|
|
|
--model_name ${_model_name} \
|
|
|
|
--base_batch_size ${batch_size} \
|
|
|
|
--run_mode ${run_mode} \
|
|
|
|
--fp_item ${precision} \
|
|
|
|
--keyword ips: \
|
|
|
|
--skip_steps 2 \
|
|
|
|
--device_num ${device_num} \
|
|
|
|
--speed_unit samples/s \
|
|
|
|
--convergence_key loss: "
|
|
|
|
echo $cmd
|
|
|
|
eval $cmd
|
|
|
|
last_status=${PIPESTATUS[0]}
|
|
|
|
status_check $last_status "${cmd}" "${status_log}"
|
|
|
|
else
|
|
|
|
IFS=";"
|
|
|
|
unset_env=`unset CUDA_VISIBLE_DEVICES`
|
|
|
|
log_path="$SAVE_LOG/train_log"
|
|
|
|
speed_log_path="$SAVE_LOG/index"
|
|
|
|
mkdir -p $log_path
|
|
|
|
mkdir -p $speed_log_path
|
|
|
|
log_name="${repo_name}_${model_name}_bs${batch_size}_${precision}_${run_mode}_${device_num}_log"
|
|
|
|
speed_log_name="${repo_name}_${model_name}_bs${batch_size}_${precision}_${run_mode}_${device_num}_speed"
|
|
|
|
func_sed_params "$FILENAME" "${line_gpuid}" "$gpu_id" # sed used gpu_id
|
|
|
|
func_sed_params "$FILENAME" "${line_profile}" "null" # sed --profile_option as null
|
|
|
|
cmd="bash test_tipc/test_train_inference_python.sh ${FILENAME} benchmark_train > ${log_path}/${log_name} 2>&1 "
|
|
|
|
echo $cmd
|
|
|
|
job_bt=`date '+%Y%m%d%H%M%S'`
|
|
|
|
eval $cmd
|
|
|
|
job_et=`date '+%Y%m%d%H%M%S'`
|
|
|
|
export model_run_time=$((${job_et}-${job_bt}))
|
|
|
|
eval "cat ${log_path}/${log_name}"
|
|
|
|
# parser log
|
|
|
|
_model_name="${model_name}_bs${batch_size}_${precision}_${run_mode}"
|
|
|
|
|
|
|
|
cmd="${python} ${BENCHMARK_ROOT}/scripts/analysis.py --filename ${log_path}/${log_name} \
|
|
|
|
--speed_log_file '${speed_log_path}/${speed_log_name}' \
|
|
|
|
--model_name ${_model_name} \
|
|
|
|
--base_batch_size ${batch_size} \
|
|
|
|
--run_mode ${run_mode} \
|
|
|
|
--fp_item ${precision} \
|
|
|
|
--keyword ips: \
|
|
|
|
--skip_steps 2 \
|
|
|
|
--device_num ${device_num} \
|
|
|
|
--speed_unit images/s \
|
|
|
|
--convergence_key loss: "
|
|
|
|
echo $cmd
|
|
|
|
eval $cmd
|
|
|
|
last_status=${PIPESTATUS[0]}
|
|
|
|
status_check $last_status "${cmd}" "${status_log}"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
done
|
|
|
|
done
|