v1.0.1
There were some things to fix after the v1 release, so we fixed them:
- EasySet's format check is now case unsensitive (thanks @mgmalana 😄 )
TaskSampler
used to yieldtorch.Tensor
objects which caused errors. So now it yields lists of integers, as is standard in PyTorch's interface.- When
EasySet
's initialization didn't find any images in the specified folders, it just built an empty dataset with no warning, which caused silent errors. NowEasySet.__init__()
raises the following warning if no image is found: "No images found in the specified directories. The dataset will be empty"