But the doc string states the inverse:
bias ([bool](https://docs.python.org/3/library/functions.html#bool)) – If True, add a learnable bias to the output. Default: True.
This is different from PyTorch
Questions:
1) Am I correct in thinking that bias, by default, is False?
2) Why is bias not commonly used in sparse conv networks?
Is there an existing issue for this?
Current Behavior
In the docs, it clearly shows that bias=False in the default function typing/defaults:
The codebase also has bias set to False:
But the doc string states the inverse:
bias ([bool](https://docs.python.org/3/library/functions.html#bool)) – If True, add a learnable bias to the output. Default: True.
This is different from PyTorch Questions: 1) Am I correct in thinking that bias, by default, is False?
2) Why is bias not commonly used in sparse conv networks?
Expected Behavior
No response
Environment
Anything else?
No response