我已经使用pytorch获得了完整的模型,但是我想将.pth文件转换为.pb,可以在Tensorflow中使用。有人有想法吗?
答案 0 :(得分:0)
您可以使用ONNX:开放式神经网络交换格式
要将.pth
文件转换为.pb
,首先,需要将PyTorch中定义的模型导出到ONNX,然后将ONNX模型导入Tensorflow(PyTorch => ONNX => Tensorflow)
这是从Convert a PyTorch model to Tensorflow using ONNX到onnx/tutorials的MNISTModel的示例
torch.save(model.state_dict(), 'output/mnist.pth')
trained_model = Net()
trained_model.load_state_dict(torch.load('output/mnist.pth'))
# Export the trained model to ONNX
dummy_input = Variable(torch.randn(1, 1, 28, 28)) # one black and white 28 x 28 picture will be the input to the model
torch.onnx.export(trained_model, dummy_input, "output/mnist.onnx")
model = onnx.load('output/mnist.onnx')
# Import the ONNX model to Tensorflow
tf_rep = prepare(model)
tf_rep.export_graph('output/mnist.pb')