X0RB64
X0RB64
Have you got a correct version, or any way to solve? I meet this error either. Error prompt looks like: `Traceback (most recent call last): File "PATH\pytorch-nested-unet\train.py", line 354, in...
Ok, I find the correct version via try each released version in the albumentations' git repository😂. Use `pip install albumentations==0.5.2` under `conda` environment or `pip3 install albumentations==0.5.2` via pure pip.
> ``` > def letterbox_image(image, size): > image = image.convert("RGB") > iw, ih = image.size#original size > w, h = size#needed size > scale = min(w/iw, h/ih)#find the smaller one...