Skip to content

Commit

Permalink
Added NotImplementedError to remember testing EnsembleFeedForwardNN
Browse files Browse the repository at this point in the history
  • Loading branch information
DomInvivo committed Dec 13, 2023
1 parent dd52ca5 commit d926c28
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions graphium/nn/architectures/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
from .global_architectures import TaskHeads
from .global_architectures import GraphOutputNN
from .pyg_architectures import FeedForwardPyg
from .global_architectures import EnsembleFeedForwardNN
3 changes: 3 additions & 0 deletions tests/test_ensemble_layers.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
EnsembleMLP,
EnsembleMuReadoutGraphium,
)
from graphium.nn.architectures import FeedForwardNN, EnsembleFeedForwardNN


class test_Ensemble_Layers(ut.TestCase):
Expand Down Expand Up @@ -315,6 +316,8 @@ def test_ensemble_mlp(self):
in_dim=11, out_dim=5, num_ensemble=3, batch_size=13, more_batch_dim=7, last_layer_is_readout=True
)

def test_ensemble_feed_forward_nn(self):
raise NotImplementedError

if __name__ == "__main__":
ut.main()

0 comments on commit d926c28

Please sign in to comment.