如何使用APytorch文件中的h5模型;我使用Keras和TensorFlow后端工作,所以这里是我保存的模型:
model = tf.keras.applications.ResNet50(include_top=False, weights=None, input_tensor=tf.keras.Input(shape=(224, 224, 3)), pooling=None)
....#training
model.save("mymodel.h5")
model.save_weights("saved_weights.h5")
现在我迁移到pytorch,我想使用保存的模型。那么我如何转换它。谢谢
1条答案
按热度按时间izkcnapc1#
一种方法是将
tensorflow
模型转换为ONNX
框架。然后将ONNX
模型转换为Torch
。安装
tensorflow
到onnx
转换器将
tonsorflow
saved_model
转换为onnx
:将
ONNX
转换为Pytorch
:尝试使用this repository。