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
2
6
### Changed
3
7
- Fixed dependencies with ` librosa ` library
4
8
Original file line number Diff line number Diff line change 1
- __version__ = "1.1.6 "
1
+ __version__ = "1.1.7 "
2
2
3
3
from .annotations .images import Image
4
4
from .annotations .images import CVImage
Original file line number Diff line number Diff line change @@ -257,9 +257,11 @@ def __exit__(self):
257
257
else :
258
258
print ("Something went wrong" )
259
259
260
- def __call__ (self , index ):
260
+ def __call__ (self , index : int ):
261
261
if index == 0 :
262
262
for _index in range (self .queue_size ):
263
+ if _index >= self .max_len :
264
+ break
263
265
self .data_queue .put (_index )
264
266
265
267
while True :
You can’t perform that action at this time.
0 commit comments