About manually assign weights & biases

How can we manually assign weights and biases rather than using randomly generated weights and biases at the beginning?

You can manually assign the tensors like arr[0] = 0.
It’s usually better practise to assign weights & biases randomly before training.
If you’re using PyTorch, here are a bunch of different init methods: torch.nn.init — PyTorch master documentation

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.