How do you fill a model layer (model.fc1) weights with normalized data?
a) model.fc1.weights = normalize(data)
b) model.fc1.weight.data = normalize(data)
c) model.fc1.weights.data = normalize(data)
d) model.fc1.weight = normalize(data)