(
shape: Shape, minval: number, maxval: number, dtype?: DataType,
seed?: number, name = 'randomUniform')
| 233 | * @return The uniform-random Variable. |
| 234 | */ |
| 235 | export function randomUniformVariable( |
| 236 | shape: Shape, minval: number, maxval: number, dtype?: DataType, |
| 237 | seed?: number, name = 'randomUniform'): LayerVariable { |
| 238 | return new LayerVariable( |
| 239 | tfc.randomUniform(shape, minval, maxval, dtype), dtype, name); |
| 240 | } |
| 241 | |
| 242 | /** |
| 243 | * Get a Variable with truncated-normal distribution of values. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…