Arun Prakash A
Arun Prakash A
The original [paper](https://arxiv.org/pdf/1607.06450.pdf) computes a biased estimate of sample standard deviation. However, by default, `torch.Tensor.std()` uses an unbiased estimate [Ref](https://pytorch.org/docs/1.11/generated/torch.Tensor.std.html?highlight=torch%20std#torch.Tensor.std). Therefore, it is necessary to use `torch.Tensor.std(-1,unbiased=False)`. Moreover, the class...
### 🐛 Describe the bug I was using `torchtext` to construct a vocabulary (v) and tokenize the input text. I just wanted to check the indices of the tokens and...
# What does this PR do? It adds the docstring for the class `SchedulerType` . Currently, the AutoDoc only displays the `__call__ ` signature of `enum.EnumType` base class which is...