MCPcopy Create free account
hub / github.com/modelscope/FunASR / is_overlapped

Function is_overlapped

funasr/utils/speaker_utils.py:154–163  ·  view source on GitHub ↗

Is overlapped. Args: t1: TODO. t2: TODO.

(t1, t2)

Source from the content-addressed store, hash-verified

152 spk_embs = np.stack(spk_embs)
153
154 def is_overlapped(t1, t2):
155 """Is overlapped.
156
157 Args:
158 t1: TODO.
159 t2: TODO.
160 """
161 if t1 > t2 + 1e-4:
162 return True
163 return False
164
165 # distribute the overlap region
166 for i in range(1, len(distribute_res)):

Callers 1

postprocessFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…