Unverified Commit 0e1d814b authored by Bhargav Kathivarapu's avatar Bhargav Kathivarapu Committed by GitHub
Browse files

Fix noise_down_time arg in VAD (#1017)

parent 3b9e9337
...@@ -1002,7 +1002,7 @@ class Vad(torch.nn.Module): ...@@ -1002,7 +1002,7 @@ class Vad(torch.nn.Module):
self.pre_trigger_time = pre_trigger_time self.pre_trigger_time = pre_trigger_time
self.boot_time = boot_time self.boot_time = boot_time
self.noise_up_time = noise_up_time self.noise_up_time = noise_up_time
self.noise_down_time = noise_up_time self.noise_down_time = noise_down_time
self.noise_reduction_amount = noise_reduction_amount self.noise_reduction_amount = noise_reduction_amount
self.measure_freq = measure_freq self.measure_freq = measure_freq
self.measure_duration = measure_duration self.measure_duration = measure_duration
...@@ -1027,7 +1027,7 @@ class Vad(torch.nn.Module): ...@@ -1027,7 +1027,7 @@ class Vad(torch.nn.Module):
pre_trigger_time=self.pre_trigger_time, pre_trigger_time=self.pre_trigger_time,
boot_time=self.boot_time, boot_time=self.boot_time,
noise_up_time=self.noise_up_time, noise_up_time=self.noise_up_time,
noise_down_time=self.noise_up_time, noise_down_time=self.noise_down_time,
noise_reduction_amount=self.noise_reduction_amount, noise_reduction_amount=self.noise_reduction_amount,
measure_freq=self.measure_freq, measure_freq=self.measure_freq,
measure_duration=self.measure_duration, measure_duration=self.measure_duration,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment