我尝试解析Tensorflow Graph,因为编译时没有错误,但我收到错误“未解析的外部符号类TensorShapeProtoDefaultTypeInternal”tensor_shape.pb.h。我尝试包含tensorflow.lib,并将所有obj文件添加到Visual Studio项目但无法传递。 我正在使用Tensorflow 1.6.0和Visual Studio 2015更新3。
class TensorShapeProtoDefaultTypeInternal在tensor_shape.pb.h中定义
```
NodeDef* node_def
....
const AttrValue& value = node_def->attr().at( "value" );
const TensorProto& tensor_proto = value.tensor();
const DataType tensor_data_type = tensor_proto.dtype();
const TensorShapeProto &tensor_shape = tensor_proto.tensor_shape();
....
```
有没有人知道可能导致这些错误的原因?