File size: 906 Bytes
abd2a81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
  "defaults_filepath": "configs/config.defaults.inria_dataset_polygonized.json",

  "run_name": "inria_dataset_polygonized.unet_resnet101_pretrained.leaderboard",



  "seg_params": {
    "compute_interior": true,
    "compute_edge": false,
    "compute_vertex": false
  },





  "backbone_params": {
    "defaults_filepath": "configs/backbone_params.unet_resnet101.json",  // Path from the project's root to a JSON with default values for backbone_params
    "pretrained": true
  },

  "loss_params": {
    "seg_loss_params": {
      "bce_coef": 1.0,
      "dice_coef": 0.2,
      "use_dist": true,  // Dist weights as in the original U-Net paper
      "use_size": false  // Size weights increasing importance of smaller buildings
    }
  },

  "optim_params": {
    "batch_size": 4  // Overwrite default batch size per GPU. The effective batch size is effective_batch_size=world_size*batch_size
  }
}