Patrik Sabol
Patrik Sabol
Hello @marialinea I have used pretrained model on the mapping challenge dataset to train my own dataset, however I experienced fast overfitting (after 100k samples) - but I think because...
You can use following script at master/scripts/plot_framefield.py
The output should be in the same directory as the input image in the form of multiple directories that represent different outputs. Are you sure that the script ended without...
Try to set breakpoint at first 'if' statement, and inspect it. I am sure the problem is somewhere in config, or this particular code is not able to read config...
Command is OK, you do not have to use -c config. Are you sure that config["compute_seg"] is set to True when running code?
I have just run it and debugged it. config["compute_seg"] is set to True, but inner 'ifs' as set to False (such as config["eval_params"]["save_individual_outputs"]["seg_mask"]). You need to set them to True....
I think it is only mask of 13 classes. It does not contain any imagery. Chesapeake 13 inherits from Chesapeake, where [here](https://github.com/microsoft/torchgeo/blob/ae3a4cb3a201cb20ef8a7524422909c95b4592be/torchgeo/datasets/chesapeake.py#L42) it says, it is no imagery dataset. Moreover,...
Thank you for clarification! My intention is to get exact imagery, on which the labeling (Chesapeake13) was done. Could be those from ChesapeakeCVPR zip?
I have used [this config](https://github.com/dsgoficial/pytorch_segmentation_models_trainer/blob/main/tests/test_configs/build_coco_mask.yaml) to generate dataset. Which also have generated expected output from [there](https://github.com/dsgoficial/pytorch_segmentation_models_trainer/blob/main/tests/testing_data/expected_outputs/build_masks/coco_dataset.csv). But if you watch closely, class_freq (which is used for mask class_freq) has very...
Hi, I have also found very small but critical bug. I was not able to train crossfield itself properly. And the problem was in [this](https://github.com/dsgoficial/pytorch_segmentation_models_trainer/blob/7e4839273c4744b47ca47c4c8c6c44c736c6dfca/pytorch_segmentation_models_trainer/utils/polygon_utils.py#L116) line for crossfield generation. In...