How to print out weights and biases for a layer (model.fc1)? a) print(model.fc1.weights, model.fc1.biases) b) print(model.fc1.weight, model.fc1.bias) c) model.fc1.print_weights(), model.fc1.print_biases() d) model.fc1.get_weights(), model.fc1.get_biases()