DeepNLP-models-Pytorch
DeepNLP-models-Pytorch copied to clipboard
Pytorch implementations of various Deep NLP models in cs-224n(Stanford Univ)
Results
11
DeepNLP-models-Pytorch issues
Sort by
recently updated
recently updated
newest added
**torch.nn.CrossEntropyLoss()** combines _LogSoftMax_ and _NLLLoss_ in one single class. Thus, there should be only **_"return out"_** instead of return **_"F.log_softmax(out)"_** in the _forward()_ function of some classification models.