torchmd-net
torchmd-net copied to clipboard
Wrong kwarg name in output modules MLP
Currently using the training argument "output_mlp_num_layers" will not actually do anything with a scalar output model. The keyword argument here needs to be changed to "num_hidden_layers": https://github.com/torchmd/torchmd-net/blob/f6c0c16932e59373b631ceca686d810832a66b5d/torchmdnet/models/output_modules.py#L79
To correspond to the passed value here: https://github.com/torchmd/torchmd-net/blob/f6c0c16932e59373b631ceca686d810832a66b5d/torchmdnet/models/model.py#L130