Skip to content

Instantly share code, notes, and snippets.

@pbcorrea
Created June 2, 2020 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pbcorrea/792f5cea11dcfc2998a315bfdafb5017 to your computer and use it in GitHub Desktop.
Save pbcorrea/792f5cea11dcfc2998a315bfdafb5017 to your computer and use it in GitHub Desktop.
Training Spec File for SSD
ssd_config {
aspect_ratios_global: "[1.0, 2.0, 0.5, 3.0, 0.33]"
scales: "[0.1, 0.24166667, 0.38333333, 0.525, 0.66666667, 0.80833333, 0.95]"
two_boxes_for_ar1: true
clip_boxes: false
loss_loc_weight: 1.0
focal_loss_alpha: 0.25
focal_loss_gamma: 2.0
variances: "[0.1, 0.1, 0.2, 0.2]"
arch: "mobilenet_v2"
freeze_bn: True
freeze_blocks: 0
freeze_blocks: 1}
training_config {
batch_size_per_gpu: 4
num_epochs: 60
learning_rate {
soft_start_annealing_schedule {
min_learning_rate: 5e-5
max_learning_rate: 2e-2
soft_start: 0.15
annealing: 0.5
}
}
regularizer {
type: L1
weight: 3e-06
}
}
eval_config {
validation_period_during_training: 10
average_precision_mode: SAMPLE
batch_size: 4
matching_iou_threshold: 0.5
}
nms_config {
confidence_threshold: 0.01
clustering_iou_threshold: 0.6
top_k: 200
}
augmentation_config {
preprocessing {
output_image_width: 1280
output_image_height: 720
output_image_channel: 3
crop_right: 1280
crop_bottom: 720
min_bbox_width: 1.0
min_bbox_height: 1.0
}
spatial_augmentation {
hflip_probability: 0.5
vflip_probability: 0.0
zoom_min: 0.7
zoom_max: 1.8
translate_max_x: 8.0
translate_max_y: 8.0
}
color_augmentation {
hue_rotation_max: 25.0
saturation_shift_max: 0.20000000298
contrast_scale_max: 0.10000000149
contrast_center: 0.5
}
}
dataset_config {
data_sources: {
tfrecords_path: "/workspace/tlt-experiments/data/labs_v1.0.1/tf_records/*"
image_directory_path: "/workspace/tlt-experiments/data/labs_v1.0.1"
}
image_extension: "png"
target_class_mapping {
key: "person"
value: "person"
}
validation_fold: 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment