MCPcopy Create free account
hub / github.com/PolymathicAI/AstroCLIP / extra_repr

Method extra_repr

astroclip/modules.py:333–338  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

331 return F.linear(x, self.weight, self.bias)
332
333 def extra_repr(self) -> str:
334 return (
335 f"in_features={self.in_features}, "
336 f"out_features={self.out_features}, "
337 f"bias={self.bias is not None}"
338 )
339
340
341def _init_by_depth(module: nn.Module, depth: int) -> None:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected