Пример #1
0
        /// <summary>3次元逆畳み込み</summary>
        public static VariableNode Deconvolution3D(VariableNode x, VariableNode w, int stride, Shape outshape = null)
        {
            if (outshape == null)
            {
                int outwidth  = (x.Shape.Width - 1) * stride + w.Shape.Width;
                int outheight = (x.Shape.Height - 1) * stride + w.Shape.Height;
                int outdepth  = (x.Shape.Depth - 1) * stride + w.Shape.Depth;

                outshape = Shape.Map3D(w.Shape.InChannels, outwidth, outheight, outdepth, x.Shape.Batch);
            }

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

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

            return(y);
        }
Пример #2
0
        /// <summary>3次元逆畳み込み</summary>
        public static Tensor Deconvolution3D(Tensor x, Tensor w, int stride, Shape outshape = null)
        {
            if (outshape == null)
            {
                int outwidth  = (x.Shape.Width - 1) * stride + w.Shape.Width;
                int outheight = (x.Shape.Height - 1) * stride + w.Shape.Height;
                int outdepth  = (x.Shape.Depth - 1) * stride + w.Shape.Depth;

                outshape = Shape.Map3D(w.Shape.InChannels, outwidth, outheight, outdepth, x.Shape.Batch);
            }

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

            Tensor y = new Tensor(function.OutShape);

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

            return(y);
        }