1.准备环境
#创建环境
conda create -n whisper python=3.10 -y
source activate whisper
#安装环境
conda install pytorch==2.1.0 torchvision==0.16.0 torchaudio==2.1.0 pytorch-cuda=11.8 -c pytorch -c nvidia
#下载github微调文件
git clone https://github.com/yeyupiaoling/Whisper-Finetune.git
#安装依赖
cd /root/autodl-tmp/Whisper-Finetune
python -m pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
2.加载数据集
导入所有wav文件
计算所有wav时长
import os
import wave
import contextlib
def get_wav_duration(file_path):
with contextlib.closing(wave.open(file_path, 'r')) as f:
frames = f.getnframes()
rate = f.getframerate()
duration = frames / float(rate)
return duration
def print_wav_durations(folder_path):
for root, dirs, files in os.walk(folder_path):
for file in files:
if file.endswith('.wav'):
file_path = os.path.join(root, file)
duration = get_wav_duration(file_path)
print(f"File: {file} - Duration: {duration:.2f} seconds")
# 指定包含 .wav 文件的文件夹路径
folder_path = '/root/autodl-tmp/data'
print_wav_durations(folder_path)
生成json文件:一个jsonlines的数据列表,也就是每一行都是一个JSON数据
3.微调模型
#修改读取json的地方
在Whisper-Finetune/utils/reader.py修改_load_data_list 函数
# 从数据列表里面获取音频数据、采样率和文本
def _get_list_data(self, idx):
if self.data_list_path.endswith(".header"):
data_list = self.dataset_reader.get_data(self.data_list[idx])
else:
data_list = self.data_list[idx]
# 分割音频路径和标签
audio_file = data_list["audio"]['path']
transcript = data_list["sentences"] if self.timestamps else data_list["sentence"]
language = data_list["language"] if 'language' in data_list.keys() else None
if 'start_time' not in data_list["audio"].keys():
sample, sample_rate = soundfile.read(audio_file, dtype='float32')
else:
start_time, end_time = data_list["audio"]["start_time"], data_list["audio"]["end_time"]
# 分割读取音频
sample, sample_rate = self.slice_from_file(audio_file, start=start_time, end=end_time)
sample = sample.T
# 转成单通道
if self.mono:
sample = librosa.to_mono(sample)
# 数据增强
if self.augment_configs:
sample, sample_rate = self.augment(sample, sample_rate)
# 重采样
if self.sample_rate != sample_rate:
sample = self.resample(sample, orig_sr=sample_rate, target_sr=self.sample_rate)
return sample, sample_rate, transcript, language
修改Whisper-Finetune/utils/callback.py的SavePeftModelCallback函数
class SavePeftModelCallback(TrainerCallback):
def on_save(self,
args: TrainingArguments,
state: TrainerState,
control: TrainerControl,
**kwargs):
if args.local_rank == 0 or args.local_rank == -1:
# 保存效果最好的模型
best_checkpoint_folder = os.path.join(args.output_dir, f"{PREFIX_CHECKPOINT_DIR}-best")
# 确保 state.best_model_checkpoint 不是 NoneType
if state.best_model_checkpoint is not None:
# 因为只保存最新5个检查点,所以要确保不是之前的检查点
if os.path.exists(state.best_model_checkpoint):
if os.path.exists(best_checkpoint_folder):
shutil.rmtree(best_checkpoint_folder)
shutil.copytree(state.best_model_checkpoint, best_checkpoint_folder)
print(f"效果最好的检查点为:{state.best_model_checkpoint},评估结果为:{state.best_metric}")
return control
#下载基础模型
git clone https://gitee.com/hf-models/whisper-tiny.git
微调
cd Whisper-Finetune
CUDA_VISIBLE_DEVICES=0 python finetune.py --train_data /root/autodl-tmp/data/data_list_lines.json --test_data /root/autodl-tmp/data/data_list_lines.json --base_model=/root/autodl-tmp/whisper-tiny --output_dir=output/
4.合并
--lora_model 是训练结束后保存的 Lora 模型路径,就是检查点文件夹路径
--output_dir 是合并后模型的保存目录
python merge_lora.py --lora_model=/root/autodl-tmp/Whisper-Finetune/output/whisper-tiny/checkpoint-3/ --output_dir=models/
5.验证
python infer.py --audio_path=/root/autodl-tmp/data/0.wav --model_path=models/whisper-
tiny-finetune
总结
### 文章总结本文详细描述了使用Whisper模型进行微调、加载数据集、环境准备、模型微调、合并及验证的完整流程。以下是各步骤的简要总结:
#### 1. 准备环境
- **创建并激活Conda环境**:使用`conda create`命令创建一个名为`whisper`的新环境,并激活该环境。
- **安装PyTorch及相关库**:通过`conda install`命令安装PyTorch、TorchVision、Torchaudio及其CUDA版本。
- **下载微调文件**:从GitHub克隆Whisper微调项目的仓库。
- **安装依赖**:切换到项目目录,并使用`pip`安装`requirements.txt`中列出的依赖项。
#### 2. 加载数据集
- **导入WAV文件**:编写Python脚本遍历指定文件夹中的所有WAV文件,并计算每个文件的时长。
- **生成JSON文件**:将WAV文件的路径、时长等信息组织成JSON格式,每行一个JSON对象,形成JSONLines格式的数据列表。
#### 3. 微调模型
- **修改读取数据代码**:在`Whisper-Finetune/utils/reader.py`中修改`_load_data_list`函数,使其能够正确地从JSONLines文件中读取音频数据和标签。
- **修改回调函数**:在`Whisper-Finetune/utils/callback.py`中修改`SavePeftModelCallback`类,以便在训练过程中保存效果最好的模型。
- **下载基础模型**:从Gitee仓库克隆Whisper的基础模型。
- **执行微调**:使用`finetune.py`脚本进行模型微调,指定训练数据、测试数据和基础模型路径。
#### 4. 合并模型
- **合并Lora模型**:使用`merge_lora.py`脚本将训练后的Lora模型与基础模型合并,指定Lora模型路径和输出目录。
#### 5. 验证模型
- **进行推理验证**:使用`infer.py`脚本对指定的WAV文件进行推理,验证微调后模型的效果,指定音频文件路径和模型路径。
通过上述步骤,用户可以成功准备环境、加载数据集、微调Whisper模型、合并模型并进行验证,以实现对特定音频数据的更精确识别或处理。