'open and read PT. file using python code by pytorch
I want to read a PT file with python and I don't know how, I want to open it with python
can you help me please, any ideas?
Solution 1:[1]
If your .PT file is related to the weight and bias of a model.
You must first install pytorch in your pc.
for more information install go to this
then use this :
model = torch.load(PATH)
You could iterate the parameters to get all weight and bias params via:(see weitht and bias)
for param in model.parameters():
....
# or
for name, param in model.named_parameters():
...
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |
