Esempio n. 1
0
        /// <summary>インデクス</summary>
        public static Tensor Index(Shape shape, int axis)
        {
            Tensor y = new Tensor(shape);

            Operator ope = new Operators.ArrayManipulation.Index(shape, axis);

            ope.Execute(y);

            return(y);
        }
Esempio n. 2
0
 /// <summary>初期化フロー</summary>
 public override void Execute()
 {
     generator.Execute(Tensor);
 }