Lightweight structural description of a dense layer.
| 61 | |
| 62 | @dataclass |
| 63 | class LayerMetadata: |
| 64 | """Lightweight structural description of a dense layer.""" |
| 65 | |
| 66 | layer_index: int |
| 67 | type: str |
| 68 | name: str |
| 69 | activation: str |
| 70 | weight_shape: tuple[int, int] |
| 71 | bias_shape: tuple[int] |
| 72 | |
| 73 | |
| 74 | @dataclass |
no outgoing calls
no test coverage detected