Revert default segment size for cutting to 3.0s for OOM prevention (fp32)

Only for 10 series GPUs specifically whitelisted will this have any impact; this is how it already was before, but a commit accidentally reverted this default
This commit is contained in:
kalomaze
2023-07-30 04:57:36 -05:00
committed by GitHub

View File

@@ -45,7 +45,7 @@ class PreProcess:
)
self.sr = sr
self.bh, self.ah = signal.butter(N=5, Wn=48, btype="high", fs=self.sr)
self.per = 3.7
self.per = 3.0
self.overlap = 0.3
self.tail = self.per + self.overlap
self.max = 0.9