pytorch-semseg icon indicating copy to clipboard operation
pytorch-semseg copied to clipboard

Semantic Segmentation Architectures Implemented in PyTorch

Results 104 pytorch-semseg issues
Sort by recently updated
recently updated
newest added

How to prepare cityscapes data

When I try to train fcn8s_pascal.py, it always appears this issue. But if I train segnet_pacal.py, it works normally. Can anyone help me? I didn't change the .yml file provided...

The details of error are as follows: `RUNDIR: runs\seg_pascal\59030 Traceback (most recent call last): File "train.py", line 226, in train(cfg, writer, logger) File "train.py", line 72, in train model =...

RUNDIR: runs/fcn8s_pascal/68527 Traceback (most recent call last): File "train.py", line 229, in train(cfg, writer, logger) File "train.py", line 49, in train augmentations=data_aug, File "/home/lxc/PythonProjects/pytorch-semseg-master/ptsemseg/loader/pascal_voc_loader.py", line 73, in __init__ self.setup_annotations() File...

I'm try to input a tensor with the size of `(1, 3, 256, 256)`, after many conv2d and maxpool, the centre feature size is `(1, 256, 8, 8)`, and the...

when I run python train.py --config configs/pspnet_pascal_yml, give me this error: > Traceback (most recent call last): > File "train.py", line 229, in > train(cfg, writer, logger) > File "train.py",...

for this repo targets have shape (M,N) where all the pixels represent class index (0-21) and cross entropy loss has been used. 1) Is it possible to convert targets to...

Is there a reason for not using 4 ReLUs in the bottleNeckPSP class? In utils.py#614, you are using `self.cb3 = conv2DBatchNorm` instead of another `conv2DBatchNormRelu`?: --> three ReLUs + another...