File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1- ## [ 1.1.6] - 2022-10-30
1+ ## [ 1.1.7] - 2022-10-30
2+ ### Changed
3+ - Fixed bug in ` mltu.torch.dataProvider.SequenceHandler ` , to handle ` len sequence < queue_size ` case
4+
5+ # [ 1.1.6] - 2022-10-30
26### Changed
37- Fixed dependencies with ` librosa ` library
48
Original file line number Diff line number Diff line change 1- __version__ = "1.1.6 "
1+ __version__ = "1.1.7 "
22
33from .annotations .images import Image
44from .annotations .images import CVImage
Original file line number Diff line number Diff line change @@ -257,9 +257,11 @@ def __exit__(self):
257257 else :
258258 print ("Something went wrong" )
259259
260- def __call__ (self , index ):
260+ def __call__ (self , index : int ):
261261 if index == 0 :
262262 for _index in range (self .queue_size ):
263+ if _index >= self .max_len :
264+ break
263265 self .data_queue .put (_index )
264266
265267 while True :
You can’t perform that action at this time.
0 commit comments