bc-bytes
bc-bytes
I'm attempting to train a unet model, and am getting this error: Traceback (most recent call last): File "/home/kseg/keras_segmentation/train.py", line 4, in from .data_utils.data_loader import image_segmentation_generator, \ ImportError: attempted relative...
I tested with several model configurations, with and without pretrained weights, but am only getting black images for prediction outputs. Is this library not suitable for binary classification (background =...
I used the following config to successfully train a binary segmentation model on my dataset (640x480 pixel images) using your code: ``` cfg = EasyDict() cfg.batch_size = 2 cfg.epoch =...
I am trying to train using the efficientnet_b0 backbone using an image size of 64x48, but get the following error: ```Traceback (most recent call last): File "/home/seg/bbunet/train.py", line 85, in...
In trainer.py (line 101) there is a missing argument. Here's how I define optimiser and lr_scheduler in train.py: ``` optimizer = torch.optim.Adam(params, lr=0.001, weight_decay=0.0001) scheduler = lr_scheduler.ReduceLROnPlateau(optimizer, factor=0.1, patience=6, verbose=1,...