我是tensorflow的新手,目前正在研究对象检测API。
我选择ssd_resnet50_fpn入门,并从tensorflow模型动物园下载了预训练的模型,以便使用只有1个班级(人)的我自己的数据集进行迁移学习。训练配置是在pipeline.config中定义的,pipeline.config是从预训练模型的同一包中修改而来的,我用旧版train.py脚本训练了模型。
训练过程很好,并且损失按预期减少,我在进行评估时(通过旧版eval.py)导出了带有边界框的评估图像。推断很好,并且那些导出的图像按预期工作。
但是,我发现在同一模型检查点获得不同的评估结果很奇怪。当我使用相同的参数两次执行eval.py时,我发现在同一张图像上,推理的边界框是不同的。
这是eval.py(coco_detection_metrics)得出的评估结果
由于我对mAP不太了解,但是两个结果略有不同。
这是评估过程中导出的图像之一,左边是第一次评估,右边是第二次评估。
Exported Image during evaluation
好像模型权重在推断过程中发生变化, 我如何找出问题所在?有没有我错过的配置?
我将tensorflow 1.10.1与python 3.5.2结合使用,并且从https://github.com/tensorflow/models克隆了对象检测API,没有任何更改。
这是我的pipeline.config:
model {
ssd {
num_classes: 1
image_resizer {
fixed_shape_resizer {
height: 640
width: 640
}
}
feature_extractor {
type: "ssd_resnet50_v1_fpn"
depth_multiplier: 1.0
min_depth: 16
conv_hyperparams {
regularizer {
l2_regularizer {
weight: 0.000399999989895
}
}
initializer {
truncated_normal_initializer {
mean: 0.0
stddev: 0.0299999993294
}
}
activation: RELU_6
batch_norm {
decay: 0.996999979019
scale: true
epsilon: 0.0010000000475
}
}
override_base_feature_extractor_hyperparams: true
}
box_coder {
faster_rcnn_box_coder {
y_scale: 10.0
x_scale: 10.0
height_scale: 5.0
width_scale: 5.0
}
}
matcher {
argmax_matcher {
matched_threshold: 0.5
unmatched_threshold: 0.5
ignore_thresholds: false
negatives_lower_than_unmatched: true
force_match_for_each_row: true
use_matmul_gather: true
}
}
similarity_calculator {
iou_similarity {
}
}
box_predictor {
weight_shared_convolutional_box_predictor {
conv_hyperparams {
regularizer {
l2_regularizer {
weight: 0.000399999989895
}
}
initializer {
random_normal_initializer {
mean: 0.0
stddev: 0.00999999977648
}
}
activation: RELU_6
batch_norm {
decay: 0.996999979019
scale: true
epsilon: 0.0010000000475
}
}
use_dropout: true
dropout_keep_probability: 0.7
depth: 256
num_layers_before_predictor: 4
kernel_size: 3
class_prediction_bias_init: -4.59999990463
}
}
anchor_generator {
multiscale_anchor_generator {
min_level: 3
max_level: 7
anchor_scale: 4.0
aspect_ratios: 1.0
aspect_ratios: 2.0
aspect_ratios: 0.5
scales_per_octave: 2
}
}
post_processing {
batch_non_max_suppression {
score_threshold: 0.300000011921
iou_threshold: 0.600000023842
max_detections_per_class: 100
max_total_detections: 100
}
score_converter: SIGMOID
}
normalize_loss_by_num_matches: true
loss {
localization_loss {
weighted_smooth_l1 {
}
}
classification_loss {
weighted_sigmoid_focal {
gamma: 2.0
alpha: 0.25
}
}
classification_weight: 1.0
localization_weight: 1.0
}
encode_background_as_zeros: true
normalize_loc_loss_by_codesize: true
inplace_batchnorm_update: true
freeze_batchnorm: false
}
}
train_config {
batch_size: 8
data_augmentation_options {
random_horizontal_flip {
}
}
data_augmentation_options {
random_crop_image {
min_object_covered: 0.0
min_aspect_ratio: 0.75
max_aspect_ratio: 3.0
min_area: 0.75
max_area: 1.0
overlap_thresh: 0.0
}
}
sync_replicas: false
optimizer {
adam_optimizer: {
learning_rate: {
exponential_decay_learning_rate {
initial_learning_rate: 0.0001
decay_steps: 5000
decay_factor: 0.9
}
}
}
use_moving_average: false
}
fine_tune_checkpoint: "/tf-object-detection-training/models/ssd_resnet50/saved/model.ckpt-652123"
num_steps: 2000000
from_detection_checkpoint: true
load_all_detection_checkpoint_vars: true
startup_delay_steps: 0.0
replicas_to_aggregate: 8
max_number_of_boxes: 100
unpad_groundtruth_tensors: false
}
train_input_reader {
label_map_path: "/tf-object-detection-training/dataset_VOC/label.pbtxt"
tf_record_input_reader {
input_path: "/tf-object-detection-training/dataset_VOC/person_train.record-?????-of-00010"
}
}
eval_config {
num_examples: 10000
num_visualizations: 100
eval_interval_secs: 60
metrics_set: "coco_detection_metrics"
use_moving_averages: false
min_score_threshold: 0.5
retain_original_images: false
keep_image_id_for_visualization_export: true
visualization_export_dir: "/tf-object-detection-training/models/ssd_resnet50/eval_detections/"
}
eval_input_reader {
label_map_path: "/tf-object-detection-training/dataset_VOC/label.pbtxt"
shuffle: false
num_readers: 1
tf_record_input_reader {
input_path: "/tf-object-detection-training/dataset_VOC/person_val.record-?????-of-00010"
}
}
谢谢您的建议
答案 0 :(得分:0)
在长时间跟踪代码之后,我发现答案是在pipeline.config中设置了“ use_dropout”标志。 似乎在进行推理时不会删除dropout函数,因此eval.py和Frozen_inference_graph都应用了dropout函数并进行了随机推理。
要解决此问题,只需从管道中删除“ use_dropout”即可。config可以解决此问题。