Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -119,7 +119,7 @@ def extend(audio):
|
|
119 |
def inference_denoise(audio):
|
120 |
voicefixer.restore(input=audio, # input wav file path
|
121 |
output="output.wav", # output wav file path
|
122 |
-
cuda=
|
123 |
mode = int(0)) # You can try out mode 0, 1 to find out the best result
|
124 |
return 'output.wav'
|
125 |
|
|
|
119 |
def inference_denoise(audio):
|
120 |
voicefixer.restore(input=audio, # input wav file path
|
121 |
output="output.wav", # output wav file path
|
122 |
+
cuda=True, # whether to use gpu acceleration
|
123 |
mode = int(0)) # You can try out mode 0, 1 to find out the best result
|
124 |
return 'output.wav'
|
125 |
|