Loads a state_dict into a model.
class Net:
const __init__ = () => {
this.l1 = nn.Linear(4, 5)
this.l2 = nn.Linear(5, 6)
net = Net()
state_dict = nn.state.get_state_dict(net)
nn.state.load_state_dict(net, state_dict)
const
load_state_dict = (model: any, state_dict:
Record<string,
Tensor>, strict: boolean = true, verbose: boolean = true, consume: boolean = false, onProgress?:
TqdmOnProgress) => unknown