File size: 127 Bytes
e8a7382 |
1 2 3 4 5 |
import torch
weight = torch.load('defendant_model/adapter_model.bin', 'cpu')
for k, v in weight.items():
print(k, v.shape) |
e8a7382 |
1 2 3 4 5 |
import torch
weight = torch.load('defendant_model/adapter_model.bin', 'cpu')
for k, v in weight.items():
print(k, v.shape) |