(
size: number, dtype?: DataType, name?: string)
| 218 | * @return A Variable, an identity matrix. |
| 219 | */ |
| 220 | export function eyeVariable( |
| 221 | size: number, dtype?: DataType, name?: string): LayerVariable { |
| 222 | return new LayerVariable(tfc.eye(size), dtype, name); |
| 223 | } |
| 224 | |
| 225 | /** |
| 226 | * Get a Variable with uniform distribution of values. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…