Is overlapped. Args: t1: TODO. t2: TODO.
(t1, t2)
| 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)): |
no outgoing calls
no test coverage detected
searching dependent graphs…