Skip to content

Commit

Permalink
Remove HF test
Browse files Browse the repository at this point in the history
  • Loading branch information
SamTov committed May 7, 2024
1 parent f670486 commit afb849f
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ def setup_class(cls):
Create a model and data for the tests.
The resnet config has a 1 dimensional input and a 2 dimensional output.
"""

resnet_config = ResNetConfig(
num_channels=2,
embedding_size=64,
Expand Down Expand Up @@ -88,3 +87,11 @@ def test_infinite_failure(self):
"""
with pytest.raises(NotImplementedError):
self.model.compute_ntk(self.x, infinite=True)


if __name__ == "__main__":
test_class = TestFlaxHFModule()
test_class.setup_class()

# test_class.test_infinite_failure()
test_class.test_ntk_shape()

0 comments on commit afb849f

Please sign in to comment.