update README

This commit is contained in:
D-X-Y
2019-09-28 20:18:18 +10:00
parent 180702ab8e
commit f8f3f382e0
18 changed files with 9 additions and 779 deletions

View File

@@ -1,10 +0,0 @@
{
"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

@@ -1,9 +0,0 @@
{
"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

@@ -1,9 +0,0 @@
{
"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

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

View File

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

View File

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

View File

@@ -1,14 +0,0 @@
{
"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

@@ -1,15 +0,0 @@
{
"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

@@ -1,14 +0,0 @@
{
"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

@@ -1,14 +0,0 @@
{
"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"]
}