(layerIndex)
| 2432 | } |
| 2433 | |
| 2434 | getActivationName(layerIndex) { |
| 2435 | if (layerIndex === 0) return null; |
| 2436 | const activation = this.mlp.layers?.[layerIndex - 1]?.activation; |
| 2437 | if (typeof activation !== "string") return null; |
| 2438 | return activation.toUpperCase(); |
| 2439 | } |
| 2440 | |
| 2441 | buildLayers() { |
| 2442 | const inputGeometry = new THREE.BoxGeometry( |
no outgoing calls
no test coverage detected