Skip to content

Commit

Permalink
Linting models
Browse files Browse the repository at this point in the history
  • Loading branch information
brianreicher committed Dec 4, 2023
1 parent 6916e8b commit 9db6030
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
3 changes: 1 addition & 2 deletions tests/models/aclsd_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@


class TestACLSDModel(unittest.TestCase):

def setUp(self):
# Set up any required data or configuration for your tests
unet = setup_unet(
in_channels=10,
downsample_factors=[(2, 2, 2), (2, 2, 2)],
padding="same",
num_heads=1,
)
)
self.mtlsd_model = ACLSDModel(unet, unet.out_channels)

def test_forward(self):
Expand Down
1 change: 0 additions & 1 deletion tests/models/mtlsd_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@


class TestMTLSDModel(unittest.TestCase):

def setUp(self):
# Set up any required data or configuration for your tests
unet = setup_unet()
Expand Down
1 change: 0 additions & 1 deletion tests/models/stelarr_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@


class TestSTELARRModel(unittest.TestCase):

def setUp(self):
# Set up any required data or configuration for your tests
unet = setup_unet(downsample_factors=[(2, 2, 2), (2, 2, 2)], num_heads=3)
Expand Down

0 comments on commit 9db6030

Please sign in to comment.