Skip to content

Commit

Permalink
no
Browse files Browse the repository at this point in the history
  • Loading branch information
neggles committed Jan 23, 2024
1 parent 445d69a commit 78d0408
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/neurosis/models/autoencoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ class AbstractAutoencoder(L.LightningModule):

def __init__(
self,
ema_decay: Union[None, float] = None,
monitor: Union[None, str] = None,
ema_decay: Optional[float] = None,
monitor: Optional[str] = None,
input_key: str = "jpg",
ckpt_path: Union[None, str] = None,
ignore_keys: Union[tuple, list] = tuple(),
ckpt_path: Optional[str] = None,
ignore_keys: tuple | list = tuple(),
base_lr: Optional[float] = None,
):
super().__init__()
Expand Down

0 comments on commit 78d0408

Please sign in to comment.