Clean state
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"run_name": "p2a_t1_original",
|
||||
"backbone": "resnet18",
|
||||
"pretrained": true,
|
||||
"epochs": 15,
|
||||
"image_size": 224,
|
||||
"subsample": 0.2,
|
||||
"augment": false,
|
||||
"data_dir": "data",
|
||||
"normalization": "imagenet"
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"extends": "p2a_t1_original.json",
|
||||
"run_name": "p2a_t2_real_norm",
|
||||
"normalization": "real_norm"
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"extends": "p2a_t1_original.json",
|
||||
"run_name": "p2a_t3_holdout_inpainting",
|
||||
"train_sources": [
|
||||
"wiki",
|
||||
"text2img",
|
||||
"insight"
|
||||
],
|
||||
"eval_sources": [
|
||||
"wiki",
|
||||
"text2img",
|
||||
"insight",
|
||||
"inpainting"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"extends": "p2a_t1_original.json",
|
||||
"run_name": "p2a_t3_holdout_insight",
|
||||
"train_sources": [
|
||||
"wiki",
|
||||
"text2img",
|
||||
"inpainting"
|
||||
],
|
||||
"eval_sources": [
|
||||
"wiki",
|
||||
"text2img",
|
||||
"inpainting",
|
||||
"insight"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"extends": "p2a_t1_original.json",
|
||||
"run_name": "p2a_t3_holdout_text2img",
|
||||
"train_sources": [
|
||||
"wiki",
|
||||
"inpainting",
|
||||
"insight"
|
||||
],
|
||||
"eval_sources": [
|
||||
"wiki",
|
||||
"inpainting",
|
||||
"insight",
|
||||
"text2img"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"run_name": "p2b_resnet18_224",
|
||||
"backbone": "resnet18",
|
||||
"pretrained": true,
|
||||
"epochs": 15,
|
||||
"image_size": 224,
|
||||
"subsample": 0.2,
|
||||
"augment": false,
|
||||
"data_dir": "data"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"run_name": "p2b_simplecnn_224",
|
||||
"backbone": "simple_cnn",
|
||||
"cnn_preset": "medium",
|
||||
"dropout": 0.0,
|
||||
"epochs": 15,
|
||||
"image_size": 224,
|
||||
"subsample": 0.2,
|
||||
"augment": false,
|
||||
"data_dir": "data"
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"run_name": "p2c_resnet18_facecrop",
|
||||
"backbone": "resnet18",
|
||||
"pretrained": true,
|
||||
"epochs": 15,
|
||||
"image_size": 224,
|
||||
"subsample": 0.2,
|
||||
"augment": false,
|
||||
"data_dir": "cropped/classifier"
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"run_name": "p2c_simplecnn_facecrop",
|
||||
"backbone": "simple_cnn",
|
||||
"cnn_preset": "medium",
|
||||
"dropout": 0.0,
|
||||
"epochs": 15,
|
||||
"image_size": 224,
|
||||
"subsample": 0.2,
|
||||
"augment": false,
|
||||
"data_dir": "cropped/classifier"
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"run_name": "p2d_resnet18_aug",
|
||||
"backbone": "resnet18",
|
||||
"pretrained": true,
|
||||
"epochs": 15,
|
||||
"image_size": 224,
|
||||
"subsample": 0.2,
|
||||
"data_dir": "data",
|
||||
"augment": {
|
||||
"hflip_p": 0.5,
|
||||
"rotation_degrees": 10,
|
||||
"brightness": 0.2,
|
||||
"contrast": 0.2,
|
||||
"saturation": 0.1,
|
||||
"hue": 0.02,
|
||||
"grayscale_p": 0.1,
|
||||
"blur_p": 0.1,
|
||||
"erase_p": 0.2,
|
||||
"noise_p": 0.3,
|
||||
"noise_std": 0.04
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"run_name": "p2d_simplecnn_aug",
|
||||
"backbone": "simple_cnn",
|
||||
"cnn_preset": "medium",
|
||||
"dropout": 0.0,
|
||||
"epochs": 15,
|
||||
"image_size": 224,
|
||||
"subsample": 0.2,
|
||||
"data_dir": "data",
|
||||
"augment": {
|
||||
"hflip_p": 0.5,
|
||||
"rotation_degrees": 10,
|
||||
"brightness": 0.2,
|
||||
"contrast": 0.2,
|
||||
"saturation": 0.1,
|
||||
"hue": 0.02,
|
||||
"grayscale_p": 0.1,
|
||||
"blur_p": 0.1,
|
||||
"erase_p": 0.2,
|
||||
"noise_p": 0.3,
|
||||
"noise_std": 0.04
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"run_name": "p2e_resnet18_facecrop_aug",
|
||||
"backbone": "resnet18",
|
||||
"pretrained": true,
|
||||
"epochs": 15,
|
||||
"image_size": 224,
|
||||
"subsample": 0.2,
|
||||
"data_dir": "cropped/classifier",
|
||||
"augment": {
|
||||
"hflip_p": 0.5,
|
||||
"rotation_degrees": 10,
|
||||
"brightness": 0.2,
|
||||
"contrast": 0.2,
|
||||
"saturation": 0.1,
|
||||
"hue": 0.02,
|
||||
"grayscale_p": 0.1,
|
||||
"blur_p": 0.1,
|
||||
"erase_p": 0.2,
|
||||
"noise_p": 0.3,
|
||||
"noise_std": 0.04
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"run_name": "p2e_simplecnn_facecrop_aug",
|
||||
"backbone": "simple_cnn",
|
||||
"cnn_preset": "medium",
|
||||
"dropout": 0.0,
|
||||
"epochs": 15,
|
||||
"image_size": 224,
|
||||
"subsample": 0.2,
|
||||
"data_dir": "cropped/classifier",
|
||||
"augment": {
|
||||
"hflip_p": 0.5,
|
||||
"rotation_degrees": 10,
|
||||
"brightness": 0.2,
|
||||
"contrast": 0.2,
|
||||
"saturation": 0.1,
|
||||
"hue": 0.02,
|
||||
"grayscale_p": 0.1,
|
||||
"blur_p": 0.1,
|
||||
"erase_p": 0.2,
|
||||
"noise_p": 0.3,
|
||||
"noise_std": 0.04
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user