mirror of
https://github.com/k2-fsa/icefall.git
synced 2025-09-06 15:44:17 +00:00
152 lines
5.3 KiB
Bash
152 lines
5.3 KiB
Bash
stage=3
|
|
|
|
# Parameters about model.
|
|
exp_dir=./vq_pruned_transducer_stateless2/exp/
|
|
model_id=hubert_xtralarge_ll60k_finetune_ls960
|
|
hubert_model_dir=${exp_dir}/hubert_models
|
|
hubert_model=${hubert_model_dir}/${model_id}.pt
|
|
|
|
# Parameters about quantizer.
|
|
memory_layer=36 # 1-based
|
|
|
|
|
|
# Make sure following parameters are identical to that in hubert_utils.vq_config
|
|
num_utts=1000
|
|
bytes_per_frame=8
|
|
enable_refine=True
|
|
|
|
|
|
if [ $stage -eq -1 ]; then
|
|
# Preparation state.
|
|
|
|
# Install fairseq according to:
|
|
# https://github.com/pytorch/fairseq
|
|
# when testing this code:
|
|
# commit 806855bf660ea748ed7ffb42fe8dcc881ca3aca0 is used
|
|
|
|
echo "Download hubert model."
|
|
mkdir -p ${hubert_model_dir}
|
|
# For more models refer to: https://github.com/pytorch/fairseq/tree/main/examples/hubert
|
|
wget -c https://dl.fbaipublicfiles.com/hubert/hubert_xtralarge_ll60k_finetune_ls960.pt -P ${hubert_model_dir}
|
|
wget -c wget https://dl.fbaipublicfiles.com/fairseq/wav2vec/dict.ltr.txt -P ${hubert_model_dir}
|
|
fi
|
|
|
|
if [ ! -d ./data/fbank ]; then
|
|
echo "This script assumes ./data/fbank is already generated by prepare.sh"
|
|
exit 0
|
|
fi
|
|
|
|
if [ $stage -eq 0 ]; then
|
|
# This stage is not directly used by codebook extraction.
|
|
# It is an method to "prove" that the downloaed hubert model
|
|
# is inferenced in an correct way if WERs looks like normal.
|
|
# Expect WERs:
|
|
# [test-clean-ctc_greedy_search] %WER 2.04% [1075 / 52576, 92 ins, 104 del, 879 sub ]
|
|
# [test-other-ctc_greedy_search] %WER 3.71% [1942 / 52343, 152 ins, 126 del, 1664 sub ]
|
|
export CUDA_VISIBLE_DEVICES=7
|
|
./vq_pruned_transducer_stateless2/hubert_decode.py
|
|
fi
|
|
|
|
if [ $stage -eq 1 ]; then
|
|
./vq_pruned_transducer_stateless2/hubert_memory_embeddings.py \
|
|
--memory-layer=${memory_layer}
|
|
fi
|
|
|
|
if [ $stage -eq 2 ]; then
|
|
./vq_pruned_transducer_stateless2/quantizer_train.py \
|
|
--memory-layer=${memory_layer}
|
|
fi
|
|
|
|
# CAUTITHON: set quantizer_id MANUALLY when a new quantizer is used.
|
|
# as it is generated randomly.
|
|
# quantizer_id="ba401508"; max_duration=40;
|
|
quantizer_id="3d451334"; max_duration=40;
|
|
|
|
# Train with clean-100
|
|
train_subsets="clean-100"
|
|
# Or if full-libri speech is needed:
|
|
# train_subsets="clean-100 clean-360 other-500"
|
|
# In stage 4, each split part needs a gpu to extract codebook indexes.
|
|
# So use a larger num_jobs if more GPUs are available.
|
|
num_jobs=2
|
|
manifests_dir=vq_pruned_transducer_stateless2/exp/manifests/
|
|
if [ $stage -eq 3 ]; then
|
|
for subset in ${train_subsets}; do
|
|
echo $subset
|
|
split_dir=$manifests_dir/split${num_jobs}/$subset/
|
|
mkdir -p $split_dir
|
|
lhotse split $num_jobs data/fbank/cuts_train-$subset.json.gz $split_dir
|
|
done
|
|
fi
|
|
|
|
if [ $stage -eq 4 ]; then
|
|
refine_iter=5
|
|
|
|
extract_codebook_index(){
|
|
# Analysis of disk usage:
|
|
# With bytes_per_frame=8, each embedding is compressed into eight 8-bit integers, i.e. 8 bytes needed.
|
|
# Training dataset including clean-100h with speed perturb 0.9 and 1.1 has 300 hours.
|
|
# The output frame rates of Hubert is 50 per second.
|
|
# Theoretically, 412M = 300 * 3600 * 50 * 8 / 1024 / 1024 is needed.
|
|
# The actual size of all "*.h5" files storaging codebook index is 450M.
|
|
# I think the extra "48M" usage is some meta information.
|
|
#
|
|
# About CUDA_VISIBLE_DEVICES:
|
|
# When I testing this code, gpu 6 and 7 are available,
|
|
# So the CUDA_VISIBLE_DEVICES is (1 + 5) for job 0
|
|
# and (2 + 5) for job 1
|
|
# Note: order of split manfiests is 1-based, while gpu is 0-based.
|
|
export CUDA_VISIBLE_DEVICES=`(expr $1 + 5)`
|
|
./vq_pruned_transducer_stateless2/hubert_code_indices.py \
|
|
--memory-layer=${memory_layer}
|
|
--num-splits $num_jobs \
|
|
--subset=$2 \
|
|
--manifest-idx $1 \
|
|
--ori-manifest-dir=$manifests_dir/split${num_jobs}/$subset/ \
|
|
--max-duration=$max_duration \
|
|
--quantizer-id=${quantizer_id}
|
|
}
|
|
# With two pieces of NVIDIA A100 gpus, around three hours needed to process 300 hours training data,
|
|
# i.e. clean-100 with speed purteb 0.9 and 1.1.
|
|
for subset in ${train_subsets}; do
|
|
for manifest_idx in `seq 1 $num_jobs`; do
|
|
extract_codebook_index $manifest_idx $subset &
|
|
done
|
|
wait
|
|
done
|
|
wait
|
|
fi
|
|
|
|
cdidx_manifests_dir=`pwd`/data/globalrandom-scaledquantizer-refine_iter-5-${num_utts}-$model_id-${mem_layer}layer-${quantizer_id}-bytes_per_frame-${bytes_per_frame}-enable-refine-True
|
|
if [ $stage -eq 5 ]; then
|
|
for subset in ${train_subsets}; do
|
|
combined_list=`find $cdidx_manifests_dir/splits$num_jobs/ -name cuts_train-${sbuset}*`
|
|
echo $combined_list
|
|
lhotse combine $combined_list $cdidx_manifests_dir/cuts_train-${subset}.json.gz
|
|
done
|
|
|
|
reuseable_subsets="dev-clean dev-other test-clean test-other musan"
|
|
for subset in $reuseable_subsets; do
|
|
ori_manifest=./data/fbank/cuts_${subset}.json.gz
|
|
ln -sf `realpath ./data/fbank/cuts_${subset}.json.gz` ${cdidx_manifests_dir}
|
|
done
|
|
fi
|
|
if [ $stage -eq 6 ]; then
|
|
# Example training script.
|
|
# Note: it's better to set spec-aug-time-warpi-factor=-1
|
|
export CUDA_VISIBLE_DEVICES="4,5,6"
|
|
WORLD_SIZE=3
|
|
python3 ./vq_pruned_transducer_stateless2/train.py \
|
|
--codebook-loss-scale 0.1 \
|
|
--num-codebooks=${bytes_per_frame} \
|
|
--start-epoch 0 \
|
|
--master-port 12358 \
|
|
--manifest-dir ${cdidx_manifests_dir} \
|
|
--full-libri 0 \
|
|
--spec-aug-time-warp-factor -1 \
|
|
--max-duration 300 \
|
|
--world-size ${WORLD_SIZE} \
|
|
--num-epochs 30 \
|
|
--codebook-loss-scale 0.1
|
|
fi
|