We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec76c39 commit a2433d9Copy full SHA for a2433d9
1 file changed
ice_station_zebra/models/encode_process_decode.py
@@ -34,8 +34,8 @@ def __init__(
34
]
35
# We have to explicitly register each encoder as list[Module] will not be
36
# automatically picked up by PyTorch
37
- for idx, encoder in enumerate(self.encoders):
38
- self.add_module(f"encoder_{idx}", encoder)
+ for idx, module in enumerate(self.encoders):
+ self.add_module(f"encoder_{idx}", module)
39
40
# Add a processor
41
self.processor = hydra.utils.instantiate(
0 commit comments