Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug Description: np.ndarray does not accept float as values for indices [ step = seg_length // 2 ] thus the make_spectrogram function doesn't work. Solution: solving this issue by ensuring step is an integer [ step = int(seg_length // 2) ] thereby the values of i and j are also integers.
- Loading branch information