TypeError: __init__() got an unexpected keyword argument 'serialized_options'

在跑基于pytorch的模型时,报了如下错误:
TypeError: __init__() got an unexpected keyword argument 'serialized_options'_第1张图片
网上很多博客说是因为protobuf和protoc版本不一致造成的,但是我运行conda list时发现两者版本一致,经过多番排查,发现是使用的tensorboardX(2.0)的版本与protobuf(3.4)版本不兼容造成。
tensorboardX 1.8及之前版本可以与protobuf 3.4兼容,但是tensorboardX 2.0 只能与更高版本的protobuf兼容,随后我删除了现有的protobuf 3.4 , 安装了最新的protobuf 3.6.1, 问题解决。

conda uninstall protobuf
conda install protobuf=3.6

你可能感兴趣的:(Anaconda,Python,PyTorch)