vuxuanhoan commited on
Commit
ab5c5ad
1 Parent(s): 48f249c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -29,6 +29,9 @@ def text_to_speech(text):
29
 
30
  with torch.no_grad():
31
  audio_output = model(inputs)
 
 
 
32
 
33
  # Giả sử rằng audio_output là một tensor âm thanh
34
  return audio_output.numpy()
 
29
 
30
  with torch.no_grad():
31
  audio_output = model(inputs)
32
+ print(type(audio_output)) # In kiểu dữ liệu
33
+ print(audio_output.shape) # In kích thước đầu ra
34
+ print(audio_output[:10]) # In 10 giá trị đầu tiên của âm thanh
35
 
36
  # Giả sử rằng audio_output là một tensor âm thanh
37
  return audio_output.numpy()