{   
    "NoduleSegEncoder_proxima":
    {
        "block":"BasicBlock",
        "block_inplanes":[16,32,64,128],
        "negative_slop":0.1,
        "norm_choice":"BN",
        "kernel_size":3,
        "num_blocks":4,
        "strides":[1,2,2,2],
        "widen_factor":1.0,
        "shortcut_type":"B",
        "repeat_time_list":[3,3,3,3],
        "dropout_rate":0.35,
        "num_class":1,
         "norm_axis":1,
         "ASPP_choice":1,
        "atrous_rates":[1,1,1,2],
         "base_filters":16,
         "ASPP_block_list":[4]
         
    },
    "NoduleSegDecoder_proxima":
    {
        "encoder_model_name":"NoduleSegEncoder_proxima",
        "block":"BasicBlock",
        "negative_slop":0.1,
        "norm_choice":"BN",
        "kernel_size":3,
        "num_units":[2,2,2,2],
        "dropout_rate":0.35,
        "seg_num_class":1,
         "norm_axis":1,
         "deep_combine":false,
        "SEB_choice":false
        
         
    },
    "XnetEncoder":
    {
        "block":"BasicBlock",
        "block_inplanes":[16,32,64,128],
        "negative_slop":0.1,
        "norm_choice":"BN",
        "kernel_size":3,
        "num_blocks":3,
        "strides":[2,2,2,2],
        "widen_factor":1.0,
        "shortcut_type":"B",
        "repeat_time_list":[2,2,2,2],
        "dropout_rate":0.35,
        "num_class":1,
         "norm_axis":1,
         "ASPP_choice":1,
        "atrous_rates":[1,1,2,4],
         "base_filters":16,
         "ASPP_block_list":[3],
         "pred_conv_num":2
         
    },
    "UnetPP":
    {
        "encoder_model_name":"XnetEncoder",
        "negative_slop":0.1,
        "norm_choice":"BN",
        "kernel_size":3,
        "layer_repeat_times":2,
        "dropout_rate":0.35,
        "seg_num_class":1,
         "norm_axis":1,
         "deep_combine":false,
        "SEB_choice":true

    }
}