(layerIndex)
| 2422 | } |
| 2423 | |
| 2424 | describeLayer(layerIndex) { |
| 2425 | if (layerIndex === 0) { |
| 2426 | return `Eingabeschicht (${this.mlp.architecture[layerIndex]} Knoten)`; |
| 2427 | } |
| 2428 | if (layerIndex === this.mlp.architecture.length - 1) { |
| 2429 | return `Ausgabeschicht (${this.mlp.architecture[layerIndex]} Knoten)`; |
| 2430 | } |
| 2431 | return `Verborgene Schicht ${layerIndex} (${this.mlp.architecture[layerIndex]} Knoten)`; |
| 2432 | } |
| 2433 | |
| 2434 | getActivationName(layerIndex) { |
| 2435 | if (layerIndex === 0) return null; |
no outgoing calls
no test coverage detected