Beispiel #1
0
 public static NDArray Poisson(float lam = 1f, Shape shape = null, Context ctx = null, DType dtype = null)
 {
     return(new Operator("poisson")
            .SetParam("lam", lam)
            .SetParam("shape", shape)
            .SetParam("ctx", ctx)
            .SetParam("dtype", dtype)
            .Invoke());
 }
 public virtual (DType[], DType[], DType[]) InferType(DType in_type)
 {
     throw new NotImplementedException();
 }