Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
calebrob6 committed Sep 28, 2023
1 parent 441ff39 commit 72406fd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/models/test_rcf.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,7 @@ def test_seed(self) -> None:
def test_empirical(self) -> None:
root = os.path.join("tests", "data", "eurosat")
ds = EuroSAT(root=root, bands=EuroSAT.rgb_bands, split="train")
model = RCF(in_channels=3, features=4, kernel_size=3, mode="empirical", dataset=ds)
model = RCF(
in_channels=3, features=4, kernel_size=3, mode="empirical", dataset=ds
)
model(torch.randn(2, 3, 8, 8))

0 comments on commit 72406fd

Please sign in to comment.