/home/coyote/miniconda3/envs/develop/lib/python3.8/site-packages/dgl/nn/pytorch/conv/graphconv.py:450: UserWarning: Implicit dimension choice for log_softmax has been deprecated. Change the call to include dim=X as an argument.
rst = self._activation(rst)
/home/coyote/miniconda3/envs/develop/lib/python3.8/site-packages/dgllife/model/gnn/gcn.py:103: UserWarning: Implicit dimension choice for log_softmax has been deprecated. Change the call to include dim=X as an argument.
res_feats = self.activation(self.res_connection(feats))
If I want to use for instance
NLLLoss
loss function with an exit softmax activation function (see "The Negative Log-Likelihood Loss function (NLL) is applied only on models with the softmax function as an output activation layer") how do deal with the deprecation warning in the futureWarning