sagemaker-voice-classification/notebook/coswara_dataset.py [64:69]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            tempData = torch.zeros([1, const_len])
            if sound.shape[1] < const_len:
                tempData[0, : sound.shape[1]] = sound[:]
            else:
                tempData[0, :] = sound[0, :const_len]
            sound = tempData
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



sagemaker-voice-classification/notebook/inference.py [81:86]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        tempData = torch.zeros([1, const_len])
        if sound.shape[1] < const_len:
            tempData[0, : sound.shape[1]] = sound[:]
        else:
            tempData[0, :] = sound[0, :const_len]
        sound = tempData
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



