Check whether your GraphDef-interpreting binary is up to date with your GraphDef-generating binary.

        在公司Linux服务器上执行tf.import_graph_def(graph_def, name='graph')导入训练好的图时,报了个错误:

ValueError: NodeDef mentions attr 'Truncate' not in Op y:DstT; attr=SrcT:ty
pe; attr=DstT:type>; NodeDef: graph/Cast = Cast[DstT=DT_FLOAT, SrcT=DT_UINT8, Truncate=false](graph/DecodeJpeg). (Check whether your GraphDef-interpreting binary is up to date with your GraphDef-generating binary.).

       这个是说GraphDef-interpreting(序列图文件的解释器)与GraphDef-generating binary(序列图生成器)不匹配导致的,于是就将win下的TensorFlow版本从1.11.0(在该版本下生成的pb文件)升级到服务器一致的1.18.0(在该版本下执行的解释器),安装完TensorFlow1.18.0版本后,使用import TensorFlow as tf报错

     'tensorflow.python.training.checkpointable' has no attribute 'CheckpointableBase'

Google一番后,找到原因,原来是之前的1.11.0版本需要先卸载,才能再再安装1.18.0版本,搞定。

你可能感兴趣的:(tensorflow)