(index: number)
| 1044 | } |
| 1045 | |
| 1046 | findLayer(index: number): Layer { |
| 1047 | if (this.layers.length <= index) { |
| 1048 | throw new ValueError( |
| 1049 | `Was asked to retrieve layer at index ${index}, but model only ` + |
| 1050 | `has ${this.layers.length} layer(s).`); |
| 1051 | } else { |
| 1052 | return this.layers[index]; |
| 1053 | } |
| 1054 | } |
| 1055 | |
| 1056 | /** |
| 1057 | * Retrieves the Container's current loss values. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…