Skip to content

Commit

Permalink
Clarify Configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
James McClain committed Aug 14, 2018
1 parent 7e47b35 commit 825e900
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 34 deletions.
@@ -1,7 +1,10 @@
{
"training_number_of_steps": 3000,
"training_number_of_steps": 2000,
"train_split": "train",
"model_variant": "mobilenet_v2",
"decoder_output_stride": 1,
"train_batch_size": 2
"dataset": "custom",
"output_stride": 8,
"train_batch_size": 2,
"initialize_last_layer": false,
"last_layers_contain_logits_only": false
}
Expand Up @@ -12,16 +12,14 @@
"ground_truth_label_store": {
"segmentation_raster_file": {
"src": {
"geotiff_files": {
"uris": [
"/opt/data/top_potsdam_2_10_label_georeferenced.tif"
]
"image_file": {
"uri": "/opt/data/top_potsdam_2_10_label_noBoundary.tif"
}
},
"raster_class_map": [
{
"source_class": "#ffff00",
"raster_vision_class": 255
"raster_vision_class": 1
}
]
}
Expand All @@ -41,16 +39,14 @@
"ground_truth_label_store": {
"segmentation_raster_file": {
"src": {
"geotiff_files": {
"uris": [
"/opt/data/top_potsdam_2_11_label_georeferenced.tif"
]
"image_file": {
"uri": "/opt/data/top_potsdam_2_11_label_noBoundary.tif"
}
},
"raster_class_map": [
{
"source_class": "#ffff00",
"raster_vision_class": 255
"raster_vision_class": 1
}
]
}
Expand All @@ -62,7 +58,7 @@
"backend": "TF_DEEPLAB",
"class_items": [
{
"id": 255,
"id": 1,
"name": "car",
"color": "#ffff00"
}
Expand All @@ -89,7 +85,7 @@
"eval_options": {
},
"debug": true,
"chip_size": 300,
"chip_size": 512,
"raster_transformer": {
"channel_order": [0, 1, 2]
},
Expand Down
Expand Up @@ -12,16 +12,14 @@
"ground_truth_label_store": {
"segmentation_raster_file": {
"src": {
"geotiff_files": {
"uris": [
"/opt/data/top_potsdam_2_10_label_georeferenced.tif"
]
"image_file": {
"uri": "/opt/data/top_potsdam_2_10_label_noBoundary.tif"
}
},
"raster_class_map": [
{
"source_class": "#ffff00",
"raster_vision_class": 255
"raster_vision_class": 1
}
]
}
Expand All @@ -41,16 +39,14 @@
"ground_truth_label_store": {
"segmentation_raster_file": {
"src": {
"geotiff_files": {
"uris": [
"/opt/data/top_potsdam_2_11_label_georeferenced.tif"
]
"image_file": {
"uri": "/opt/data/top_potsdam_2_11_label_noBoundary.tif"
}
},
"raster_class_map": [
{
"source_class": "#ffff00",
"raster_vision_class": 255
"raster_vision_class": 1
}
]
}
Expand All @@ -62,22 +58,17 @@
"backend": "TF_DEEPLAB",
"class_items": [
{
"id": 255,
"id": 1,
"name": "car",
"color": "#ffff00"
},
{
"id": 127,
"name": "building",
"color": "#0000ff"
}
]
},
"make_training_chips_options": {
"segmentation_options": {
"empty_survival_probability": 0.2,
"empty_survival_probability": 0.1,
"number_of_chips": 133,
"debug_chip_probability": 0.20
"debug_chip_probability": 0.1
}
},
"train_options": {
Expand All @@ -94,7 +85,7 @@
"eval_options": {
},
"debug": true,
"chip_size": 513,
"chip_size": 512,
"raster_transformer": {
"channel_order": [0, 1, 2]
},
Expand Down

0 comments on commit 825e900

Please sign in to comment.