예제 #1
0
        /** @copydoc LayerParameterBase::Clone */
        public override LayerParameterBase Clone()
        {
            InfogainLossParameter p = new InfogainLossParameter();

            p.Copy(this);
            return(p);
        }
예제 #2
0
        /** @copydoc LayerParameterBase::Copy */
        public override void Copy(LayerParameterBase src)
        {
            InfogainLossParameter p = (InfogainLossParameter)src;

            m_strSource = p.m_strSource;
            m_nAxis     = p.m_nAxis;
        }
예제 #3
0
        /** @copydoc LayerParameterBase::Load */
        public override object Load(System.IO.BinaryReader br, bool bNewInstance = true)
        {
            RawProto proto          = RawProto.Parse(br.ReadString());
            InfogainLossParameter p = FromProto(proto);

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

            return(p);
        }
예제 #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 InfogainLossParameter FromProto(RawProto rp)
        {
            string strVal;
            InfogainLossParameter p = new InfogainLossParameter();

            if ((strVal = rp.FindValue("source")) != null)
            {
                p.source = strVal;
            }

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

            return(p);
        }