juancopi81 commited on
Commit
d350786
1 Parent(s): 0760318

Add print for debugging

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -18,6 +18,7 @@ inference_model = InferenceModel('/home/user/app/checkpoints/mt3/', 'mt3')
18
  def inference(audio):
19
  with open(audio, 'rb') as fd:
20
  contents = fd.read()
 
21
 
22
  audio = upload_audio(contents,sample_rate=16000)
23
 
 
18
  def inference(audio):
19
  with open(audio, 'rb') as fd:
20
  contents = fd.read()
21
+ print("asdfasdf", contents)
22
 
23
  audio = upload_audio(contents,sample_rate=16000)
24