(self, layer_config)
| 39 | self.output_dim = output_dim |
| 40 | |
| 41 | def _build_network_layer(self, layer_config): |
| 42 | if layer_config['type'] == 'MLP': |
| 43 | self._build_mlp_layer(layer_config) |
| 44 | else: |
| 45 | raise NotImplementedError(f"Unsupported layer type: {layer_config['type']}") |
| 46 | |
| 47 | def _build_mlp_layer(self, layer_config): |
| 48 | layers = [] |
no test coverage detected