更新经过训练的对象检测模型以对应于 TF 更新

Update trained object detection Models to correspond to TF updates

出于稳定性原因,我正在过渡到新版本的 TF(在主线切换到 CUDA 10 之前,我在 Ubuntu 18.04 上使用每晚 docker 构建)。当我尝试在新版本中 运行 我的模型时,出现以下错误,我认为这意味着与在旧版本上训练的模型不兼容。
File "/usr/local/lib/python3.5/dist-packages/tensorflow/python/framework/importer.py", line 426, in import_graph_def graph._c_graph, serialized, options) # pylint: disable=protected-access tensorflow.python.framework.errors_impl.InvalidArgumentError: NodeDef mentions attr 'explicit_paddings' not in Op<name=Conv2D; signature=input:T, filter:T -> output:T; attr=T:type,allowed=[DT_HALF, DT_BFLOAT16, DT_FLOAT, DT_DOUBLE]; attr=strides:list(int); attr=use_cudnn_on_gpu:bool,default=true; attr=padding:string,allowed=["SAME", "VALID"]; attr=data_format:string,default="NHWC",allowed=["NHWC", "NCHW"]; attr=dilations:list(int),default=[1, 1, 1, 1]>; NodeDef: {{node FirstStageFeatureExtractor/resnet_v1_101/resnet_v1_101/conv1/Conv2D}}. (Check whether your GraphDef-interpreting binary is up to date with your GraphDef-generating binary.).

我需要做什么来更新以前训练的模型以使用新版本的 TF,或者我是否需要继续 运行使用该版本直到我的下一次训练?

查看之后,必须更新图表。由于我还没有训练检查点,因此我通过从先前冻结的图形中导出作为检查点,成功地更新了图形。 python3 export_inference_graph.py --input_type image_tensor --pipeline_config_path FROZENGRAPHDIRECTORY/pipeline.config --trained_checkpoint_prefix FROZENGRAPHDIRECTORY/model.ckpt --output_directory FROZENGRAPHDIRECTORY_tfNEWTFVERSION