mirror of
https://github.com/modelscope/FunASR
synced 2025-09-15 14:48:36 +08:00
fix bug
This commit is contained in:
parent
7b34f8ffde
commit
1186cd96a5
@ -399,10 +399,7 @@ class CustomDistributedBufferDynamicBatchSampler(DistributedSampler):
|
|||||||
continue
|
continue
|
||||||
sample_length = 1 if self.batch_type == "example" else original_sample_length
|
sample_length = 1 if self.batch_type == "example" else original_sample_length
|
||||||
potential_batch_length = max(max_len_in_batch, sample_length) * (len(batch) + 1)
|
potential_batch_length = max(max_len_in_batch, sample_length) * (len(batch) + 1)
|
||||||
if (
|
if potential_batch_length <= self.batch_size and count < self.batch_size_sample_max:
|
||||||
potential_batch_length <= self.batch_size
|
|
||||||
and count <= self.batch_size_sample_max
|
|
||||||
):
|
|
||||||
batch.append(idx)
|
batch.append(idx)
|
||||||
max_len_in_batch = max(max_len_in_batch, sample_length)
|
max_len_in_batch = max(max_len_in_batch, sample_length)
|
||||||
count += 1
|
count += 1
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user