├── .codecov.yml ├── .coveragerc ├── .dockerignore ├── .github ├── copilot-instructions.md ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── docker-publish.yml │ ├── docs.yml │ ├── python-app.yml │ └── python-publish.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .vscode ├── launch.json └── settings.json ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── __init__.py ├── docker-compose.yml ├── docs ├── README.md ├── api │ └── main.md ├── examples │ └── basic-segmentation.md ├── getting-started │ ├── configuration.md │ ├── installation.md │ └── quickstart.md ├── index.md └── requirements.txt ├── mkdocs.yaml ├── pytorch_segmentation_models_trainer ├── __init__.py ├── build_mask.py ├── conf │ ├── __init__.py │ └── config.yaml ├── config.py ├── config_definitions │ ├── __init__.py │ ├── coco_dataset_config.py │ ├── dataset_config.py │ ├── evaluation_config.py │ ├── inference_config.py │ ├── loss_config_definition.py │ ├── predict_config.py │ ├── tools_config_def.py │ └── train_config.py ├── config_utils.py ├── convert_ds.py ├── custom_callbacks │ ├── __init__.py │ ├── image_callbacks.py │ ├── metrics_callbacks.py │ └── training_callbacks.py ├── custom_losses │ ├── __init__.py │ ├── base_loss.py │ ├── crossfield_losses.py │ ├── loss.py │ └── loss_builder.py ├── custom_metrics │ ├── __init__.py │ └── metrics.py ├── custom_models │ ├── __init__.py │ ├── hrnet_models │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── bn_helper.py │ │ ├── conf │ │ │ ├── __init__.py │ │ │ ├── high_resolution_net.yaml │ │ │ ├── hrnet_18.yml │ │ │ ├── hrnet_32.yml │ │ │ ├── hrnet_48.yml │ │ │ └── hrnet_ocr_w48.yml │ │ └── seg_hrnet_ocr.py │ ├── mod_polymapper │ │ ├── __init__.py │ │ └── modpolymapper.py │ ├── models.py │ ├── rnn │ │ ├── __init__.py │ │ ├── polygon_rnn.py │ │ └── pretrained │ │ │ └── __init__.py │ ├── unet.py │ ├── unet_resnet.py │ └── utils.py ├── dataset_loader │ ├── __init__.py │ └── dataset.py ├── evaluate_experiments.py ├── main.py ├── model_loader │ ├── __init__.py │ ├── detection_model.py │ ├── frame_field_model.py │ ├── mod_polymapper.py │ ├── model.py │ └── polygon_rnn_model.py ├── optimizers │ ├── __init__.py │ ├── gradient_centralization.py │ └── poly_optimizers.py ├── predict.py ├── predict_from_batch.py ├── predict_mod_polymapper_from_batch.py ├── server.py ├── tools │ ├── __init__.py │ ├── data_handlers │ │ ├── __init__.py │ │ ├── data_writer.py │ │ ├── raster_reader.py │ │ └── vector_reader.py │ ├── dataset_handlers │ │ ├── __init__.py │ │ └── convert_dataset.py │ ├── detection │ │ ├── __init__.py │ │ └── bbox_handler.py │ ├── evaluation │ │ ├── __init__.py │ │ ├── csv_builder.py │ │ ├── direct_folder_evaluator.py │ │ ├── evaluate_data.py │ │ ├── evaluation_pipeline.py │ │ ├── gpu_distributor.py │ │ ├── image_processing_worker.py │ │ ├── matching.py │ │ ├── metrics_calculator.py │ │ └── results_aggregator.py │ ├── inference │ │ ├── __init__.py │ │ ├── export_inference.py │ │ ├── inference_csv_builder.py │ │ └── inference_processors.py │ ├── mask_building │ │ ├── __init__.py │ │ └── mask_builder.py │ ├── parallel_processing │ │ ├── __init__.py │ │ └── process_executor.py │ ├── polygonization │ │ ├── __init__.py │ │ ├── methods │ │ │ ├── __init__.py │ │ │ ├── active_contours.py │ │ │ ├── active_skeletons.py │ │ │ ├── polygon_rnn_polygonization.py │ │ │ └── simple.py │ │ ├── polygonize_utils.py │ │ ├── polygonizer.py │ │ └── skeletonize_tensor_tools.py │ └── visualization │ │ ├── __init__.py │ │ ├── base_plot_tools.py │ │ ├── comparison_plots.py │ │ ├── confusion_matrix_plots.py │ │ └── crossfield_plot.py ├── train.py ├── utils │ ├── __init__.py │ ├── complex_utils.py │ ├── frame_field_utils.py │ ├── image_cross_display.png │ ├── image_seg_display.png │ ├── math_utils.py │ ├── model_utils.py │ ├── object_detection_utils.py │ ├── os_utils.py │ ├── polygon_utils.py │ ├── polygonrnn_utils.py │ └── tensor_utils.py └── validate_evaluation_config.py ├── requirements.txt ├── setup.py └── tests ├── __init__.py ├── test_base_plot_tools.py ├── test_box_handler.py ├── test_build_mask.py ├── test_configs ├── __init__.py ├── augmentations.yaml ├── build_coco_mask.yaml ├── build_mask.yaml ├── build_mask_postgis.yaml ├── config.yaml ├── convert_dataset.yaml ├── dataset.yaml ├── experiment.yaml ├── experiment_frame_field.yaml ├── experiment_frame_field_custom_model.yaml ├── experiment_frame_field_with_callback.yaml ├── experiment_instance_segmentation.yaml ├── experiment_mod_polymapper.yaml ├── experiment_mod_polymapper_with_callback.yaml ├── experiment_naive_mod_polymapper.yaml ├── experiment_object_detection.yaml ├── experiment_object_detection_with_callback.yaml ├── experiment_optimizer_gradient_centralization.yaml ├── experiment_polygonrnn.yaml ├── experiment_polygonrnn_with_callback.yaml ├── experiment_warmup.yaml ├── experiment_warmup_and_img_callback.yaml ├── frame_field_dataset.yaml ├── frame_field_dataset_with_center_crop.yaml ├── frame_field_for_inference.yaml ├── frame_field_model.yaml ├── frame_field_pl_model.yaml ├── instance_segmentation_model.yaml ├── metrics.yaml ├── metrics_torchmetrics.yaml ├── model.yaml ├── naive_mod_polymapper_model.yaml ├── object_detection_model.yaml ├── predict.yaml └── train_config_used_in_predict_test.yaml ├── test_convert_dataset.py ├── test_custom_models.py ├── test_data_writer.py ├── test_dataset.py ├── test_detection_model.py ├── test_evaluate_data.py ├── test_evaluation_pipeline.py ├── test_frame_field_model.py ├── test_gradient_centralization.py ├── test_inference.py ├── test_inference_service.py ├── test_matching.py ├── test_math_utils.py ├── test_metrics.py ├── test_mod_polygonrnn.py ├── test_model.py ├── test_naive_mod_polygonrnn.py ├── test_optimizers.py ├── test_polygonizer.py ├── test_polygonrnn_model.py ├── test_polygonrnn_utils.py ├── test_predict.py ├── test_process_executor.py ├── test_raster_reader.py ├── test_script.py ├── test_skeletonize_tensor_tools.py ├── test_tensor_utils.py ├── test_train.py ├── test_vector_reader.py ├── test_visualization.py ├── testing_data ├── data │ ├── build_masks_data │ │ ├── annotation.json │ │ ├── aux_script.py │ │ ├── buildings.geojson │ │ ├── coco_images │ │ │ ├── 000000160847.jpg │ │ │ └── 000000232566.jpg │ │ ├── dsg_dataset_only_polygon_masks.csv │ │ ├── dsg_dataset_other_masks.csv │ │ ├── images │ │ │ └── Ortoimagem_MI_2970-1-SO │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1033.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1036.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1039.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1045.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_966.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_967.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_970.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_973.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_995.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_996.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_997.tif │ │ │ │ └── Ortoimagem_MI_2970-1-SO_998.tif │ │ └── selected_tiles.csv │ ├── detection_data │ │ └── geo │ │ │ ├── boundary_masks │ │ │ └── Ortoimagem_MI_2970-1-SO │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1033.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1036.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1039.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1045.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_966.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_967.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_970.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_973.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_995.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_996.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_997.tif │ │ │ │ └── Ortoimagem_MI_2970-1-SO_998.tif │ │ │ ├── bounding_boxes │ │ │ └── Ortoimagem_MI_2970-1-SO │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1033.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1036.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1039.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1045.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_966.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_967.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_970.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_973.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_995.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_996.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_997.json │ │ │ │ └── Ortoimagem_MI_2970-1-SO_998.json │ │ │ ├── dsg_dataset.csv │ │ │ ├── dsg_dataset_with_polygons.csv │ │ │ ├── images │ │ │ └── Ortoimagem_MI_2970-1-SO │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1033.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1036.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1039.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1045.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_966.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_967.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_970.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_973.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_995.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_996.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_997.tif │ │ │ │ └── Ortoimagem_MI_2970-1-SO_998.tif │ │ │ ├── polygon_lists │ │ │ └── Ortoimagem_MI_2970-1-SO │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1033.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1036.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1039.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1045.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_966.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_967.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_970.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_973.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_995.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_996.json │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_997.json │ │ │ │ └── Ortoimagem_MI_2970-1-SO_998.json │ │ │ └── polygon_masks │ │ │ └── Ortoimagem_MI_2970-1-SO │ │ │ ├── Ortoimagem_MI_2970-1-SO_1033.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1036.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1039.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1045.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_966.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_967.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_970.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_973.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_995.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_996.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_997.tif │ │ │ └── Ortoimagem_MI_2970-1-SO_998.tif │ ├── frame_field_data │ │ ├── boundary_masks │ │ │ ├── Ortoimagem_MI_2970-1-SO_1033.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1036.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1039.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1045.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_966.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_967.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_970.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_973.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_995.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_996.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_997.tif │ │ │ └── Ortoimagem_MI_2970-1-SO_998.tif │ │ ├── crossfield_masks │ │ │ ├── Ortoimagem_MI_2970-1-SO_1033.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1036.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1039.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1045.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_966.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_967.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_970.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_973.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_995.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_996.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_997.tif │ │ │ └── Ortoimagem_MI_2970-1-SO_998.tif │ │ ├── distance_masks │ │ │ ├── Ortoimagem_MI_2970-1-SO_1033.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1036.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1039.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1045.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_966.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_967.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_970.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_973.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_995.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_996.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_997.tif │ │ │ └── Ortoimagem_MI_2970-1-SO_998.tif │ │ ├── dsg_dataset.csv │ │ ├── images │ │ │ └── Ortoimagem_MI_2970-1-SO │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1033.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1036.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1039.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1045.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_966.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_967.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_970.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_973.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_995.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_996.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_997.tif │ │ │ │ └── Ortoimagem_MI_2970-1-SO_998.tif │ │ ├── polygon_masks │ │ │ ├── Ortoimagem_MI_2970-1-SO_1033.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1036.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1039.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1045.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_966.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_967.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_970.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_973.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_995.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_996.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_997.tif │ │ │ └── Ortoimagem_MI_2970-1-SO_998.tif │ │ ├── size_masks │ │ │ ├── Ortoimagem_MI_2970-1-SO_1033.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1036.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1039.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1045.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_966.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_967.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_970.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_973.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_995.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_996.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_997.tif │ │ │ └── Ortoimagem_MI_2970-1-SO_998.tif │ │ └── vertex_masks │ │ │ ├── Ortoimagem_MI_2970-1-SO_1033.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1036.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1039.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_1045.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_966.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_967.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_970.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_973.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_995.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_996.tif │ │ │ ├── Ortoimagem_MI_2970-1-SO_997.tif │ │ │ └── Ortoimagem_MI_2970-1-SO_998.tif │ ├── images │ │ ├── image1.png │ │ ├── image10.png │ │ ├── image10.png.aux.xml │ │ ├── image2.png │ │ ├── image3.png │ │ ├── image4.png │ │ ├── image5.png │ │ ├── image6.png │ │ ├── image7.png │ │ ├── image8.png │ │ └── image9.png │ ├── labels │ │ ├── label1.png │ │ ├── label10.png │ │ ├── label10.png.aux.xml │ │ ├── label2.png │ │ ├── label3.png │ │ ├── label4.png │ │ ├── label5.png │ │ ├── label6.png │ │ ├── label7.png │ │ ├── label8.png │ │ └── label9.png │ ├── matching_data │ │ ├── candidate_polygons.geojson │ │ ├── expected_reference_matches.geojson │ │ └── reference_polygons.geojson │ ├── polygon_rnn_data │ │ ├── images │ │ │ └── Ortoimagem_MI_2970-1-SO │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1033.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1036.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1039.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_1045.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_966.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_967.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_970.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_973.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_995.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_996.tif │ │ │ │ ├── Ortoimagem_MI_2970-1-SO_997.tif │ │ │ │ └── Ortoimagem_MI_2970-1-SO_998.tif │ │ ├── images_croped │ │ │ ├── Ortoimagem_MI_2970-1-SO_1033 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 3.png │ │ │ │ ├── 30.png │ │ │ │ ├── 31.png │ │ │ │ ├── 32.png │ │ │ │ ├── 33.png │ │ │ │ ├── 34.png │ │ │ │ ├── 35.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ ├── Ortoimagem_MI_2970-1-SO_1036 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ │ ├── Ortoimagem_MI_2970-1-SO_1039 │ │ │ │ ├── 0.png │ │ │ │ └── 1.png │ │ │ ├── Ortoimagem_MI_2970-1-SO_1045 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 3.png │ │ │ │ ├── 30.png │ │ │ │ ├── 31.png │ │ │ │ ├── 32.png │ │ │ │ ├── 33.png │ │ │ │ ├── 34.png │ │ │ │ ├── 35.png │ │ │ │ ├── 36.png │ │ │ │ ├── 37.png │ │ │ │ ├── 38.png │ │ │ │ ├── 39.png │ │ │ │ ├── 4.png │ │ │ │ ├── 40.png │ │ │ │ ├── 41.png │ │ │ │ ├── 42.png │ │ │ │ ├── 43.png │ │ │ │ ├── 44.png │ │ │ │ ├── 45.png │ │ │ │ ├── 46.png │ │ │ │ ├── 47.png │ │ │ │ ├── 48.png │ │ │ │ ├── 49.png │ │ │ │ ├── 5.png │ │ │ │ ├── 50.png │ │ │ │ ├── 51.png │ │ │ │ ├── 52.png │ │ │ │ ├── 53.png │ │ │ │ ├── 54.png │ │ │ │ ├── 55.png │ │ │ │ ├── 56.png │ │ │ │ ├── 57.png │ │ │ │ ├── 58.png │ │ │ │ ├── 59.png │ │ │ │ ├── 6.png │ │ │ │ ├── 60.png │ │ │ │ ├── 61.png │ │ │ │ ├── 62.png │ │ │ │ ├── 63.png │ │ │ │ ├── 64.png │ │ │ │ ├── 65.png │ │ │ │ ├── 66.png │ │ │ │ ├── 67.png │ │ │ │ ├── 68.png │ │ │ │ ├── 69.png │ │ │ │ ├── 7.png │ │ │ │ ├── 70.png │ │ │ │ ├── 71.png │ │ │ │ ├── 72.png │ │ │ │ ├── 73.png │ │ │ │ ├── 74.png │ │ │ │ ├── 75.png │ │ │ │ ├── 76.png │ │ │ │ ├── 77.png │ │ │ │ ├── 78.png │ │ │ │ ├── 79.png │ │ │ │ ├── 8.png │ │ │ │ ├── 80.png │ │ │ │ ├── 81.png │ │ │ │ ├── 82.png │ │ │ │ ├── 83.png │ │ │ │ ├── 84.png │ │ │ │ ├── 85.png │ │ │ │ ├── 86.png │ │ │ │ ├── 87.png │ │ │ │ ├── 88.png │ │ │ │ ├── 89.png │ │ │ │ └── 9.png │ │ │ ├── Ortoimagem_MI_2970-1-SO_966 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 3.png │ │ │ │ ├── 30.png │ │ │ │ ├── 31.png │ │ │ │ ├── 32.png │ │ │ │ ├── 33.png │ │ │ │ ├── 34.png │ │ │ │ ├── 35.png │ │ │ │ ├── 36.png │ │ │ │ ├── 37.png │ │ │ │ ├── 38.png │ │ │ │ ├── 39.png │ │ │ │ ├── 4.png │ │ │ │ ├── 40.png │ │ │ │ ├── 41.png │ │ │ │ ├── 42.png │ │ │ │ ├── 43.png │ │ │ │ ├── 44.png │ │ │ │ ├── 45.png │ │ │ │ ├── 46.png │ │ │ │ ├── 47.png │ │ │ │ ├── 48.png │ │ │ │ ├── 49.png │ │ │ │ ├── 5.png │ │ │ │ ├── 50.png │ │ │ │ ├── 51.png │ │ │ │ ├── 52.png │ │ │ │ ├── 53.png │ │ │ │ ├── 54.png │ │ │ │ ├── 55.png │ │ │ │ ├── 56.png │ │ │ │ ├── 57.png │ │ │ │ ├── 58.png │ │ │ │ ├── 59.png │ │ │ │ ├── 6.png │ │ │ │ ├── 60.png │ │ │ │ ├── 61.png │ │ │ │ ├── 62.png │ │ │ │ ├── 63.png │ │ │ │ ├── 64.png │ │ │ │ ├── 65.png │ │ │ │ ├── 66.png │ │ │ │ ├── 67.png │ │ │ │ ├── 68.png │ │ │ │ ├── 69.png │ │ │ │ ├── 7.png │ │ │ │ ├── 70.png │ │ │ │ ├── 71.png │ │ │ │ ├── 72.png │ │ │ │ ├── 73.png │ │ │ │ ├── 74.png │ │ │ │ ├── 75.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ ├── Ortoimagem_MI_2970-1-SO_967 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 3.png │ │ │ │ ├── 30.png │ │ │ │ ├── 31.png │ │ │ │ ├── 32.png │ │ │ │ ├── 33.png │ │ │ │ ├── 34.png │ │ │ │ ├── 35.png │ │ │ │ ├── 36.png │ │ │ │ ├── 37.png │ │ │ │ ├── 38.png │ │ │ │ ├── 39.png │ │ │ │ ├── 4.png │ │ │ │ ├── 40.png │ │ │ │ ├── 41.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ ├── Ortoimagem_MI_2970-1-SO_970 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ ├── Ortoimagem_MI_2970-1-SO_973 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 3.png │ │ │ │ ├── 30.png │ │ │ │ ├── 31.png │ │ │ │ ├── 32.png │ │ │ │ ├── 33.png │ │ │ │ ├── 34.png │ │ │ │ ├── 35.png │ │ │ │ ├── 36.png │ │ │ │ ├── 37.png │ │ │ │ ├── 38.png │ │ │ │ ├── 39.png │ │ │ │ ├── 4.png │ │ │ │ ├── 40.png │ │ │ │ ├── 41.png │ │ │ │ ├── 42.png │ │ │ │ ├── 43.png │ │ │ │ ├── 44.png │ │ │ │ ├── 45.png │ │ │ │ ├── 46.png │ │ │ │ ├── 47.png │ │ │ │ ├── 48.png │ │ │ │ ├── 49.png │ │ │ │ ├── 5.png │ │ │ │ ├── 50.png │ │ │ │ ├── 51.png │ │ │ │ ├── 52.png │ │ │ │ ├── 53.png │ │ │ │ ├── 54.png │ │ │ │ ├── 55.png │ │ │ │ ├── 56.png │ │ │ │ ├── 57.png │ │ │ │ ├── 58.png │ │ │ │ ├── 59.png │ │ │ │ ├── 6.png │ │ │ │ ├── 60.png │ │ │ │ ├── 61.png │ │ │ │ ├── 62.png │ │ │ │ ├── 63.png │ │ │ │ ├── 64.png │ │ │ │ ├── 65.png │ │ │ │ ├── 66.png │ │ │ │ ├── 67.png │ │ │ │ ├── 68.png │ │ │ │ ├── 69.png │ │ │ │ ├── 7.png │ │ │ │ ├── 70.png │ │ │ │ ├── 71.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ ├── Ortoimagem_MI_2970-1-SO_995 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ ├── 4.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ └── 7.png │ │ │ ├── Ortoimagem_MI_2970-1-SO_996 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 3.png │ │ │ │ ├── 30.png │ │ │ │ ├── 31.png │ │ │ │ ├── 32.png │ │ │ │ ├── 33.png │ │ │ │ ├── 34.png │ │ │ │ ├── 35.png │ │ │ │ ├── 36.png │ │ │ │ ├── 37.png │ │ │ │ ├── 38.png │ │ │ │ ├── 39.png │ │ │ │ ├── 4.png │ │ │ │ ├── 40.png │ │ │ │ ├── 41.png │ │ │ │ ├── 42.png │ │ │ │ ├── 43.png │ │ │ │ ├── 5.png │ │ │ │ ├── 6.png │ │ │ │ ├── 7.png │ │ │ │ ├── 8.png │ │ │ │ └── 9.png │ │ │ ├── Ortoimagem_MI_2970-1-SO_997 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 3.png │ │ │ │ ├── 30.png │ │ │ │ ├── 31.png │ │ │ │ ├── 32.png │ │ │ │ ├── 33.png │ │ │ │ ├── 34.png │ │ │ │ ├── 35.png │ │ │ │ ├── 36.png │ │ │ │ ├── 37.png │ │ │ │ ├── 38.png │ │ │ │ ├── 39.png │ │ │ │ ├── 4.png │ │ │ │ ├── 40.png │ │ │ │ ├── 41.png │ │ │ │ ├── 42.png │ │ │ │ ├── 43.png │ │ │ │ ├── 44.png │ │ │ │ ├── 45.png │ │ │ │ ├── 46.png │ │ │ │ ├── 47.png │ │ │ │ ├── 48.png │ │ │ │ ├── 49.png │ │ │ │ ├── 5.png │ │ │ │ ├── 50.png │ │ │ │ ├── 51.png │ │ │ │ ├── 52.png │ │ │ │ ├── 53.png │ │ │ │ ├── 54.png │ │ │ │ ├── 55.png │ │ │ │ ├── 56.png │ │ │ │ ├── 57.png │ │ │ │ ├── 58.png │ │ │ │ ├── 59.png │ │ │ │ ├── 6.png │ │ │ │ ├── 60.png │ │ │ │ ├── 61.png │ │ │ │ ├── 62.png │ │ │ │ ├── 63.png │ │ │ │ ├── 64.png │ │ │ │ ├── 65.png │ │ │ │ ├── 66.png │ │ │ │ ├── 67.png │ │ │ │ ├── 68.png │ │ │ │ ├── 69.png │ │ │ │ ├── 7.png │ │ │ │ ├── 70.png │ │ │ │ ├── 71.png │ │ │ │ ├── 72.png │ │ │ │ ├── 73.png │ │ │ │ ├── 74.png │ │ │ │ ├── 75.png │ │ │ │ ├── 76.png │ │ │ │ ├── 77.png │ │ │ │ ├── 78.png │ │ │ │ ├── 79.png │ │ │ │ ├── 8.png │ │ │ │ ├── 80.png │ │ │ │ ├── 81.png │ │ │ │ ├── 82.png │ │ │ │ ├── 83.png │ │ │ │ ├── 84.png │ │ │ │ ├── 85.png │ │ │ │ ├── 86.png │ │ │ │ ├── 87.png │ │ │ │ ├── 88.png │ │ │ │ ├── 89.png │ │ │ │ ├── 9.png │ │ │ │ ├── 90.png │ │ │ │ ├── 91.png │ │ │ │ ├── 92.png │ │ │ │ ├── 93.png │ │ │ │ ├── 94.png │ │ │ │ ├── 95.png │ │ │ │ ├── 96.png │ │ │ │ ├── 97.png │ │ │ │ └── 98.png │ │ │ └── Ortoimagem_MI_2970-1-SO_998 │ │ │ │ ├── 0.png │ │ │ │ ├── 1.png │ │ │ │ ├── 10.png │ │ │ │ ├── 11.png │ │ │ │ ├── 12.png │ │ │ │ ├── 13.png │ │ │ │ ├── 14.png │ │ │ │ ├── 15.png │ │ │ │ ├── 16.png │ │ │ │ ├── 17.png │ │ │ │ ├── 18.png │ │ │ │ ├── 19.png │ │ │ │ ├── 2.png │ │ │ │ ├── 20.png │ │ │ │ ├── 21.png │ │ │ │ ├── 22.png │ │ │ │ ├── 23.png │ │ │ │ ├── 24.png │ │ │ │ ├── 25.png │ │ │ │ ├── 26.png │ │ │ │ ├── 27.png │ │ │ │ ├── 28.png │ │ │ │ ├── 29.png │ │ │ │ ├── 3.png │ │ │ │ ├── 30.png │ │ │ │ ├── 31.png │ │ │ │ ├── 32.png │ │ │ │ ├── 33.png │ │ │ │ ├── 34.png │ │ │ │ ├── 35.png │ │ │ │ ├── 36.png │ │ │ │ ├── 37.png │ │ │ │ ├── 38.png │ │ │ │ ├── 39.png │ │ │ │ ├── 4.png │ │ │ │ ├── 40.png │ │ │ │ ├── 41.png │ │ │ │ ├── 42.png │ │ │ │ ├── 43.png │ │ │ │ ├── 44.png │ │ │ │ ├── 45.png │ │ │ │ ├── 46.png │ │ │ │ ├── 47.png │ │ │ │ ├── 48.png │ │ │ │ ├── 49.png │ │ │ │ ├── 5.png │ │ │ │ ├── 50.png │ │ │ │ ├── 51.png │ │ │ │ ├── 52.png │ │ │ │ ├── 53.png │ │ │ │ ├── 54.png │ │ │ │ ├── 55.png │ │ │ │ ├── 56.png │ │ │ │ ├── 57.png │ │ │ │ ├── 58.png │ │ │ │ ├── 59.png │ │ │ │ ├── 6.png │ │ │ │ ├── 60.png │ │ │ │ ├── 61.png │ │ │ │ ├── 62.png │ │ │ │ ├── 63.png │ │ │ │ ├── 64.png │ │ │ │ ├── 65.png │ │ │ │ ├── 66.png │ │ │ │ ├── 67.png │ │ │ │ ├── 68.png │ │ │ │ ├── 69.png │ │ │ │ ├── 7.png │ │ │ │ ├── 70.png │ │ │ │ ├── 71.png │ │ │ │ ├── 72.png │ │ │ │ ├── 73.png │ │ │ │ ├── 74.png │ │ │ │ ├── 75.png │ │ │ │ ├── 76.png │ │ │ │ ├── 77.png │ │ │ │ ├── 78.png │ │ │ │ ├── 79.png │ │ │ │ ├── 8.png │ │ │ │ ├── 80.png │ │ │ │ ├── 81.png │ │ │ │ ├── 82.png │ │ │ │ ├── 83.png │ │ │ │ ├── 84.png │ │ │ │ ├── 85.png │ │ │ │ ├── 86.png │ │ │ │ ├── 87.png │ │ │ │ ├── 88.png │ │ │ │ ├── 89.png │ │ │ │ ├── 9.png │ │ │ │ ├── 90.png │ │ │ │ ├── 91.png │ │ │ │ ├── 92.png │ │ │ │ ├── 93.png │ │ │ │ ├── 94.png │ │ │ │ ├── 95.png │ │ │ │ └── 96.png │ │ ├── polygonrnn_dataset.csv │ │ └── polygons_croped │ │ │ ├── Ortoimagem_MI_2970-1-SO_1033 │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 17.json │ │ │ ├── 18.json │ │ │ ├── 19.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ ├── 21.json │ │ │ ├── 22.json │ │ │ ├── 23.json │ │ │ ├── 24.json │ │ │ ├── 25.json │ │ │ ├── 26.json │ │ │ ├── 27.json │ │ │ ├── 28.json │ │ │ ├── 29.json │ │ │ ├── 3.json │ │ │ ├── 30.json │ │ │ ├── 31.json │ │ │ ├── 32.json │ │ │ ├── 33.json │ │ │ ├── 34.json │ │ │ ├── 35.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ │ ├── Ortoimagem_MI_2970-1-SO_1036 │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ └── 3.json │ │ │ ├── Ortoimagem_MI_2970-1-SO_1039 │ │ │ ├── 0.json │ │ │ └── 1.json │ │ │ ├── Ortoimagem_MI_2970-1-SO_1045 │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 17.json │ │ │ ├── 18.json │ │ │ ├── 19.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ ├── 21.json │ │ │ ├── 22.json │ │ │ ├── 23.json │ │ │ ├── 24.json │ │ │ ├── 25.json │ │ │ ├── 26.json │ │ │ ├── 27.json │ │ │ ├── 28.json │ │ │ ├── 29.json │ │ │ ├── 3.json │ │ │ ├── 30.json │ │ │ ├── 31.json │ │ │ ├── 32.json │ │ │ ├── 33.json │ │ │ ├── 34.json │ │ │ ├── 35.json │ │ │ ├── 36.json │ │ │ ├── 37.json │ │ │ ├── 38.json │ │ │ ├── 39.json │ │ │ ├── 4.json │ │ │ ├── 40.json │ │ │ ├── 41.json │ │ │ ├── 42.json │ │ │ ├── 43.json │ │ │ ├── 44.json │ │ │ ├── 45.json │ │ │ ├── 46.json │ │ │ ├── 47.json │ │ │ ├── 48.json │ │ │ ├── 49.json │ │ │ ├── 5.json │ │ │ ├── 50.json │ │ │ ├── 51.json │ │ │ ├── 52.json │ │ │ ├── 53.json │ │ │ ├── 54.json │ │ │ ├── 55.json │ │ │ ├── 56.json │ │ │ ├── 57.json │ │ │ ├── 58.json │ │ │ ├── 59.json │ │ │ ├── 6.json │ │ │ ├── 60.json │ │ │ ├── 61.json │ │ │ ├── 62.json │ │ │ ├── 63.json │ │ │ ├── 64.json │ │ │ ├── 65.json │ │ │ ├── 66.json │ │ │ ├── 67.json │ │ │ ├── 68.json │ │ │ ├── 69.json │ │ │ ├── 7.json │ │ │ ├── 70.json │ │ │ ├── 71.json │ │ │ ├── 72.json │ │ │ ├── 73.json │ │ │ ├── 74.json │ │ │ ├── 75.json │ │ │ ├── 76.json │ │ │ ├── 77.json │ │ │ ├── 78.json │ │ │ ├── 79.json │ │ │ ├── 8.json │ │ │ ├── 80.json │ │ │ ├── 81.json │ │ │ ├── 82.json │ │ │ ├── 83.json │ │ │ ├── 84.json │ │ │ ├── 85.json │ │ │ ├── 86.json │ │ │ ├── 87.json │ │ │ ├── 88.json │ │ │ ├── 89.json │ │ │ └── 9.json │ │ │ ├── Ortoimagem_MI_2970-1-SO_966 │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 17.json │ │ │ ├── 18.json │ │ │ ├── 19.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ ├── 21.json │ │ │ ├── 22.json │ │ │ ├── 23.json │ │ │ ├── 24.json │ │ │ ├── 25.json │ │ │ ├── 26.json │ │ │ ├── 27.json │ │ │ ├── 28.json │ │ │ ├── 29.json │ │ │ ├── 3.json │ │ │ ├── 30.json │ │ │ ├── 31.json │ │ │ ├── 32.json │ │ │ ├── 33.json │ │ │ ├── 34.json │ │ │ ├── 35.json │ │ │ ├── 36.json │ │ │ ├── 37.json │ │ │ ├── 38.json │ │ │ ├── 39.json │ │ │ ├── 4.json │ │ │ ├── 40.json │ │ │ ├── 41.json │ │ │ ├── 42.json │ │ │ ├── 43.json │ │ │ ├── 44.json │ │ │ ├── 45.json │ │ │ ├── 46.json │ │ │ ├── 47.json │ │ │ ├── 48.json │ │ │ ├── 49.json │ │ │ ├── 5.json │ │ │ ├── 50.json │ │ │ ├── 51.json │ │ │ ├── 52.json │ │ │ ├── 53.json │ │ │ ├── 54.json │ │ │ ├── 55.json │ │ │ ├── 56.json │ │ │ ├── 57.json │ │ │ ├── 58.json │ │ │ ├── 59.json │ │ │ ├── 6.json │ │ │ ├── 60.json │ │ │ ├── 61.json │ │ │ ├── 62.json │ │ │ ├── 63.json │ │ │ ├── 64.json │ │ │ ├── 65.json │ │ │ ├── 66.json │ │ │ ├── 67.json │ │ │ ├── 68.json │ │ │ ├── 69.json │ │ │ ├── 7.json │ │ │ ├── 70.json │ │ │ ├── 71.json │ │ │ ├── 72.json │ │ │ ├── 73.json │ │ │ ├── 74.json │ │ │ ├── 75.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ │ ├── Ortoimagem_MI_2970-1-SO_967 │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 17.json │ │ │ ├── 18.json │ │ │ ├── 19.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ ├── 21.json │ │ │ ├── 22.json │ │ │ ├── 23.json │ │ │ ├── 24.json │ │ │ ├── 25.json │ │ │ ├── 26.json │ │ │ ├── 27.json │ │ │ ├── 28.json │ │ │ ├── 29.json │ │ │ ├── 3.json │ │ │ ├── 30.json │ │ │ ├── 31.json │ │ │ ├── 32.json │ │ │ ├── 33.json │ │ │ ├── 34.json │ │ │ ├── 35.json │ │ │ ├── 36.json │ │ │ ├── 37.json │ │ │ ├── 38.json │ │ │ ├── 39.json │ │ │ ├── 4.json │ │ │ ├── 40.json │ │ │ ├── 41.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ │ ├── Ortoimagem_MI_2970-1-SO_970 │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ │ ├── Ortoimagem_MI_2970-1-SO_973 │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 17.json │ │ │ ├── 18.json │ │ │ ├── 19.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ ├── 21.json │ │ │ ├── 22.json │ │ │ ├── 23.json │ │ │ ├── 24.json │ │ │ ├── 25.json │ │ │ ├── 26.json │ │ │ ├── 27.json │ │ │ ├── 28.json │ │ │ ├── 29.json │ │ │ ├── 3.json │ │ │ ├── 30.json │ │ │ ├── 31.json │ │ │ ├── 32.json │ │ │ ├── 33.json │ │ │ ├── 34.json │ │ │ ├── 35.json │ │ │ ├── 36.json │ │ │ ├── 37.json │ │ │ ├── 38.json │ │ │ ├── 39.json │ │ │ ├── 4.json │ │ │ ├── 40.json │ │ │ ├── 41.json │ │ │ ├── 42.json │ │ │ ├── 43.json │ │ │ ├── 44.json │ │ │ ├── 45.json │ │ │ ├── 46.json │ │ │ ├── 47.json │ │ │ ├── 48.json │ │ │ ├── 49.json │ │ │ ├── 5.json │ │ │ ├── 50.json │ │ │ ├── 51.json │ │ │ ├── 52.json │ │ │ ├── 53.json │ │ │ ├── 54.json │ │ │ ├── 55.json │ │ │ ├── 56.json │ │ │ ├── 57.json │ │ │ ├── 58.json │ │ │ ├── 59.json │ │ │ ├── 6.json │ │ │ ├── 60.json │ │ │ ├── 61.json │ │ │ ├── 62.json │ │ │ ├── 63.json │ │ │ ├── 64.json │ │ │ ├── 65.json │ │ │ ├── 66.json │ │ │ ├── 67.json │ │ │ ├── 68.json │ │ │ ├── 69.json │ │ │ ├── 7.json │ │ │ ├── 70.json │ │ │ ├── 71.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ │ ├── Ortoimagem_MI_2970-1-SO_995 │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ └── 7.json │ │ │ ├── Ortoimagem_MI_2970-1-SO_996 │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 17.json │ │ │ ├── 18.json │ │ │ ├── 19.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ ├── 21.json │ │ │ ├── 22.json │ │ │ ├── 23.json │ │ │ ├── 24.json │ │ │ ├── 25.json │ │ │ ├── 26.json │ │ │ ├── 27.json │ │ │ ├── 28.json │ │ │ ├── 29.json │ │ │ ├── 3.json │ │ │ ├── 30.json │ │ │ ├── 31.json │ │ │ ├── 32.json │ │ │ ├── 33.json │ │ │ ├── 34.json │ │ │ ├── 35.json │ │ │ ├── 36.json │ │ │ ├── 37.json │ │ │ ├── 38.json │ │ │ ├── 39.json │ │ │ ├── 4.json │ │ │ ├── 40.json │ │ │ ├── 41.json │ │ │ ├── 42.json │ │ │ ├── 43.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ └── 9.json │ │ │ ├── Ortoimagem_MI_2970-1-SO_997 │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 17.json │ │ │ ├── 18.json │ │ │ ├── 19.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ ├── 21.json │ │ │ ├── 22.json │ │ │ ├── 23.json │ │ │ ├── 24.json │ │ │ ├── 25.json │ │ │ ├── 26.json │ │ │ ├── 27.json │ │ │ ├── 28.json │ │ │ ├── 29.json │ │ │ ├── 3.json │ │ │ ├── 30.json │ │ │ ├── 31.json │ │ │ ├── 32.json │ │ │ ├── 33.json │ │ │ ├── 34.json │ │ │ ├── 35.json │ │ │ ├── 36.json │ │ │ ├── 37.json │ │ │ ├── 38.json │ │ │ ├── 39.json │ │ │ ├── 4.json │ │ │ ├── 40.json │ │ │ ├── 41.json │ │ │ ├── 42.json │ │ │ ├── 43.json │ │ │ ├── 44.json │ │ │ ├── 45.json │ │ │ ├── 46.json │ │ │ ├── 47.json │ │ │ ├── 48.json │ │ │ ├── 49.json │ │ │ ├── 5.json │ │ │ ├── 50.json │ │ │ ├── 51.json │ │ │ ├── 52.json │ │ │ ├── 53.json │ │ │ ├── 54.json │ │ │ ├── 55.json │ │ │ ├── 56.json │ │ │ ├── 57.json │ │ │ ├── 58.json │ │ │ ├── 59.json │ │ │ ├── 6.json │ │ │ ├── 60.json │ │ │ ├── 61.json │ │ │ ├── 62.json │ │ │ ├── 63.json │ │ │ ├── 64.json │ │ │ ├── 65.json │ │ │ ├── 66.json │ │ │ ├── 67.json │ │ │ ├── 68.json │ │ │ ├── 69.json │ │ │ ├── 7.json │ │ │ ├── 70.json │ │ │ ├── 71.json │ │ │ ├── 72.json │ │ │ ├── 73.json │ │ │ ├── 74.json │ │ │ ├── 75.json │ │ │ ├── 76.json │ │ │ ├── 77.json │ │ │ ├── 78.json │ │ │ ├── 79.json │ │ │ ├── 8.json │ │ │ ├── 80.json │ │ │ ├── 81.json │ │ │ ├── 82.json │ │ │ ├── 83.json │ │ │ ├── 84.json │ │ │ ├── 85.json │ │ │ ├── 86.json │ │ │ ├── 87.json │ │ │ ├── 88.json │ │ │ ├── 89.json │ │ │ ├── 9.json │ │ │ ├── 90.json │ │ │ ├── 91.json │ │ │ ├── 92.json │ │ │ ├── 93.json │ │ │ ├── 94.json │ │ │ ├── 95.json │ │ │ ├── 96.json │ │ │ ├── 97.json │ │ │ └── 98.json │ │ │ └── Ortoimagem_MI_2970-1-SO_998 │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 10.json │ │ │ ├── 11.json │ │ │ ├── 12.json │ │ │ ├── 13.json │ │ │ ├── 14.json │ │ │ ├── 15.json │ │ │ ├── 16.json │ │ │ ├── 17.json │ │ │ ├── 18.json │ │ │ ├── 19.json │ │ │ ├── 2.json │ │ │ ├── 20.json │ │ │ ├── 21.json │ │ │ ├── 22.json │ │ │ ├── 23.json │ │ │ ├── 24.json │ │ │ ├── 25.json │ │ │ ├── 26.json │ │ │ ├── 27.json │ │ │ ├── 28.json │ │ │ ├── 29.json │ │ │ ├── 3.json │ │ │ ├── 30.json │ │ │ ├── 31.json │ │ │ ├── 32.json │ │ │ ├── 33.json │ │ │ ├── 34.json │ │ │ ├── 35.json │ │ │ ├── 36.json │ │ │ ├── 37.json │ │ │ ├── 38.json │ │ │ ├── 39.json │ │ │ ├── 4.json │ │ │ ├── 40.json │ │ │ ├── 41.json │ │ │ ├── 42.json │ │ │ ├── 43.json │ │ │ ├── 44.json │ │ │ ├── 45.json │ │ │ ├── 46.json │ │ │ ├── 47.json │ │ │ ├── 48.json │ │ │ ├── 49.json │ │ │ ├── 5.json │ │ │ ├── 50.json │ │ │ ├── 51.json │ │ │ ├── 52.json │ │ │ ├── 53.json │ │ │ ├── 54.json │ │ │ ├── 55.json │ │ │ ├── 56.json │ │ │ ├── 57.json │ │ │ ├── 58.json │ │ │ ├── 59.json │ │ │ ├── 6.json │ │ │ ├── 60.json │ │ │ ├── 61.json │ │ │ ├── 62.json │ │ │ ├── 63.json │ │ │ ├── 64.json │ │ │ ├── 65.json │ │ │ ├── 66.json │ │ │ ├── 67.json │ │ │ ├── 68.json │ │ │ ├── 69.json │ │ │ ├── 7.json │ │ │ ├── 70.json │ │ │ ├── 71.json │ │ │ ├── 72.json │ │ │ ├── 73.json │ │ │ ├── 74.json │ │ │ ├── 75.json │ │ │ ├── 76.json │ │ │ ├── 77.json │ │ │ ├── 78.json │ │ │ ├── 79.json │ │ │ ├── 8.json │ │ │ ├── 80.json │ │ │ ├── 81.json │ │ │ ├── 82.json │ │ │ ├── 83.json │ │ │ ├── 84.json │ │ │ ├── 85.json │ │ │ ├── 86.json │ │ │ ├── 87.json │ │ │ ├── 88.json │ │ │ ├── 89.json │ │ │ ├── 9.json │ │ │ ├── 90.json │ │ │ ├── 91.json │ │ │ ├── 92.json │ │ │ ├── 93.json │ │ │ ├── 94.json │ │ │ ├── 95.json │ │ │ └── 96.json │ ├── rasterize_data │ │ ├── images │ │ │ ├── 10.png │ │ │ └── 10.png.aux.xml │ │ └── labels │ │ │ ├── 10_boundary_mask.png │ │ │ ├── 10_boundary_mask.png.aux.xml │ │ │ ├── 10_polygon_mask.png │ │ │ ├── 10_polygon_mask.png.aux.xml │ │ │ ├── 10_stacked_mask.png │ │ │ ├── 10_stacked_mask.png.aux.xml │ │ │ ├── 10_vertex_mask.png │ │ │ └── 10_vertex_mask.png.aux.xml │ └── vectors │ │ ├── test_polygons.geojson │ │ ├── test_polygons2.geojson │ │ └── test_tile_index_a.geojson └── expected_outputs │ ├── build_masks │ ├── coco_dataset.csv │ ├── dsg_dataset.csv │ ├── dsg_dataset_merged.csv │ ├── dsg_dataset_with_bboxes.csv │ └── dsg_dataset_with_polygons.csv │ ├── convert_dataset │ └── polygonrnn_dataset.csv │ ├── dataset │ └── coco_format.json │ ├── polygonize │ ├── acm_polygonizer.geojson │ ├── asm_polygonizer.geojson │ ├── output_poly_real_skeleton.geojson │ ├── output_poly_real_skeleton.png │ └── simple_polygonizer.geojson │ ├── raster_reader │ ├── image1.jpg │ ├── image1.jpg.aux.xml │ └── image1.tif │ ├── tensor_tools │ ├── output0.png │ ├── output1.png │ ├── test_output0.png │ └── test_output1.png │ ├── vector_reader │ ├── 160847.geojson │ ├── 232566.geojson │ ├── handle_features_line_output.geojson │ └── handle_features_point_output.geojson │ └── visualization │ ├── example_image_seg_display.png │ └── real_image_seg_display.png └── utils.py /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/.coveragerc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include pytorch_segmentation_models_trainer *.yml 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/__init__.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/api/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/docs/api/main.md -------------------------------------------------------------------------------- /docs/examples/basic-segmentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/docs/examples/basic-segmentation.md -------------------------------------------------------------------------------- /docs/getting-started/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/docs/getting-started/configuration.md -------------------------------------------------------------------------------- /docs/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/docs/getting-started/installation.md -------------------------------------------------------------------------------- /docs/getting-started/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/docs/getting-started/quickstart.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /mkdocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/mkdocs.yaml -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/__init__.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/build_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/build_mask.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/conf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/conf/config.yaml: -------------------------------------------------------------------------------- 1 | mode: train 2 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/config.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/config_definitions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/config_definitions/coco_dataset_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/config_definitions/coco_dataset_config.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/config_definitions/dataset_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/config_definitions/dataset_config.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/config_definitions/evaluation_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/config_definitions/evaluation_config.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/config_definitions/inference_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/config_definitions/inference_config.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/config_definitions/loss_config_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/config_definitions/loss_config_definition.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/config_definitions/predict_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/config_definitions/predict_config.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/config_definitions/tools_config_def.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/config_definitions/tools_config_def.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/config_definitions/train_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/config_definitions/train_config.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/config_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/config_utils.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/convert_ds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/convert_ds.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_callbacks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_callbacks/__init__.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_callbacks/image_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_callbacks/image_callbacks.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_callbacks/metrics_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_callbacks/metrics_callbacks.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_callbacks/training_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_callbacks/training_callbacks.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_losses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_losses/base_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_losses/base_loss.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_losses/crossfield_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_losses/crossfield_losses.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_losses/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_losses/loss.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_losses/loss_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_losses/loss_builder.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_metrics/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_metrics/metrics.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_models/hrnet_models/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_models/hrnet_models/LICENSE -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_models/hrnet_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_models/hrnet_models/bn_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_models/hrnet_models/bn_helper.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_models/hrnet_models/conf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_models/hrnet_models/conf/hrnet_18.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_models/hrnet_models/conf/hrnet_18.yml -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_models/hrnet_models/conf/hrnet_32.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_models/hrnet_models/conf/hrnet_32.yml -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_models/hrnet_models/conf/hrnet_48.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_models/hrnet_models/conf/hrnet_48.yml -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_models/hrnet_models/conf/hrnet_ocr_w48.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_models/hrnet_models/conf/hrnet_ocr_w48.yml -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_models/hrnet_models/seg_hrnet_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_models/hrnet_models/seg_hrnet_ocr.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_models/mod_polymapper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_models/mod_polymapper/modpolymapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_models/mod_polymapper/modpolymapper.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_models/models.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_models/rnn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_models/rnn/polygon_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_models/rnn/polygon_rnn.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_models/rnn/pretrained/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_models/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_models/unet.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_models/unet_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_models/unet_resnet.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/custom_models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/custom_models/utils.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/dataset_loader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/dataset_loader/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/dataset_loader/dataset.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/evaluate_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/evaluate_experiments.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/main.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/model_loader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/model_loader/detection_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/model_loader/detection_model.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/model_loader/frame_field_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/model_loader/frame_field_model.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/model_loader/mod_polymapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/model_loader/mod_polymapper.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/model_loader/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/model_loader/model.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/model_loader/polygon_rnn_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/model_loader/polygon_rnn_model.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/optimizers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/optimizers/gradient_centralization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/optimizers/gradient_centralization.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/optimizers/poly_optimizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/optimizers/poly_optimizers.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/predict.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/predict_from_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/predict_from_batch.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/predict_mod_polymapper_from_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/predict_mod_polymapper_from_batch.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/server.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/data_handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/data_handlers/data_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/data_handlers/data_writer.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/data_handlers/raster_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/data_handlers/raster_reader.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/data_handlers/vector_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/data_handlers/vector_reader.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/dataset_handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/dataset_handlers/convert_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/dataset_handlers/convert_dataset.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/detection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/detection/bbox_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/detection/bbox_handler.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/evaluation/__init__.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/evaluation/csv_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/evaluation/csv_builder.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/evaluation/direct_folder_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/evaluation/direct_folder_evaluator.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/evaluation/evaluate_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/evaluation/evaluate_data.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/evaluation/evaluation_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/evaluation/evaluation_pipeline.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/evaluation/gpu_distributor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/evaluation/gpu_distributor.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/evaluation/image_processing_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/evaluation/image_processing_worker.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/evaluation/matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/evaluation/matching.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/evaluation/metrics_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/evaluation/metrics_calculator.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/evaluation/results_aggregator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/evaluation/results_aggregator.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/inference/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/inference/export_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/inference/export_inference.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/inference/inference_csv_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/inference/inference_csv_builder.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/inference/inference_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/inference/inference_processors.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/mask_building/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/mask_building/mask_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/mask_building/mask_builder.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/parallel_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/parallel_processing/process_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/parallel_processing/process_executor.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/polygonization/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/polygonization/methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/polygonization/methods/active_contours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/polygonization/methods/active_contours.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/polygonization/methods/active_skeletons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/polygonization/methods/active_skeletons.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/polygonization/methods/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/polygonization/methods/simple.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/polygonization/polygonize_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/polygonization/polygonize_utils.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/polygonization/polygonizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/polygonization/polygonizer.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/polygonization/skeletonize_tensor_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/polygonization/skeletonize_tensor_tools.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/visualization/__init__.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/visualization/base_plot_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/visualization/base_plot_tools.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/visualization/comparison_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/visualization/comparison_plots.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/visualization/confusion_matrix_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/visualization/confusion_matrix_plots.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/tools/visualization/crossfield_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/tools/visualization/crossfield_plot.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/train.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/utils/__init__.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/utils/complex_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/utils/complex_utils.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/utils/frame_field_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/utils/frame_field_utils.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/utils/image_cross_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/utils/image_cross_display.png -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/utils/image_seg_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/utils/image_seg_display.png -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/utils/math_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/utils/math_utils.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/utils/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/utils/model_utils.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/utils/object_detection_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/utils/object_detection_utils.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/utils/os_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/utils/os_utils.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/utils/polygon_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/utils/polygon_utils.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/utils/polygonrnn_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/utils/polygonrnn_utils.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/utils/tensor_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/utils/tensor_utils.py -------------------------------------------------------------------------------- /pytorch_segmentation_models_trainer/validate_evaluation_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/pytorch_segmentation_models_trainer/validate_evaluation_config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_base_plot_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_base_plot_tools.py -------------------------------------------------------------------------------- /tests/test_box_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_box_handler.py -------------------------------------------------------------------------------- /tests/test_build_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_build_mask.py -------------------------------------------------------------------------------- /tests/test_configs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_configs/augmentations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/augmentations.yaml -------------------------------------------------------------------------------- /tests/test_configs/build_coco_mask.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/build_coco_mask.yaml -------------------------------------------------------------------------------- /tests/test_configs/build_mask.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/build_mask.yaml -------------------------------------------------------------------------------- /tests/test_configs/build_mask_postgis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/build_mask_postgis.yaml -------------------------------------------------------------------------------- /tests/test_configs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/config.yaml -------------------------------------------------------------------------------- /tests/test_configs/convert_dataset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/convert_dataset.yaml -------------------------------------------------------------------------------- /tests/test_configs/dataset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/dataset.yaml -------------------------------------------------------------------------------- /tests/test_configs/experiment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/experiment.yaml -------------------------------------------------------------------------------- /tests/test_configs/experiment_frame_field.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/experiment_frame_field.yaml -------------------------------------------------------------------------------- /tests/test_configs/experiment_frame_field_custom_model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/experiment_frame_field_custom_model.yaml -------------------------------------------------------------------------------- /tests/test_configs/experiment_frame_field_with_callback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/experiment_frame_field_with_callback.yaml -------------------------------------------------------------------------------- /tests/test_configs/experiment_instance_segmentation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/experiment_instance_segmentation.yaml -------------------------------------------------------------------------------- /tests/test_configs/experiment_mod_polymapper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/experiment_mod_polymapper.yaml -------------------------------------------------------------------------------- /tests/test_configs/experiment_mod_polymapper_with_callback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/experiment_mod_polymapper_with_callback.yaml -------------------------------------------------------------------------------- /tests/test_configs/experiment_naive_mod_polymapper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/experiment_naive_mod_polymapper.yaml -------------------------------------------------------------------------------- /tests/test_configs/experiment_object_detection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/experiment_object_detection.yaml -------------------------------------------------------------------------------- /tests/test_configs/experiment_object_detection_with_callback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/experiment_object_detection_with_callback.yaml -------------------------------------------------------------------------------- /tests/test_configs/experiment_optimizer_gradient_centralization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/experiment_optimizer_gradient_centralization.yaml -------------------------------------------------------------------------------- /tests/test_configs/experiment_polygonrnn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/experiment_polygonrnn.yaml -------------------------------------------------------------------------------- /tests/test_configs/experiment_polygonrnn_with_callback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/experiment_polygonrnn_with_callback.yaml -------------------------------------------------------------------------------- /tests/test_configs/experiment_warmup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/experiment_warmup.yaml -------------------------------------------------------------------------------- /tests/test_configs/experiment_warmup_and_img_callback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/experiment_warmup_and_img_callback.yaml -------------------------------------------------------------------------------- /tests/test_configs/frame_field_dataset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/frame_field_dataset.yaml -------------------------------------------------------------------------------- /tests/test_configs/frame_field_dataset_with_center_crop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/frame_field_dataset_with_center_crop.yaml -------------------------------------------------------------------------------- /tests/test_configs/frame_field_for_inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/frame_field_for_inference.yaml -------------------------------------------------------------------------------- /tests/test_configs/frame_field_model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/frame_field_model.yaml -------------------------------------------------------------------------------- /tests/test_configs/frame_field_pl_model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/frame_field_pl_model.yaml -------------------------------------------------------------------------------- /tests/test_configs/instance_segmentation_model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/instance_segmentation_model.yaml -------------------------------------------------------------------------------- /tests/test_configs/metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/metrics.yaml -------------------------------------------------------------------------------- /tests/test_configs/metrics_torchmetrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/metrics_torchmetrics.yaml -------------------------------------------------------------------------------- /tests/test_configs/model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/model.yaml -------------------------------------------------------------------------------- /tests/test_configs/naive_mod_polymapper_model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/naive_mod_polymapper_model.yaml -------------------------------------------------------------------------------- /tests/test_configs/object_detection_model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/object_detection_model.yaml -------------------------------------------------------------------------------- /tests/test_configs/predict.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/predict.yaml -------------------------------------------------------------------------------- /tests/test_configs/train_config_used_in_predict_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_configs/train_config_used_in_predict_test.yaml -------------------------------------------------------------------------------- /tests/test_convert_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_convert_dataset.py -------------------------------------------------------------------------------- /tests/test_custom_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_custom_models.py -------------------------------------------------------------------------------- /tests/test_data_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_data_writer.py -------------------------------------------------------------------------------- /tests/test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_dataset.py -------------------------------------------------------------------------------- /tests/test_detection_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_detection_model.py -------------------------------------------------------------------------------- /tests/test_evaluate_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_evaluate_data.py -------------------------------------------------------------------------------- /tests/test_evaluation_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_evaluation_pipeline.py -------------------------------------------------------------------------------- /tests/test_frame_field_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_frame_field_model.py -------------------------------------------------------------------------------- /tests/test_gradient_centralization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_gradient_centralization.py -------------------------------------------------------------------------------- /tests/test_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_inference.py -------------------------------------------------------------------------------- /tests/test_inference_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_inference_service.py -------------------------------------------------------------------------------- /tests/test_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_matching.py -------------------------------------------------------------------------------- /tests/test_math_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_math_utils.py -------------------------------------------------------------------------------- /tests/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_metrics.py -------------------------------------------------------------------------------- /tests/test_mod_polygonrnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_mod_polygonrnn.py -------------------------------------------------------------------------------- /tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_model.py -------------------------------------------------------------------------------- /tests/test_naive_mod_polygonrnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_naive_mod_polygonrnn.py -------------------------------------------------------------------------------- /tests/test_optimizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_optimizers.py -------------------------------------------------------------------------------- /tests/test_polygonizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_polygonizer.py -------------------------------------------------------------------------------- /tests/test_polygonrnn_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_polygonrnn_model.py -------------------------------------------------------------------------------- /tests/test_polygonrnn_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_polygonrnn_utils.py -------------------------------------------------------------------------------- /tests/test_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_predict.py -------------------------------------------------------------------------------- /tests/test_process_executor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_process_executor.py -------------------------------------------------------------------------------- /tests/test_raster_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_raster_reader.py -------------------------------------------------------------------------------- /tests/test_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_script.py -------------------------------------------------------------------------------- /tests/test_skeletonize_tensor_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_skeletonize_tensor_tools.py -------------------------------------------------------------------------------- /tests/test_tensor_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_tensor_utils.py -------------------------------------------------------------------------------- /tests/test_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_train.py -------------------------------------------------------------------------------- /tests/test_vector_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_vector_reader.py -------------------------------------------------------------------------------- /tests/test_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/test_visualization.py -------------------------------------------------------------------------------- /tests/testing_data/data/build_masks_data/annotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/build_masks_data/annotation.json -------------------------------------------------------------------------------- /tests/testing_data/data/build_masks_data/aux_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/build_masks_data/aux_script.py -------------------------------------------------------------------------------- /tests/testing_data/data/build_masks_data/buildings.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/build_masks_data/buildings.geojson -------------------------------------------------------------------------------- /tests/testing_data/data/build_masks_data/coco_images/000000160847.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/build_masks_data/coco_images/000000160847.jpg -------------------------------------------------------------------------------- /tests/testing_data/data/build_masks_data/coco_images/000000232566.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/build_masks_data/coco_images/000000232566.jpg -------------------------------------------------------------------------------- /tests/testing_data/data/build_masks_data/dsg_dataset_only_polygon_masks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/build_masks_data/dsg_dataset_only_polygon_masks.csv -------------------------------------------------------------------------------- /tests/testing_data/data/build_masks_data/dsg_dataset_other_masks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/build_masks_data/dsg_dataset_other_masks.csv -------------------------------------------------------------------------------- /tests/testing_data/data/build_masks_data/selected_tiles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/build_masks_data/selected_tiles.csv -------------------------------------------------------------------------------- /tests/testing_data/data/detection_data/geo/dsg_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/detection_data/geo/dsg_dataset.csv -------------------------------------------------------------------------------- /tests/testing_data/data/detection_data/geo/dsg_dataset_with_polygons.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/detection_data/geo/dsg_dataset_with_polygons.csv -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_1033.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_1033.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_1036.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_1036.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_1039.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_1039.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_1045.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_1045.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_966.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_966.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_967.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_967.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_970.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_970.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_973.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_973.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_995.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_995.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_996.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_996.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_997.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_997.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_998.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/boundary_masks/Ortoimagem_MI_2970-1-SO_998.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_1033.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_1033.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_1036.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_1036.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_1039.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_1039.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_1045.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_1045.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_966.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_966.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_967.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_967.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_970.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_970.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_973.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_973.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_995.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_995.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_996.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_996.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_997.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_997.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_998.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/crossfield_masks/Ortoimagem_MI_2970-1-SO_998.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_1033.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_1033.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_1036.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_1036.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_1039.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_1039.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_1045.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_1045.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_966.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_966.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_967.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_967.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_970.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_970.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_973.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_973.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_995.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_995.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_996.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_996.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_997.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_997.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_998.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/distance_masks/Ortoimagem_MI_2970-1-SO_998.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/dsg_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/dsg_dataset.csv -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_1033.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_1033.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_1036.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_1036.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_1039.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_1039.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_1045.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_1045.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_966.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_966.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_967.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_967.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_970.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_970.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_973.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_973.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_995.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_995.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_996.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_996.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_997.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_997.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_998.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/polygon_masks/Ortoimagem_MI_2970-1-SO_998.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_1033.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_1033.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_1036.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_1036.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_1039.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_1039.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_1045.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_1045.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_966.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_966.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_967.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_967.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_970.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_970.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_973.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_973.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_995.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_995.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_996.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_996.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_997.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_997.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_998.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/size_masks/Ortoimagem_MI_2970-1-SO_998.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_1033.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_1033.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_1036.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_1036.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_1039.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_1039.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_1045.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_1045.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_966.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_966.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_967.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_967.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_970.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_970.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_973.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_973.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_995.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_995.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_996.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_996.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_997.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_997.tif -------------------------------------------------------------------------------- /tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_998.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/frame_field_data/vertex_masks/Ortoimagem_MI_2970-1-SO_998.tif -------------------------------------------------------------------------------- /tests/testing_data/data/images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/images/image1.png -------------------------------------------------------------------------------- /tests/testing_data/data/images/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/images/image10.png -------------------------------------------------------------------------------- /tests/testing_data/data/images/image10.png.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/images/image10.png.aux.xml -------------------------------------------------------------------------------- /tests/testing_data/data/images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/images/image2.png -------------------------------------------------------------------------------- /tests/testing_data/data/images/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/images/image3.png -------------------------------------------------------------------------------- /tests/testing_data/data/images/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/images/image4.png -------------------------------------------------------------------------------- /tests/testing_data/data/images/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/images/image5.png -------------------------------------------------------------------------------- /tests/testing_data/data/images/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/images/image6.png -------------------------------------------------------------------------------- /tests/testing_data/data/images/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/images/image7.png -------------------------------------------------------------------------------- /tests/testing_data/data/images/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/images/image8.png -------------------------------------------------------------------------------- /tests/testing_data/data/images/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/images/image9.png -------------------------------------------------------------------------------- /tests/testing_data/data/labels/label1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/labels/label1.png -------------------------------------------------------------------------------- /tests/testing_data/data/labels/label10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/labels/label10.png -------------------------------------------------------------------------------- /tests/testing_data/data/labels/label10.png.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/labels/label10.png.aux.xml -------------------------------------------------------------------------------- /tests/testing_data/data/labels/label2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/labels/label2.png -------------------------------------------------------------------------------- /tests/testing_data/data/labels/label3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/labels/label3.png -------------------------------------------------------------------------------- /tests/testing_data/data/labels/label4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/labels/label4.png -------------------------------------------------------------------------------- /tests/testing_data/data/labels/label5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/labels/label5.png -------------------------------------------------------------------------------- /tests/testing_data/data/labels/label6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/labels/label6.png -------------------------------------------------------------------------------- /tests/testing_data/data/labels/label7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/labels/label7.png -------------------------------------------------------------------------------- /tests/testing_data/data/labels/label8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/labels/label8.png -------------------------------------------------------------------------------- /tests/testing_data/data/labels/label9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/labels/label9.png -------------------------------------------------------------------------------- /tests/testing_data/data/matching_data/candidate_polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/matching_data/candidate_polygons.geojson -------------------------------------------------------------------------------- /tests/testing_data/data/matching_data/expected_reference_matches.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/matching_data/expected_reference_matches.geojson -------------------------------------------------------------------------------- /tests/testing_data/data/matching_data/reference_polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/matching_data/reference_polygons.geojson -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/0.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/1.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/10.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/11.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/12.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/13.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/14.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/15.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/16.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/17.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/18.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/19.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/2.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/20.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/21.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/22.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/23.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/24.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/25.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/26.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/27.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/28.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/29.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/3.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/30.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/31.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/32.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/33.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/34.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/35.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/4.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/5.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/6.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/7.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/8.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1033/9.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1036/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1036/0.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1036/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1036/1.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1036/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1036/2.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1036/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1036/3.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1039/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1039/0.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1039/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1039/1.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/0.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/1.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/10.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/11.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/12.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/13.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/14.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/15.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/16.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/17.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/18.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/19.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/2.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/20.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/21.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/22.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/23.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/24.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/25.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/26.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/27.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/28.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/29.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/3.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/30.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/31.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/32.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/33.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/34.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/35.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/36.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/37.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/38.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/39.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/4.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/40.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/41.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/42.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/43.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/44.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/45.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/46.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/47.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/48.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/49.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/5.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/50.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/51.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/52.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/53.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/54.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/55.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/56.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/57.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/58.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/59.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/6.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/60.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/61.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/62.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/63.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/64.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/65.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/66.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/67.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/68.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/69.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/7.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/70.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/71.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/72.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/73.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/74.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/75.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/76.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/77.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/78.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/79.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/8.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/80.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/81.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/82.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/83.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/84.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/85.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/86.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/87.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/88.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/89.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_1045/9.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/0.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/1.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/10.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/11.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/12.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/13.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/14.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/15.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/16.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/17.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/18.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/19.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/2.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/20.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/21.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/22.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/23.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/24.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/25.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/26.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/27.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/28.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/29.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/3.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/30.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/31.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/32.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/33.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/34.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/35.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/36.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/37.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/38.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/39.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/4.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/40.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/41.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/42.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/43.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/44.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/45.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/46.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/47.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/48.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/49.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/5.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/50.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/51.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/52.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/53.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/54.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/55.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/56.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/57.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/58.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/59.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/6.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/60.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/61.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/62.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/63.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/64.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/65.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/66.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/7.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/8.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_966/9.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/0.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/1.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/2.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/3.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/4.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/5.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/6.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/7.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/8.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_967/9.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/0.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/1.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/2.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/3.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/4.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/5.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/6.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/7.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/8.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_970/9.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/0.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/1.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/2.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/3.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/4.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/5.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/6.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/7.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/8.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_973/9.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_995/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_995/0.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_995/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_995/1.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_995/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_995/2.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_995/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_995/3.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_995/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_995/4.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_995/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_995/5.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_995/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_995/6.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_995/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_995/7.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/0.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/1.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/2.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/3.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/4.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/5.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/6.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/7.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/8.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_996/9.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/0.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/1.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/2.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/3.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/4.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/5.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/6.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/7.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/8.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_997/9.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/0.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/1.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/2.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/3.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/4.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/5.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/6.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/7.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/8.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/images_croped/Ortoimagem_MI_2970-1-SO_998/9.png -------------------------------------------------------------------------------- /tests/testing_data/data/polygon_rnn_data/polygonrnn_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/polygon_rnn_data/polygonrnn_dataset.csv -------------------------------------------------------------------------------- /tests/testing_data/data/rasterize_data/images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/rasterize_data/images/10.png -------------------------------------------------------------------------------- /tests/testing_data/data/rasterize_data/images/10.png.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/rasterize_data/images/10.png.aux.xml -------------------------------------------------------------------------------- /tests/testing_data/data/rasterize_data/labels/10_boundary_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/rasterize_data/labels/10_boundary_mask.png -------------------------------------------------------------------------------- /tests/testing_data/data/rasterize_data/labels/10_boundary_mask.png.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/rasterize_data/labels/10_boundary_mask.png.aux.xml -------------------------------------------------------------------------------- /tests/testing_data/data/rasterize_data/labels/10_polygon_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/rasterize_data/labels/10_polygon_mask.png -------------------------------------------------------------------------------- /tests/testing_data/data/rasterize_data/labels/10_polygon_mask.png.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/rasterize_data/labels/10_polygon_mask.png.aux.xml -------------------------------------------------------------------------------- /tests/testing_data/data/rasterize_data/labels/10_stacked_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/rasterize_data/labels/10_stacked_mask.png -------------------------------------------------------------------------------- /tests/testing_data/data/rasterize_data/labels/10_stacked_mask.png.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/rasterize_data/labels/10_stacked_mask.png.aux.xml -------------------------------------------------------------------------------- /tests/testing_data/data/rasterize_data/labels/10_vertex_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/rasterize_data/labels/10_vertex_mask.png -------------------------------------------------------------------------------- /tests/testing_data/data/rasterize_data/labels/10_vertex_mask.png.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/rasterize_data/labels/10_vertex_mask.png.aux.xml -------------------------------------------------------------------------------- /tests/testing_data/data/vectors/test_polygons.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/vectors/test_polygons.geojson -------------------------------------------------------------------------------- /tests/testing_data/data/vectors/test_polygons2.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/vectors/test_polygons2.geojson -------------------------------------------------------------------------------- /tests/testing_data/data/vectors/test_tile_index_a.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/data/vectors/test_tile_index_a.geojson -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/build_masks/coco_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/build_masks/coco_dataset.csv -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/build_masks/dsg_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/build_masks/dsg_dataset.csv -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/build_masks/dsg_dataset_merged.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/build_masks/dsg_dataset_merged.csv -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/build_masks/dsg_dataset_with_bboxes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/build_masks/dsg_dataset_with_bboxes.csv -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/build_masks/dsg_dataset_with_polygons.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/build_masks/dsg_dataset_with_polygons.csv -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/convert_dataset/polygonrnn_dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/convert_dataset/polygonrnn_dataset.csv -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/dataset/coco_format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/dataset/coco_format.json -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/polygonize/acm_polygonizer.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/polygonize/acm_polygonizer.geojson -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/polygonize/asm_polygonizer.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/polygonize/asm_polygonizer.geojson -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/polygonize/output_poly_real_skeleton.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/polygonize/output_poly_real_skeleton.geojson -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/polygonize/output_poly_real_skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/polygonize/output_poly_real_skeleton.png -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/polygonize/simple_polygonizer.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/polygonize/simple_polygonizer.geojson -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/raster_reader/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/raster_reader/image1.jpg -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/raster_reader/image1.jpg.aux.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/raster_reader/image1.jpg.aux.xml -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/raster_reader/image1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/raster_reader/image1.tif -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/tensor_tools/output0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/tensor_tools/output0.png -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/tensor_tools/output1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/tensor_tools/output1.png -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/tensor_tools/test_output0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/tensor_tools/test_output0.png -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/tensor_tools/test_output1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/tensor_tools/test_output1.png -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/vector_reader/160847.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/vector_reader/160847.geojson -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/vector_reader/232566.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/vector_reader/232566.geojson -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/vector_reader/handle_features_line_output.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/vector_reader/handle_features_line_output.geojson -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/vector_reader/handle_features_point_output.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/vector_reader/handle_features_point_output.geojson -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/visualization/example_image_seg_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/visualization/example_image_seg_display.png -------------------------------------------------------------------------------- /tests/testing_data/expected_outputs/visualization/real_image_seg_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/testing_data/expected_outputs/visualization/real_image_seg_display.png -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsgoficial/pytorch_segmentation_models_trainer/HEAD/tests/utils.py --------------------------------------------------------------------------------