karryor
karryor
Hello, you can share the data set of gesture recognition. How can I call your gesture recognition detection interface here
Hello, can you share the specific steps of a video call between two people? What I get through "streamlit run app_mcu_filters.py" is a video call between myself and myself.
插入自己网络出错
你好,我把PAM模块插入我自己的网络会出错,提示缩进错误,但是我的缩进没有问题,你知道这怎么解决吗
您好,是否可以分享下,当音频处理方法为MelSpectrogram、Spectrogram、MFCC时的音频处理代码逻辑,在您的fraturizer.py下,只看到了Fbank特征提取方法对应的代码,如下: class KaldiFbank(nn.Module): def __init__(self, **kwargs): super(KaldiFbank, self).__init__() self.kwargs = kwargs def forward(self, waveforms): """ :param waveforms: [Batch, Length] :return: [Batch, Length, Feature] """ log_fbanks = [] for waveform in...