nijisakai commited on
Commit
f0e2a14
1 Parent(s): a28b632

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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=False, # 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
 
 
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