model_thick_parameters.json 1.78 KB
{
    "VGG3D":
    {
    "negative_slop":0.1,
    "norm_choice":"IN",
    "base_filters":16,
    "kernel_size":3,
    "num_stages":3,
    "pooling_ratios":[2,2,2,2,2],
    "repeat_time_list":[2,2,3,3,3],
    "dropout_rate":0.2,
    "num_class":1
    },
    "ResNet":
    {
        "block":"BasicBlock",
        "block_inplanes":[64,128,256,512],
        "negative_slop":0.1,
        "norm_choice":"IN",
        "kernel_size":3,
        "num_stages":4,
        "pooling_ratios":[2,2,2,1],
        "widen_factor":1.0,
        "shortcut_type":"B",
        "repeat_time_list":[3,4,6,3],
        "dropout_rate":0.2,
        "num_class":1,
        "conv_choice":"DC"

    },
    "Se_ResNet":
    {
        "block":"BasicBlock",
        "block_inplanes":[64,128,256,512],
        "negative_slop":0.1,
        "norm_choice":"IN",
        "kernel_size":3,
        "num_stages":4,
        "pooling_ratios":[2,2,2,1],
        "widen_factor":1.0,
        "shortcut_type":"B",
        "repeat_time_list":[3,4,6,3],
        "dropout_rate":0.2,
        "num_class":4,
        "regression_choice":true

    },
    "Darknet":
    {
        "block_inplanes":[64,128,256,512],
        "negative_slop":0.1,
        "norm_choice":"IN",
        "kernel_size":3,
        "num_stages":4,
        "pooling_ratios":[1,2,2,1],
        "repeat_time_list":[2,2,3,3],
        "dropout_rate":0.2,
        "num_class":1,
        "conv_choice":"DC"

    },
    "FSe_ResNet":
    {
        "block":"BasicBlock",
        "block_inplanes":[64,128,256,512],
        "negative_slop":0.01,
        "norm_choice":"IN",
        "kernel_size":3,
        "num_stages":4,
        "pooling_ratios":[2,2,2,1],
        "widen_factor":1.0,
        "shortcut_type":"B",
        "repeat_time_list":[3,4,6,3],
        "dropout_rate":0.2,
        "num_class":1

    }
}