Beispiel #1
0
        /** @copydoc EngineParameter::Clone */
        public override LayerParameterBase Clone()
        {
            SoftmaxParameter p = new SoftmaxParameter();

            p.Copy(this);
            return(p);
        }
Beispiel #2
0
        /** @copydoc EngineParameter::Copy */
        public override void Copy(LayerParameterBase src)
        {
            base.Copy(src);

            if (src is SoftmaxParameter)
            {
                SoftmaxParameter p = (SoftmaxParameter)src;
                m_nAxis = p.m_nAxis;
            }
        }
Beispiel #3
0
        /** @copydoc EngineParameter::Load */
        public override object Load(System.IO.BinaryReader br, bool bNewInstance = true)
        {
            RawProto         proto = RawProto.Parse(br.ReadString());
            SoftmaxParameter p     = FromProto(proto);

            if (!bNewInstance)
            {
                Copy(p);
            }

            return(p);
        }
Beispiel #4
0
        /// <summary>
        /// Parses the parameter from a RawProto.
        /// </summary>
        /// <param name="rp">Specifies the RawProto to parse.</param>
        /// <returns>A new instance of the parameter is returned.</returns>
        public static new SoftmaxParameter FromProto(RawProto rp)
        {
            string           strVal;
            SoftmaxParameter p = new SoftmaxParameter();

            p.Copy(EngineParameter.FromProto(rp));

            if ((strVal = rp.FindValue("axis")) != null)
            {
                p.axis = int.Parse(strVal);
            }

            return(p);
        }