Loop using merged_split instead of devices
Browse files- src/vadParallel.py +1 -1
src/vadParallel.py
CHANGED
|
@@ -94,7 +94,7 @@ class ParallelTranscription(AbstractTranscription):
|
|
| 94 |
parameters = []
|
| 95 |
segment_index = config.initial_segment_index
|
| 96 |
|
| 97 |
-
for i in range(len(
|
| 98 |
device_segment_list = merged_split[i]
|
| 99 |
|
| 100 |
# Create a new config with the given device ID
|
|
|
|
| 94 |
parameters = []
|
| 95 |
segment_index = config.initial_segment_index
|
| 96 |
|
| 97 |
+
for i in range(len(merged_split)):
|
| 98 |
device_segment_list = merged_split[i]
|
| 99 |
|
| 100 |
# Create a new config with the given device ID
|