我想用python读取一个PT文件,但我不知道怎么做,我想用python打开它你能帮帮我吗,有什么主意吗?
rseugnpd1#
如果您的.PT文件与model的权重和偏差有关。你必须先在你的电脑上安装pytorch。有关详细信息,请转到this然后使用以下命令:
.PT
model
model = torch.load(PATH)
saving_loading_models您可以通过以下方式迭代参数以获得所有权重和偏差参数:(请参见权重和偏差)
for param in model.parameters(): .... # or for name, param in model.named_parameters(): ...
sr4lhrrt2#
import torch # Load the file pt_file = torch.load("./myfile.pt") # Print the head of the file print(pt_file[:5])
2条答案
按热度按时间rseugnpd1#
如果您的
.PT
文件与model
的权重和偏差有关。你必须先在你的电脑上安装pytorch。
有关详细信息,请转到this
然后使用以下命令:
saving_loading_models
您可以通过以下方式迭代参数以获得所有权重和偏差参数:(请参见权重和偏差)
sr4lhrrt2#