facebookresearch / WavAugment

A library for speech data augmentation in time-domain

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A typo in process_file.py

cyhuang-tw opened this issue · comments

Hi,

I found that there seems to be a typo in examples/python/process_file.py, line 40.

room_scale = np.random.randint(self.room_scale_min, self.room_scale_min + 1)

Maybe it should be

room_scale = np.random.randint(self.room_scale_min, self.room_scale_max + 1)

Oh indeed, thanks!