Skip to content

Commit a1735ef

Browse files
authored
Update README.md based on Issue #1
1 parent e9c321e commit a1735ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def dice_loss(x1, x2):
4444
union = torch.sum(x1 + x2, dim=dim)
4545
return 1 - (2. * inter / union).mean()
4646

47-
reg = AffineRegistration(dissimilairity_function=dice_loss, optimizer=torch.optim.Adam)
47+
reg = AffineRegistration(dissimilarity_function=dice_loss, optimizer=torch.optim.Adam)
4848
```
4949
CUDA support (NVIDIA GPU)
5050
```python

0 commit comments

Comments
 (0)