VGGishBundle¶
- class torchaudio.prototype.pipelines.VGGishBundle[source]¶
从 torchvggish 和 tensorflow-models 移植的 VGGish [Hershey et al., 2017] 推理管道。
示例
>>> import torchaudio >>> from torchaudio.prototype.pipelines import VGGISH >>> >>> input_sr = VGGISH.sample_rate >>> input_proc = VGGISH.get_input_processor() >>> model = VGGISH.get_model() >>> >>> waveform, sr = torchaudio.load( >>> "Chopin_Ballade_-1_In_G_Minor,_Op._23.mp3", >>> ) >>> waveform = waveform.squeeze(0) >>> waveform = torchaudio.functional.resample(waveform, sr, input_sr) >>> mono_output = model(input_proc(waveform))
属性¶
sample_rate¶
方法¶
get_input_processor¶
- VGGishBundle.get_input_processor() VGGishInputProcessor [source]¶
构建 VGGish 的输入处理器。
- 返回:
VGGish 的输入处理器。
- 返回类型: