add autodl
This commit is contained in:
8
AutoDL-Projects/configs/archs/CIFAR-ResNet08.config
Normal file
8
AutoDL-Projects/configs/archs/CIFAR-ResNet08.config
Normal 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"]
|
||||
}
|
8
AutoDL-Projects/configs/archs/CIFAR-ResNet1001.config
Normal file
8
AutoDL-Projects/configs/archs/CIFAR-ResNet1001.config
Normal 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"]
|
||||
}
|
8
AutoDL-Projects/configs/archs/CIFAR-ResNet110.config
Normal file
8
AutoDL-Projects/configs/archs/CIFAR-ResNet110.config
Normal 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"]
|
||||
}
|
8
AutoDL-Projects/configs/archs/CIFAR-ResNet164.config
Normal file
8
AutoDL-Projects/configs/archs/CIFAR-ResNet164.config
Normal 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"]
|
||||
}
|
8
AutoDL-Projects/configs/archs/CIFAR-ResNet20.config
Normal file
8
AutoDL-Projects/configs/archs/CIFAR-ResNet20.config
Normal 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"]
|
||||
}
|
8
AutoDL-Projects/configs/archs/CIFAR-ResNet32.config
Normal file
8
AutoDL-Projects/configs/archs/CIFAR-ResNet32.config
Normal 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"]
|
||||
}
|
8
AutoDL-Projects/configs/archs/CIFAR-ResNet56.config
Normal file
8
AutoDL-Projects/configs/archs/CIFAR-ResNet56.config
Normal 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"]
|
||||
}
|
7
AutoDL-Projects/configs/archs/CIFAR-SIM05.config
Normal file
7
AutoDL-Projects/configs/archs/CIFAR-SIM05.config
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"dataset" : ["str", "cifar"],
|
||||
"arch" : ["str", "simres"],
|
||||
"depth" : ["int", 5],
|
||||
"super_type": ["str" , "basic"],
|
||||
"zero_init_residual" : ["bool", "0"]
|
||||
}
|
8
AutoDL-Projects/configs/archs/CIFAR-WRN28-10.config
Normal file
8
AutoDL-Projects/configs/archs/CIFAR-WRN28-10.config
Normal 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"]
|
||||
}
|
12
AutoDL-Projects/configs/archs/ImageNet-ResNet101V1.config
Normal file
12
AutoDL-Projects/configs/archs/ImageNet-ResNet101V1.config
Normal 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"]
|
||||
|
||||
}
|
12
AutoDL-Projects/configs/archs/ImageNet-ResNet101V2.config
Normal file
12
AutoDL-Projects/configs/archs/ImageNet-ResNet101V2.config
Normal 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"]
|
||||
|
||||
}
|
11
AutoDL-Projects/configs/archs/ImageNet-ResNet152V1.config
Normal file
11
AutoDL-Projects/configs/archs/ImageNet-ResNet152V1.config
Normal 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"]
|
||||
}
|
11
AutoDL-Projects/configs/archs/ImageNet-ResNet152V2.config
Normal file
11
AutoDL-Projects/configs/archs/ImageNet-ResNet152V2.config
Normal 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"]
|
||||
}
|
11
AutoDL-Projects/configs/archs/ImageNet-ResNet18V1.config
Normal file
11
AutoDL-Projects/configs/archs/ImageNet-ResNet18V1.config
Normal 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"]
|
||||
}
|
12
AutoDL-Projects/configs/archs/ImageNet-ResNet18V2.config
Normal file
12
AutoDL-Projects/configs/archs/ImageNet-ResNet18V2.config
Normal 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"]
|
||||
|
||||
}
|
11
AutoDL-Projects/configs/archs/ImageNet-ResNet200V1.config
Normal file
11
AutoDL-Projects/configs/archs/ImageNet-ResNet200V1.config
Normal 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"]
|
||||
}
|
11
AutoDL-Projects/configs/archs/ImageNet-ResNet200V2.config
Normal file
11
AutoDL-Projects/configs/archs/ImageNet-ResNet200V2.config
Normal 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"]
|
||||
}
|
12
AutoDL-Projects/configs/archs/ImageNet-ResNet34V1.config
Normal file
12
AutoDL-Projects/configs/archs/ImageNet-ResNet34V1.config
Normal 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"]
|
||||
|
||||
}
|
12
AutoDL-Projects/configs/archs/ImageNet-ResNet34V2.config
Normal file
12
AutoDL-Projects/configs/archs/ImageNet-ResNet34V2.config
Normal 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"]
|
||||
|
||||
}
|
12
AutoDL-Projects/configs/archs/ImageNet-ResNet50V1.config
Normal file
12
AutoDL-Projects/configs/archs/ImageNet-ResNet50V1.config
Normal 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"]
|
||||
|
||||
}
|
12
AutoDL-Projects/configs/archs/ImageNet-ResNet50V2.config
Normal file
12
AutoDL-Projects/configs/archs/ImageNet-ResNet50V2.config
Normal 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"]
|
||||
|
||||
}
|
@@ -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"]
|
||||
|
||||
}
|
10
AutoDL-Projects/configs/archs/NAS-CIFAR-DARTS.config
Normal file
10
AutoDL-Projects/configs/archs/NAS-CIFAR-DARTS.config
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"arch" : ["str", "dxys"],
|
||||
"genotype" : ["str", "DARTS"],
|
||||
"dataset" : ["str", "cifar"],
|
||||
"ichannel" : ["int", 36],
|
||||
"layers" : ["int", 6],
|
||||
"stem_multi": ["int", 3],
|
||||
"auxiliary" : ["bool", 1],
|
||||
"drop_path_prob": ["float", 0.2]
|
||||
}
|
10
AutoDL-Projects/configs/archs/NAS-CIFAR-GDAS_V1.config
Normal file
10
AutoDL-Projects/configs/archs/NAS-CIFAR-GDAS_V1.config
Normal 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]
|
||||
}
|
10
AutoDL-Projects/configs/archs/NAS-CIFAR-NAS.config
Normal file
10
AutoDL-Projects/configs/archs/NAS-CIFAR-NAS.config
Normal 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]
|
||||
}
|
10
AutoDL-Projects/configs/archs/NAS-CIFAR-SETN.config
Normal file
10
AutoDL-Projects/configs/archs/NAS-CIFAR-SETN.config
Normal 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]
|
||||
}
|
10
AutoDL-Projects/configs/archs/NAS-CIFAR-none.config
Normal file
10
AutoDL-Projects/configs/archs/NAS-CIFAR-none.config
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"super_type": ["str", "infer-nasnet.cifar"],
|
||||
"genotype" : ["none", "none"],
|
||||
"dataset" : ["str", "cifar"],
|
||||
"ichannel" : ["int", 33],
|
||||
"layers" : ["int", 6],
|
||||
"stem_multi": ["int", 3],
|
||||
"auxiliary" : ["bool", 1],
|
||||
"drop_path_prob": ["float", 0.2]
|
||||
}
|
@@ -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]
|
||||
}
|
@@ -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]
|
||||
}
|
9
AutoDL-Projects/configs/archs/NAS-IMAGENET-SETN.config
Normal file
9
AutoDL-Projects/configs/archs/NAS-IMAGENET-SETN.config
Normal 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]
|
||||
}
|
9
AutoDL-Projects/configs/archs/NAS-IMAGENET-SETN1.config
Normal file
9
AutoDL-Projects/configs/archs/NAS-IMAGENET-SETN1.config
Normal 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]
|
||||
}
|
9
AutoDL-Projects/configs/archs/NAS-IMAGENET-SETN2.config
Normal file
9
AutoDL-Projects/configs/archs/NAS-IMAGENET-SETN2.config
Normal 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]
|
||||
}
|
9
AutoDL-Projects/configs/archs/NAS-IMAGENET-SETN3.config
Normal file
9
AutoDL-Projects/configs/archs/NAS-IMAGENET-SETN3.config
Normal 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]
|
||||
}
|
9
AutoDL-Projects/configs/archs/NAS-IMAGENET-SETN4.config
Normal file
9
AutoDL-Projects/configs/archs/NAS-IMAGENET-SETN4.config
Normal 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]
|
||||
}
|
9
AutoDL-Projects/configs/archs/NAS-IMAGENET-none.config
Normal file
9
AutoDL-Projects/configs/archs/NAS-IMAGENET-none.config
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"super_type": ["str", "infer-nasnet.imagenet"],
|
||||
"genotype" : ["none", "none"],
|
||||
"dataset" : ["str", "imagenet"],
|
||||
"ichannel" : ["int", 50],
|
||||
"layers" : ["int", 4],
|
||||
"auxiliary" : ["bool", 1],
|
||||
"drop_path_prob": ["float", 0]
|
||||
}
|
Reference in New Issue
Block a user