Add more algorithms

This commit is contained in:
D-X-Y
2019-09-28 18:24:47 +10:00
parent bfd6b648fd
commit cfb462e463
286 changed files with 10557 additions and 122955 deletions

View File

@@ -1,27 +0,0 @@
{
"data_name" : ["str", "PTB"],
"data_path" : ["str", "./data/data/penn"],
"emsize" : ["int", 850],
"nhid" : ["int", 850],
"nhidlast" : ["int", 850],
"LR" : ["float", 20],
"clip" : ["float", 0.25],
"epochs" : ["int", 3000],
"train_batch": ["int", 64],
"eval_batch": ["int", 10],
"test_batch": ["int", 1],
"bptt" : ["int", 35],
"dropout" : ["float", 0.75],
"dropouth" : ["float", 0.25],
"dropoutx" : ["float", 0.75],
"dropouti" : ["float", 0.2],
"dropoute" : ["float", 0.1],
"nonmono" : ["int", 5],
"alpha" : ["float", 0],
"beta" : ["float", 1e-3],
"wdecay" : ["float", 8e-7],
"max_seq_len_delta" : ["int", 20]
}

View File

@@ -1,27 +0,0 @@
{
"data_name" : ["str", "WT2"],
"data_path" : ["str", "./data/data/wikitext-2"],
"emsize" : ["int", 700],
"nhid" : ["int", 700],
"nhidlast" : ["int", 700],
"LR" : ["float", 20],
"clip" : ["float", 0.25],
"epochs" : ["int", 3000],
"train_batch": ["int", 64],
"eval_batch": ["int", 10],
"test_batch": ["int", 1],
"bptt" : ["int", 35],
"dropout" : ["float", 0.75],
"dropouth" : ["float", 0.15],
"dropoutx" : ["float", 0.75],
"dropouti" : ["float", 0.2],
"dropoute" : ["float", 0.1],
"nonmono" : ["int", 5],
"alpha" : ["float", 0],
"beta" : ["float", 1e-3],
"wdecay" : ["float", 5e-7],
"max_seq_len_delta" : ["int", 20]
}

View File

@@ -0,0 +1,10 @@
{
"dataset" : ["str", "cifar"],
"arch" : ["str", "densenet"],
"depth" : ["int", 100],
"growthRate": ["int", 12],
"reduction" : ["float", 0.5],
"bottleneck": ["bool", 1],
"super_type": ["str" , "basic"],
"zero_init_residual" : ["bool", "0"]
}

View File

@@ -0,0 +1,8 @@
{
"dataset" : ["str", "cifar"],
"arch" : ["str", "resnet"],
"depth" : ["int", 8],
"module" : ["str", "ResNetBasicblock"],
"super_type": ["str" , "basic"],
"zero_init_residual" : ["bool", "0"]
}

View File

@@ -0,0 +1,8 @@
{
"dataset" : ["str", "cifar"],
"arch" : ["str", "resnet"],
"depth" : ["int", 1001],
"module" : ["str", "ResNetBottleneck"],
"super_type": ["str" , "basic"],
"zero_init_residual" : ["bool", "0"]
}

View File

@@ -0,0 +1,8 @@
{
"dataset" : ["str", "cifar"],
"arch" : ["str", "resnet"],
"depth" : ["int", 110],
"module" : ["str", "ResNetBasicblock"],
"super_type": ["str" , "basic"],
"zero_init_residual" : ["bool", "0"]
}

View File

@@ -0,0 +1,8 @@
{
"dataset" : ["str", "cifar"],
"arch" : ["str", "resnet"],
"depth" : ["int", 164],
"module" : ["str", "ResNetBottleneck"],
"super_type": ["str" , "basic"],
"zero_init_residual" : ["bool", "0"]
}

View File

@@ -0,0 +1,8 @@
{
"dataset" : ["str", "cifar"],
"arch" : ["str", "resnet"],
"depth" : ["int", 20],
"module" : ["str", "ResNetBasicblock"],
"super_type": ["str" , "basic"],
"zero_init_residual" : ["bool", "0"]
}

View File

@@ -0,0 +1,8 @@
{
"dataset" : ["str", "cifar"],
"arch" : ["str", "resnet"],
"depth" : ["int", 32],
"module" : ["str", "ResNetBasicblock"],
"super_type": ["str" , "basic"],
"zero_init_residual" : ["bool", "0"]
}

View File

@@ -0,0 +1,8 @@
{
"dataset" : ["str", "cifar"],
"arch" : ["str", "resnet"],
"depth" : ["int", 56],
"module" : ["str", "ResNetBasicblock"],
"super_type": ["str" , "basic"],
"zero_init_residual" : ["bool", "0"]
}

View File

@@ -0,0 +1,8 @@
{
"dataset" : ["str", "cifar"],
"arch" : ["str", "wideresnet"],
"depth" : ["int", 28],
"wide_factor":["int", 10],
"dropout" : ["bool", 0],
"super_type": ["str" , "basic"]
}

View File

@@ -0,0 +1,9 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "MobileNetV2"],
"width_mult" : ["float", 1.0],
"dropout" : ["float", 0.0],
"input_channel" : ["int", 32],
"last_channel" : ["int", 1280],
"block_name" : ["str", "InvertedResidual"]
}

View File

@@ -0,0 +1,9 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "MobileNetV2"],
"width_mult" : ["float", 1.0],
"dropout" : ["float", 0.2],
"input_channel" : ["int", 32],
"last_channel" : ["int", 1280],
"block_name" : ["str", "InvertedResidual"]
}

View File

@@ -0,0 +1,12 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "resnet"],
"block_name" : ["str", "Bottleneck"],
"layers" : ["int", [3,4,23,3]],
"deep_stem" : ["bool", 0],
"zero_init_residual" : ["bool", "1"],
"groups" : ["int", 1],
"width_per_group" : ["int", 64],
"norm_layer" : ["none", "None"]
}

View File

@@ -0,0 +1,12 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "resnet"],
"block_name" : ["str", "Bottleneck"],
"layers" : ["int", [3,4,23,3]],
"deep_stem" : ["bool", 1],
"zero_init_residual" : ["bool", "1"],
"groups" : ["int", 1],
"width_per_group" : ["int", 64],
"norm_layer" : ["none", "None"]
}

View File

@@ -0,0 +1,11 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "resnet"],
"block_name" : ["str", "Bottleneck"],
"layers" : ["int", [3,8,36,3]],
"deep_stem" : ["bool", 0],
"zero_init_residual" : ["bool", "1"],
"groups" : ["int", 1],
"width_per_group" : ["int", 64],
"norm_layer" : ["none", "None"]
}

View File

@@ -0,0 +1,11 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "resnet"],
"block_name" : ["str", "Bottleneck"],
"layers" : ["int", [3,8,36,3]],
"deep_stem" : ["bool", 1],
"zero_init_residual" : ["bool", "1"],
"groups" : ["int", 1],
"width_per_group" : ["int", 64],
"norm_layer" : ["none", "None"]
}

View File

@@ -0,0 +1,11 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "resnet"],
"block_name" : ["str", "BasicBlock"],
"layers" : ["int", [2,2,2,2]],
"deep_stem" : ["bool", 0],
"zero_init_residual" : ["bool", "1"],
"groups" : ["int", 1],
"width_per_group" : ["int", 64],
"norm_layer" : ["none", "None"]
}

View File

@@ -0,0 +1,12 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "resnet"],
"block_name" : ["str", "BasicBlock"],
"layers" : ["int", [2,2,2,2]],
"deep_stem" : ["bool", 1],
"zero_init_residual" : ["bool", "1"],
"groups" : ["int", 1],
"width_per_group" : ["int", 64],
"norm_layer" : ["none", "None"]
}

View File

@@ -0,0 +1,11 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "resnet"],
"block_name" : ["str", "Bottleneck"],
"layers" : ["int", [3,24,36,3]],
"deep_stem" : ["bool", 0],
"zero_init_residual" : ["bool", "1"],
"groups" : ["int", 1],
"width_per_group" : ["int", 64],
"norm_layer" : ["none", "None"]
}

View File

@@ -0,0 +1,11 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "resnet"],
"block_name" : ["str", "Bottleneck"],
"layers" : ["int", [3,24,36,3]],
"deep_stem" : ["bool", 1],
"zero_init_residual" : ["bool", "1"],
"groups" : ["int", 1],
"width_per_group" : ["int", 64],
"norm_layer" : ["none", "None"]
}

View File

@@ -0,0 +1,12 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "resnet"],
"block_name" : ["str", "BasicBlock"],
"layers" : ["int", [3,4,6,3]],
"deep_stem" : ["bool", 0],
"zero_init_residual" : ["bool", "1"],
"groups" : ["int", 1],
"width_per_group" : ["int", 64],
"norm_layer" : ["none", "None"]
}

View File

@@ -0,0 +1,12 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "resnet"],
"block_name" : ["str", "BasicBlock"],
"layers" : ["int", [3,4,6,3]],
"deep_stem" : ["bool", 1],
"zero_init_residual" : ["bool", "1"],
"groups" : ["int", 1],
"width_per_group" : ["int", 64],
"norm_layer" : ["none", "None"]
}

View File

@@ -0,0 +1,12 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "resnet"],
"block_name" : ["str", "Bottleneck"],
"layers" : ["int", [3,4,6,3]],
"deep_stem" : ["bool", 0],
"zero_init_residual" : ["bool", "1"],
"groups" : ["int", 1],
"width_per_group" : ["int", 64],
"norm_layer" : ["none", "None"]
}

View File

@@ -0,0 +1,12 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "resnet"],
"block_name" : ["str", "Bottleneck"],
"layers" : ["int", [3,4,6,3]],
"deep_stem" : ["bool", 1],
"zero_init_residual" : ["bool", "1"],
"groups" : ["int", 1],
"width_per_group" : ["int", 64],
"norm_layer" : ["none", "None"]
}

View File

@@ -0,0 +1,12 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "resnet"],
"block_name" : ["str", "Bottleneck"],
"layers" : ["int", [3,4,6,3]],
"deep_stem" : ["bool", 1],
"zero_init_residual" : ["bool", "1"],
"groups" : ["int", 32],
"width_per_group" : ["int", 4],
"norm_layer" : ["none", "None"]
}

View File

@@ -0,0 +1,6 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "ShuffleNetV2"],
"width_multi" : ["float", 2.0],
"stages" : ["int", [24, 244, 488, 976, 2048]]
}

View File

@@ -0,0 +1,6 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "ShuffleNetV2"],
"width_multi" : ["float", 1.5],
"stages" : ["int", [24, 176, 352, 704, 1024]]
}

View File

@@ -0,0 +1,6 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "ShuffleNetV2"],
"width_multi" : ["float", 1.0],
"stages" : ["int", [24, 116, 232, 464, 1024]]
}

View File

@@ -0,0 +1,10 @@
{
"arch" : ["str", "dxys"],
"genotype" : ["str", "GDAS_V1"],
"dataset" : ["str", "cifar"],
"ichannel" : ["int", 36],
"layers" : ["int", 6],
"stem_multi": ["int", 3],
"auxiliary" : ["bool", 1],
"drop_path_prob": ["float", 0.2]
}

View File

@@ -0,0 +1,10 @@
{
"arch" : ["str", "dxys"],
"genotype" : ["str", "NASNet"],
"dataset" : ["str", "cifar"],
"ichannel" : ["int", 33],
"layers" : ["int", 6],
"stem_multi": ["int", 3],
"auxiliary" : ["bool", 1],
"drop_path_prob": ["float", 0.2]
}

View File

@@ -0,0 +1,10 @@
{
"arch" : ["str", "dxys"],
"genotype" : ["str", "SETN"],
"dataset" : ["str", "cifar"],
"ichannel" : ["int", 36],
"layers" : ["int", 6],
"stem_multi": ["int", 3],
"auxiliary" : ["bool", 1],
"drop_path_prob": ["float", 0.2]
}

View File

@@ -0,0 +1,9 @@
{
"arch" : ["str", "dxys"],
"genotype" : ["str", "DARTS_V2"],
"dataset" : ["str", "imagenet"],
"ichannel" : ["int", 48],
"layers" : ["int", 4],
"auxiliary" : ["bool", 1],
"drop_path_prob": ["float", 0]
}

View File

@@ -0,0 +1,9 @@
{
"arch" : ["str", "dxys"],
"genotype" : ["str", "GDAS_V1"],
"dataset" : ["str", "imagenet"],
"ichannel" : ["int", 50],
"layers" : ["int", 4],
"auxiliary" : ["bool", 1],
"drop_path_prob": ["float", 0]
}

View File

@@ -0,0 +1,9 @@
{
"arch" : ["str", "dxys"],
"genotype" : ["str", "SETN"],
"dataset" : ["str", "imagenet"],
"ichannel" : ["int", 58],
"layers" : ["int", 2],
"auxiliary" : ["bool", 1],
"drop_path_prob": ["float", 0]
}

View File

@@ -0,0 +1,9 @@
{
"arch" : ["str", "dxys"],
"genotype" : ["str", "SETN"],
"dataset" : ["str", "imagenet"],
"ichannel" : ["int", 73],
"layers" : ["int", 1],
"auxiliary" : ["bool", 1],
"drop_path_prob": ["float", 0]
}

View File

@@ -0,0 +1,9 @@
{
"arch" : ["str", "dxys"],
"genotype" : ["str", "SETN"],
"dataset" : ["str", "imagenet"],
"ichannel" : ["int", 58],
"layers" : ["int", 2],
"auxiliary" : ["bool", 1],
"drop_path_prob": ["float", 0]
}

View File

@@ -0,0 +1,9 @@
{
"arch" : ["str", "dxys"],
"genotype" : ["str", "SETN"],
"dataset" : ["str", "imagenet"],
"ichannel" : ["int", 49],
"layers" : ["int", 3],
"auxiliary" : ["bool", 1],
"drop_path_prob": ["float", 0]
}

View File

@@ -0,0 +1,9 @@
{
"arch" : ["str", "dxys"],
"genotype" : ["str", "SETN"],
"dataset" : ["str", "imagenet"],
"ichannel" : ["int", 44],
"layers" : ["int", 4],
"auxiliary" : ["bool", 1],
"drop_path_prob": ["float", 0]
}

View File

@@ -0,0 +1,13 @@
{
"dataset" : ["str" , "cifar"],
"arch" : ["str" , "resnet"],
"depth" : ["int" , "110"],
"module" : ["str" , "ResNetBasicblock"],
"super_type" : ["str" , "infer-shape"],
"zero_init_residual" : ["bool" , "0"],
"class_num" : ["int" , "10"],
"search_mode" : ["str" , "shape"],
"xchannels" : ["int" , ["3", "16", "14", "16", "14", "16", "16", "16", "16", "16", "14", "16", "16", "16", "12", "16", "16", "16", "9", "16", "8", "16", "4", "16", "4", "4", "4", "16", "4", "4", "4", "4", "6", "6", "4", "6", "11", "4", "32", "32", "32", "32", "32", "32", "32", "32", "28", "32", "32", "28", "22", "22", "22", "32", "32", "25", "28", "9", "9", "28", "12", "9", "12", "32", "9", "9", "22", "12", "16", "9", "12", "9", "9", "9", "64", "64", "64", "64", "64", "64", "64", "64", "64", "64", "64", "64", "64", "64", "64", "38", "64", "25", "19", "19", "19", "19", "19", "25", "32", "19", "19", "25", "25", "19", "19", "38", "38", "19", "19", "51"]],
"xblocks" : ["int" , ["11", "11", "9"]],
"estimated_FLOP" : ["float" , "117.498238"]
}

View File

@@ -0,0 +1,13 @@
{
"dataset" : ["str" , "cifar"],
"arch" : ["str" , "resnet"],
"depth" : ["int" , "56"],
"module" : ["str" , "ResNetBasicblock"],
"super_type" : ["str" , "infer-shape"],
"zero_init_residual" : ["bool" , "0"],
"class_num" : ["int" , "10"],
"search_mode" : ["str" , "shape"],
"xchannels" : ["int" , ["3", "16", "16", "16", "14", "14", "14", "16", "12", "16", "6", "16", "4", "4", "4", "14", "4", "4", "6", "4", "32", "32", "32", "32", "32", "32", "22", "25", "16", "32", "19", "9", "9", "16", "25", "12", "16", "9", "64", "64", "64", "64", "64", "64", "64", "64", "64", "51", "19", "19", "32", "51", "25", "32", "19", "19"]],
"xblocks" : ["int" , ["5", "5", "5"]],
"estimated_FLOP" : ["float" , "57.52595"]
}

View File

@@ -0,0 +1,11 @@
{
"dataset" : ["str" , "cifar"],
"arch" : ["str" , "resnet"],
"depth" : ["int" , "32"],
"module" : ["str" , "ResNetBasicblock"],
"super_type" : ["str" , "infer-width"],
"zero_init_residual" : ["bool" , "0"],
"class_num" : ["int" , "100"],
"xchannels" : ["int" , ["3", "12", "12", "12", "12", "12", "12", "12", "12", "12", "12", "12", "25", "25", "25", "25", "25", "25", "25", "25", "25", "25", "50", "50", "50", "50", "50", "50", "50", "50", "50", "50"]],
"estimated_FLOP" : ["float" , "41.095816"]
}

View File

@@ -0,0 +1,11 @@
{
"dataset" : ["str" , "cifar"],
"arch" : ["str" , "resnet"],
"depth" : ["int" , "32"],
"module" : ["str" , "ResNetBasicblock"],
"super_type" : ["str" , "infer-width"],
"zero_init_residual" : ["bool" , "0"],
"class_num" : ["int" , "100"],
"xchannels" : ["int" , ["3", "4", "11", "11", "11", "12", "14", "16", "8", "9", "6", "12", "28", "32", "28", "32", "12", "25", "28", "22", "28", "25", "57", "19", "38", "64", "64", "51", "57", "64", "64", "57"]],
"estimated_FLOP" : ["float" , "42.908996"]
}

View File

@@ -0,0 +1,13 @@
{
"dataset" : ["str" , "cifar"],
"arch" : ["str" , "resnet"],
"depth" : ["int" , "110"],
"module" : ["str" , "ResNetBasicblock"],
"super_type" : ["str" , "infer-shape"],
"zero_init_residual" : ["bool" , "0"],
"class_num" : ["int" , "100"],
"search_mode" : ["str" , "shape"],
"xchannels" : ["int" , ["3", "16", "14", "16", "11", "14", "16", "16", "11", "16", "9", "14", "12", "16", "16", "16", "8", "16", "14", "16", "12", "4", "11", "16", "4", "4", "4", "16", "12", "4", "8", "4", "9", "4", "6", "14", "4", "4", "32", "32", "32", "32", "28", "28", "32", "32", "32", "32", "32", "28", "32", "28", "25", "32", "32", "32", "9", "9", "32", "32", "9", "25", "28", "32", "28", "9", "9", "32", "12", "12", "9", "22", "12", "9", "64", "64", "64", "64", "64", "64", "64", "64", "64", "64", "64", "64", "64", "64", "64", "44", "64", "57", "19", "19", "19", "19", "25", "19", "25", "19", "25", "19", "19", "25", "19", "19", "19", "25", "25", "19"]],
"xblocks" : ["int" , ["13", "9", "11"]],
"estimated_FLOP" : ["float" , "117.653164"]
}

View File

@@ -0,0 +1,11 @@
{
"dataset" : ["str" , "cifar"],
"arch" : ["str" , "resnet"],
"depth" : ["int" , "32"],
"module" : ["str" , "ResNetBasicblock"],
"super_type" : ["str" , "infer-width"],
"zero_init_residual" : ["bool" , "0"],
"class_num" : ["int" , "100"],
"xchannels" : ["int" , ["3", "16", "4", "4", "4", "14", "6", "4", "8", "4", "4", "4", "32", "32", "9", "28", "28", "28", "28", "28", "32", "32", "64", "64", "64", "64", "64", "64", "64", "64", "64", "64"]],
"estimated_FLOP" : ["float" , "42.493184"]
}

View File

@@ -0,0 +1,13 @@
{
"dataset" : ["str" , "cifar"],
"arch" : ["str" , "resnet"],
"depth" : ["int" , "56"],
"module" : ["str" , "ResNetBasicblock"],
"super_type" : ["str" , "infer-shape"],
"zero_init_residual" : ["bool" , "0"],
"class_num" : ["int" , "100"],
"search_mode" : ["str" , "shape"],
"xchannels" : ["int" , ["3", "16", "16", "9", "14", "16", "14", "16", "8", "16", "8", "14", "4", "4", "4", "8", "4", "6", "4", "4", "32", "32", "32", "28", "32", "32", "32", "22", "32", "32", "32", "9", "25", "19", "25", "12", "9", "9", "64", "64", "64", "64", "64", "64", "64", "64", "64", "51", "19", "19", "19", "19", "25", "38", "19", "19"]],
"xblocks" : ["int" , ["5", "5", "7"]],
"estimated_FLOP" : ["float" , "59.472556"]
}

View File

@@ -1,8 +0,0 @@
{
"type" : ["str", "cosine"],
"batch_size": ["int", 128],
"epochs" : ["int", 1800],
"momentum" : ["float", 0.9],
"decay" : ["float", 0.0001],
"LR" : ["float", 0.2]
}

View File

@@ -1,8 +0,0 @@
{
"type" : ["str", "cosine"],
"batch_size": ["int", 128],
"epochs" : ["int", 600],
"momentum" : ["float", 0.9],
"decay" : ["float", 0.0005],
"LR" : ["float", 0.2]
}

View File

@@ -1,14 +0,0 @@
{
"type" : ["str", "cosine"],
"batch_size": ["int", 96],
"epochs" : ["int", 600],
"momentum" : ["float", 0.9],
"decay" : ["float", 0.0003],
"LR" : ["float", 0.025],
"LR_MIN" : ["float", 0.0001],
"auxiliary" : ["bool", 1],
"auxiliary_weight" : ["float", 0.4],
"grad_clip" : ["float", 5],
"cutout" : ["int", 16],
"drop_path_prob" : ["float", 0.2]
}

View File

@@ -1,14 +0,0 @@
{
"type" : ["str", "cosine"],
"batch_size": ["int", 128],
"epochs" : ["int", 600],
"momentum" : ["float", 0.9],
"decay" : ["float", 0.0003],
"LR" : ["float", 0.025],
"LR_MIN" : ["float", 0.0001],
"auxiliary" : ["bool", 1],
"auxiliary_weight" : ["float", 0.4],
"grad_clip" : ["float", 5],
"cutout" : ["int", 16],
"drop_path_prob" : ["float", 0.2]
}

View File

@@ -1,14 +0,0 @@
{
"type" : ["str", "cosine"],
"batch_size": ["int", 64],
"epochs" : ["int", 600],
"momentum" : ["float", 0.9],
"decay" : ["float", 0.0003],
"LR" : ["float", 0.025],
"LR_MIN" : ["float", 0.0001],
"auxiliary" : ["bool", 1],
"auxiliary_weight" : ["float", 0.4],
"grad_clip" : ["float", 5],
"cutout" : ["int", 16],
"drop_path_prob" : ["float", 0.2]
}

View File

@@ -1,14 +0,0 @@
{
"type" : ["str", "cosine"],
"batch_size": ["int", 96],
"epochs" : ["int", 600],
"momentum" : ["float", 0.9],
"decay" : ["float", 0.0003],
"LR" : ["float", 0.025],
"LR_MIN" : ["float", 0.0001],
"auxiliary" : ["bool", 1],
"auxiliary_weight" : ["float", 0.4],
"grad_clip" : ["float", 5],
"cutout" : ["int", 16],
"drop_path_prob" : ["float", 0.2]
}

View File

@@ -1,14 +0,0 @@
{
"type" : ["str", "cosine"],
"batch_size": ["int", 96],
"epochs" : ["int", 600],
"momentum" : ["float", 0.9],
"decay" : ["float", 0.0001],
"LR" : ["float", 0.025],
"LR_MIN" : ["float", 0.0001],
"auxiliary" : ["bool", 1],
"auxiliary_weight" : ["float", 0.4],
"grad_clip" : ["float", 5],
"cutout" : ["int", 16],
"drop_path_prob" : ["float", 0.2]
}

View File

@@ -1,14 +0,0 @@
{
"type" : ["str", "cosine"],
"batch_size": ["int", 96],
"epochs" : ["int", 600],
"momentum" : ["float", 0.9],
"decay" : ["float", 0.0003],
"LR" : ["float", 0.025],
"LR_MIN" : ["float", 0.0001],
"auxiliary" : ["bool", 1],
"auxiliary_weight" : ["float", 0.4],
"grad_clip" : ["float", 5],
"cutout" : ["int", 16],
"drop_path_prob" : ["float", 0.2]
}

View File

@@ -1,14 +0,0 @@
{
"type" : ["str", "cosine"],
"batch_size": ["int", 96],
"epochs" : ["int", 600],
"momentum" : ["float", 0.9],
"decay" : ["float", 0.0005],
"LR" : ["float", 0.025],
"LR_MIN" : ["float", 0.0001],
"auxiliary" : ["bool", 1],
"auxiliary_weight" : ["float", 0.4],
"grad_clip" : ["float", 5],
"cutout" : ["int", 16],
"drop_path_prob" : ["float", 0.2]
}

View File

@@ -1,14 +0,0 @@
{
"type" : ["str", "cosine"],
"batch_size": ["int", 96],
"epochs" : ["int", 600],
"momentum" : ["float", 0.9],
"decay" : ["float", 0.0003],
"LR" : ["float", 0.025],
"LR_MIN" : ["float", 0.0001],
"auxiliary" : ["bool", 1],
"auxiliary_weight" : ["float", 0.4],
"grad_clip" : ["float", 5],
"cutout" : ["int", 0],
"drop_path_prob" : ["float", 0.3]
}

View File

@@ -1,15 +0,0 @@
{
"type" : ["str", "steplr"],
"batch_size": ["int", 128],
"epochs" : ["int", 250],
"decay_period": ["int", 1],
"gamma" : ["float", 0.97],
"momentum" : ["float", 0.9],
"decay" : ["float", 0.00003],
"LR" : ["float", 0.1],
"label_smooth": ["float", 0.1],
"auxiliary" : ["bool", 1],
"auxiliary_weight" : ["float", 0.4],
"grad_clip" : ["float", 5],
"drop_path_prob" : ["float", 0]
}

View File

@@ -1,15 +0,0 @@
{
"type" : ["str", "steplr"],
"batch_size": ["int", 256],
"epochs" : ["int", 250],
"decay_period": ["int", 1],
"gamma" : ["float", 0.97],
"momentum" : ["float", 0.9],
"decay" : ["float", 0.00003],
"LR" : ["float", 0.1],
"label_smooth": ["float", 0.1],
"auxiliary" : ["bool", 1],
"auxiliary_weight" : ["float", 0.4],
"grad_clip" : ["float", 5],
"drop_path_prob" : ["float", 0]
}

View File

@@ -1,15 +0,0 @@
{
"type" : ["str", "steplr"],
"batch_size": ["int", 128],
"epochs" : ["int", 250],
"decay_period": ["int", 1],
"gamma" : ["float", 0.97],
"momentum" : ["float", 0.9],
"decay" : ["float", 0.00003],
"LR" : ["float", 0.1],
"label_smooth": ["float", 0.1],
"auxiliary" : ["bool", 1],
"auxiliary_weight" : ["float", 0.4],
"grad_clip" : ["float", 5],
"drop_path_prob" : ["float", 0]
}

View File

@@ -0,0 +1,13 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "120"],
"warmup" : ["int", "5"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.5"],
"decay" : ["float", "0.0001"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "Softmax"],
"auxiliary": ["float", "-1"]
}

View File

@@ -0,0 +1,13 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "300"],
"warmup" : ["int", "5"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.1"],
"decay" : ["float", "0.0005"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "Softmax"],
"auxiliary": ["float", "-1"]
}

View File

@@ -0,0 +1,12 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "300"],
"warmup" : ["int", "5"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.4"],
"decay" : ["float", "0.0005"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "Softmax"]
}

View File

@@ -0,0 +1,12 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "600"],
"warmup" : ["int", "5"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.1"],
"decay" : ["float", "0.0005"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "Softmax"]
}

View File

@@ -0,0 +1,13 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "100"],
"warmup" : ["int", "5"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.1"],
"decay" : ["float", "0.0005"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "Softmax"],
"auxiliary": ["float", "-1"]
}

View File

@@ -0,0 +1,13 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "300"],
"warmup" : ["int", "5"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.1"],
"decay" : ["float", "0.0005"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "Softmax"],
"auxiliary": ["float", "-1"]
}

View File

@@ -0,0 +1,13 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "595"],
"warmup" : ["int", "5"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.025"],
"decay" : ["float", "0.0005"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "Softmax"],
"auxiliary": ["float", "0.4"]
}

View File

@@ -0,0 +1,13 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "300"],
"warmup" : ["int", "5"] ,
"optim" : ["str", "SGD"],
"LR" : ["float", "0.1"],
"decay" : ["float", "0.0005"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool" , "1"] ,
"criterion": ["str" , "Softmax"],
"auxiliary": ["float", "-1"]
}

View File

@@ -0,0 +1,14 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "120"],
"warmup" : ["int", "5"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.1"],
"decay" : ["float", "0.0001"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "SmoothSoftmax"],
"label_smooth": ["float", 0.1],
"auxiliary": ["float", "-1"]
}

View File

@@ -0,0 +1,13 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "120"],
"warmup" : ["int", "5"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.1"],
"decay" : ["float", "0.0001"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "Softmax"],
"auxiliary": ["float", "-1"]
}

View File

@@ -0,0 +1,14 @@
{
"scheduler": ["str", "multistep"],
"epochs" : ["int", "120"],
"warmup" : ["int", "5"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.1"],
"milestones":["int", [30, 60, 90]],
"gammas" : ["float", [0.1, 0.1, 0.1]],
"decay" : ["float", "0.0001"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "Softmax"],
"auxiliary": ["float", "-1"]
}

View File

@@ -0,0 +1,14 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "150"],
"warmup" : ["int", "0"],
"gamma" : ["float", "0.98"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.05"],
"decay" : ["float", "0.00004"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "0"],
"criterion": ["str", "Softmax"],
"auxiliary": ["float", "-1"]
}

View File

@@ -0,0 +1,15 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "150"],
"warmup" : ["int", "0"],
"gamma" : ["float", "0.98"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.05"],
"decay" : ["float", "0.00004"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "0"],
"criterion": ["str", "SmoothSoftmax"],
"label_smooth": ["float", 0.1],
"auxiliary": ["float", "-1"]
}

View File

@@ -0,0 +1,14 @@
{
"scheduler": ["str", "linear"],
"LR_min" : ["float", "0.0"],
"epochs" : ["int", "240"],
"warmup" : ["int", "0"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.5"],
"decay" : ["float", "0.00004"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "SmoothSoftmax"],
"label_smooth": ["float", 0.1],
"auxiliary": ["float", "-1"]
}

View File

@@ -0,0 +1,14 @@
{
"scheduler": ["str", "exponential"],
"epochs" : ["int", "480"],
"warmup" : ["int", "0"],
"gamma" : ["float", "0.98"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.045"],
"decay" : ["float", "0.00004"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "0"],
"criterion": ["str", "SmoothSoftmax"],
"label_smooth": ["float", 0.1],
"auxiliary": ["float", "-1"]
}

View File

@@ -0,0 +1,13 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "595"],
"warmup" : ["int", "5"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.025"],
"decay" : ["float", "0.0005"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "Softmax"],
"auxiliary": ["float", "0.4"]
}

View File

@@ -0,0 +1,13 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "295"],
"warmup" : ["int", "5"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.025"],
"decay" : ["float", "0.0005"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "Softmax"],
"auxiliary": ["float", "0.4"]
}

View File

@@ -0,0 +1,14 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "245"],
"warmup" : ["int", "5"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.1"],
"decay" : ["float", "0.00003"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "SmoothSoftmax"],
"label_smooth": ["float", 0.1],
"auxiliary" : ["float", "0.4"]
}

View File

@@ -1,10 +0,0 @@
{
"type" : ["str", "multistep"],
"batch_size": ["int", 128],
"epochs" : ["int", 300],
"momentum" : ["float", 0.9],
"decay" : ["float", 0.0001],
"LR" : ["float", 0.1],
"milestones": ["int", [150, 225]],
"gammas" : ["float", [0.1, 0.1]]
}

View File

@@ -1,10 +0,0 @@
{
"type" : ["str", "multistep"],
"batch_size": ["int", 128],
"epochs" : ["int", 300],
"momentum" : ["float", 0.9],
"decay" : ["float", 0.0001],
"LR" : ["float", 0.5],
"milestones": ["int", [150, 225]],
"gammas" : ["float", [0.1, 0.1]]
}

View File

@@ -1,10 +0,0 @@
{
"type" : ["str", "multistep"],
"batch_size": ["int", 128],
"epochs" : ["int", 165],
"momentum" : ["float", 0.9],
"decay" : ["float", 0.0001],
"LR" : ["float", 0.01],
"milestones": ["int", [1, 83, 124]],
"gammas" : ["float", [10, 0.1, 0.1]]
}

View File

@@ -1,10 +0,0 @@
{
"type" : ["str", "multistep"],
"batch_size": ["int", 128],
"epochs" : ["int", 200],
"momentum" : ["float", 0.9],
"decay" : ["float", 0.0005],
"LR" : ["float", 0.01],
"milestones": ["int", [1 , 60, 120, 160]],
"gammas" : ["float", [10, 0.2, 0.2, 0.2]]
}

View File

@@ -0,0 +1,14 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "125"],
"T_max" : ["int", "120"],
"warmup" : ["int", "5"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.1"],
"decay" : ["float", "0.0001"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "Softmax"],
"auxiliary": ["float", "-1"]
}

View File

@@ -0,0 +1,15 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "155"],
"T_max" : ["int", "150"],
"warmup" : ["int", "0"],
"gamma" : ["float", "0.98"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.05"],
"decay" : ["float", "0.00004"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "0"],
"criterion": ["str", "Softmax"],
"auxiliary": ["float", "-1"]
}

View File

@@ -0,0 +1,9 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "MobileNetV2"],
"width_mult" : ["float", 1.0],
"dropout" : ["float", 0.0],
"input_channel" : ["int", 32],
"last_channel" : ["int", 1280],
"block_name" : ["str", "InvertedResidual"]
}

View File

@@ -0,0 +1,8 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "resnet"],
"block_name" : ["str", "BasicBlock"],
"layers" : ["int", [2,2,2,2]],
"deep_stem" : ["bool", 0],
"zero_init_residual" : ["bool", "1"]
}

View File

@@ -0,0 +1,8 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "resnet"],
"block_name" : ["str", "BasicBlock"],
"layers" : ["int", [3,4,6,3]],
"deep_stem" : ["bool", 0],
"zero_init_residual" : ["bool", "1"]
}

View File

@@ -0,0 +1,8 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "resnet"],
"block_name" : ["str", "Bottleneck"],
"layers" : ["int", [3,4,6,3]],
"deep_stem" : ["bool", 0],
"zero_init_residual" : ["bool", "1"]
}

View File

@@ -0,0 +1,14 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "300"],
"warmup" : ["int", "5"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.1"],
"decay" : ["float", "0.0005"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "Softmax"],
"arch_LR" : ["float", "0.001"],
"arch_decay" : ["float", "0.001"]
}

View File

@@ -0,0 +1,14 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "600"],
"warmup" : ["int", "0"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.1"],
"decay" : ["float", "0.0005"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "Softmax"],
"arch_LR" : ["float", "0.001"],
"arch_decay" : ["float", "0.001"]
}

View File

@@ -0,0 +1,14 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "900"],
"warmup" : ["int", "5"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.1"],
"decay" : ["float", "0.0005"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "Softmax"],
"arch_LR" : ["float", "0.001"],
"arch_decay" : ["float", "0.001"]
}

View File

@@ -0,0 +1,15 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "150"],
"warmup" : ["int", "0"],
"gamma" : ["float", "0.98"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.05"],
"decay" : ["float", "0.00004"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "0"],
"criterion": ["str", "Softmax"],
"arch_LR" : ["float", "0.001"],
"arch_decay" : ["float", "0.001"]
}

View File

@@ -0,0 +1,14 @@
{
"scheduler": ["str", "cos"],
"eta_min" : ["float", "0.0"],
"epochs" : ["int", "115"],
"warmup" : ["int", "5"],
"optim" : ["str", "SGD"],
"LR" : ["float", "0.1"],
"decay" : ["float", "0.0001"],
"momentum" : ["float", "0.9"],
"nesterov" : ["bool", "1"],
"criterion": ["str", "Softmax"],
"arch_LR" : ["float", "0.001"],
"arch_decay" : ["float", "0.001"]
}

View File

@@ -0,0 +1,8 @@
{
"dataset" : ["str", "imagenet"],
"arch" : ["str", "MobileNetV2"],
"dropout" : ["float", 0.0],
"super_type" : ["str", "infer-shape"],
"xchannels" : ["str", "3-32 32-16 16-96-24 24-86-24 24-86-32 32-96-32 32-77-32 32-77-32 32-231-48 48-269-48 48-269-64 64-269-64 64-192-67 67-246-77 77-288-96 96-346-96 96-576-160 160-480-128 128-576-320 320-768"],
"xblocks" : ["int", [1, 2, 3, 3, 3, 3, 1]]
}

View File

@@ -0,0 +1,14 @@
{
"dataset" : ["str" , "imagenet"],
"arch" : ["str" , "resnet"],
"block_name" : ["str" , "BasicBlock"],
"layers" : ["int" , ["2", "2", "2", "2"]],
"deep_stem" : ["bool" , "0"],
"class_num" : ["int" , "1000"],
"search_mode" : ["str" , "shape"],
"xchannels" : ["int" , ["3", "48", "64", "38", "25", "57", "102", "89", "102", "115", "128", "230", "230", "256", "153", "358", "358", "460"]],
"xblocks" : ["int" , ["2", "2", "2", "2"]],
"super_type" : ["str" , "infer-shape"],
"estimated_FLOP" : ["float" , "953.381522"],
"zero_init_residual" : ["bool" , "1"]
}

View File

@@ -0,0 +1,14 @@
{
"dataset" : ["str" , "imagenet"],
"arch" : ["str" , "resnet"],
"block_name" : ["str" , "Bottleneck"],
"layers" : ["int" , ["3", "4", "6", "3"]],
"deep_stem" : ["bool" , "0"],
"zero_init_residual" : ["bool" , "1"],
"class_num" : ["int" , "1000"],
"search_mode" : ["str" , "shape"],
"xchannels" : ["int" , ["3", "45", "45", "30", "102", "33", "60", "154", "68", "70", "180", "38", "38", "307", "38", "38", "410", "64", "128", "358", "38", "51", "256", "76", "76", "512", "76", "76", "512", "179", "256", "614", "100", "102", "307", "179", "230", "614", "204", "102", "307", "153", "153", "1228", "512", "512", "1434", "512", "512", "1844"]],
"xblocks" : ["int" , ["3", "4", "5", "3"]],
"super_type" : ["str" , "infer-shape"],
"estimated_FLOP" : ["float" , "2291.316289"]
}

View File

@@ -0,0 +1,14 @@
{
"dataset" : ["str" , "imagenet"],
"arch" : ["str" , "resnet"],
"block_name" : ["str" , "BasicBlock"],
"layers" : ["int" , ["2", "2", "2", "2"]],
"deep_stem" : ["bool" , "0"],
"zero_init_residual" : ["bool" , "1"],
"class_num" : ["int" , "1000"],
"search_mode" : ["str" , "shape"],
"xchannels" : ["int" , ["3", "64", "25", "64", "38", "19", "128", "128", "38", "38", "256", "256", "256", "256", "512", "512", "512", "512"]],
"xblocks" : ["int" , ["1", "1", "2", "2"]],
"super_type" : ["str" , "infer-shape"],
"estimated_FLOP" : ["float" , "1120.44032"]
}

View File

@@ -0,0 +1,14 @@
{
"dataset" : ["str" , "imagenet"],
"arch" : ["str" , "resnet"],
"block_name" : ["str" , "Bottleneck"],
"layers" : ["int" , ["3", "4", "6", "3"]],
"deep_stem" : ["bool" , "0"],
"zero_init_residual" : ["bool" , "1"],
"class_num" : ["int" , "1000"],
"search_mode" : ["str" , "shape"],
"xchannels" : ["int" , ["3", "64", "64", "64", "230", "25", "19", "128", "19", "38", "76", "128", "128", "512", "38", "38", "204", "38", "51", "256", "51", "51", "153", "256", "256", "1024", "256", "256", "1024", "256", "256", "921", "256", "256", "1024", "76", "76", "614", "102", "76", "307", "512", "512", "2048", "512", "512", "2048", "512", "512", "2048"]],
"xblocks" : ["int" , ["1", "1", "2", "3"]],
"super_type" : ["str" , "infer-shape"],
"estimated_FLOP" : ["float" , "1680.93696"]
}