jhj0517 commited on
Commit
9548fb4
·
1 Parent(s): 4c322cf

update docstring

Browse files
Files changed (1) hide show
  1. modules/whisper/whisper_base.py +3 -2
modules/whisper/whisper_base.py CHANGED
@@ -62,8 +62,9 @@ class WhisperBase(ABC):
62
  *whisper_params,
63
  ) -> Tuple[List[dict], float]:
64
  """
65
- Run transcription with conditional post-processing.
66
- The diarization will be performed in post-processing if enabled.
 
67
 
68
  Parameters
69
  ----------
 
62
  *whisper_params,
63
  ) -> Tuple[List[dict], float]:
64
  """
65
+ Run transcription with conditional pre-processing and post-processing.
66
+ The VAD will be performed to remove noise from the audio input in pre-processing, if enabled.
67
+ The diarization will be performed in post-processing, if enabled.
68
 
69
  Parameters
70
  ----------