Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
Aske-Rosted committed Jan 23, 2024
1 parent bed86f2 commit dd8727a
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/graphnet/models/gnn/RNN_tito.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
from graphnet.models.gnn.dynedge_kaggle_tito import DynEdgeTITO
from graphnet.models.rnn.node_rnn import Node_RNN

# from graphnet.models.rnn.dom_window_rnn import Dom_Window_RNN
from graphnet.models.rnn.node_transformer import Node_Transformer

from graphnet.utilities.config import save_model_config
from torch_geometric.data import Data

Expand Down Expand Up @@ -123,7 +120,6 @@ def __init__(
def forward(self, data: Data) -> torch.Tensor:
"""Apply learnable forward pass of the RNN and tito model."""
data = self._rnn(data)
# data = self._node_transformer(data)
readout = self._dynedge_tito(data)

return readout

0 comments on commit dd8727a

Please sign in to comment.