Andrew commited on
Commit
4d3e64d
·
1 Parent(s): 2ad38c2

Fix auto-label audio fallback NameError by importing numpy

Browse files
Files changed (1) hide show
  1. acestep/handler.py +1 -0
acestep/handler.py CHANGED
@@ -24,6 +24,7 @@ from typing import Optional, Dict, Any, Tuple, List, Union
24
  import torch
25
  import torchaudio
26
  import soundfile as sf
 
27
  import time
28
  from tqdm import tqdm
29
  from loguru import logger
 
24
  import torch
25
  import torchaudio
26
  import soundfile as sf
27
+ import numpy as np
28
  import time
29
  from tqdm import tqdm
30
  from loguru import logger