Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏

10.11. 音频处理

torchaudio 提供了强大的音频 I/O,预处理转换和数据集。

10.11.1. 

		
#### 使用 torchaudio 进行音频处理
# 引入实验所需的模块
import torch
import torchaudio
import torchaudio.functional as F  # 以函数形式进行音频处理
import torchaudio.transforms as T  # 实例化音频处理对象后,使用实例化对象进行音频处理
 
print(torch.__version__)
print(torchaudio.__version__)
		
		

10.11.2. 音频降噪

https://github.com/NVIDIA/CleanUNet