/// <summary>1次元逆畳み込み</summary>
        public static VariableNode Deconvolution1D(VariableNode x, VariableNode w, int stride, Shape outshape = null)
        {
            if (outshape == null)
            {
                int outwidth = (x.Shape.Width - 1) * stride + w.Shape.Width;

                outshape = Shape.Map1D(w.Shape.InChannels, outwidth, x.Shape.Batch);
            }

            Function function =
                new Functions.Connection1D.Deconvolution(outshape, w.Shape, stride);

            VariableNode y = Apply(function, x, w)[0];

            return(y);
        }
        /// <summary>1次元逆畳み込み</summary>
        public static Tensor Deconvolution1D(Tensor x, Tensor w, int stride, Shape outshape = null)
        {
            if (outshape == null)
            {
                int outwidth = (x.Shape.Width - 1) * stride + w.Shape.Width;

                outshape = Shape.Map1D(w.Shape.InChannels, outwidth, x.Shape.Batch);
            }

            Functions.Connection1D.Deconvolution function =
                new Functions.Connection1D.Deconvolution(outshape, w.Shape, stride);

            Tensor y = new Tensor(function.OutShape);

            function.Execute(new Tensor[] { x, w }, new Tensor[] { y });

            return(y);
        }