I have run the code below and it keeps on giving me the attribute error;
import noisereduce as nr
from scipy.io import wavfile
from noisereduce import reduce_n
# load data
rate, data = wavfile.read("output.wav")
# select section of data that is noise
noisy_part = data[10000:15000]
# perform noise reduction
reduced_noise = nr.reduce_noise(audio_clip=data, noise_clip=noisy_part, verbose=True)
It gives the attribute error below
AttributeError: module 'noisereduce' has no attribute 'reduce_noise'
This was because I saved the code as noisereduce.py, it there for imported itself when i ran the code and since there is no named attribute called reduce_noise, I got that error. Thanks alot @Eyal