Skip to content

Commit

Permalink
improve wrapped architecture documenation
Browse files Browse the repository at this point in the history
  • Loading branch information
pattonw committed Feb 18, 2025
1 parent 98272b3 commit 0b72a22
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dacapo/experiments/architectures/wrapped_architecture.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
@attr.s
class WrappedArchitectureConfig(ArchitectureConfig):
"""
A thin wrapper allowing users to pass in any architecture they want
A thin wrapper around user provided `torch.nn.Module` instances. It can be provided
via a python object, or a file path that can be loaded with `torch.load`. This includes
pickled modules or jit-compiled modules.
"""

_module: torch.nn.Module | Path = attr.ib(
Expand Down

0 comments on commit 0b72a22

Please sign in to comment.