2using System.Collections.Generic;
26 [TypeConverter(typeof(ExpandableObjectConverter))]
29 int m_nResidualChannelOffset = 0;
39 [Description(
"Specifies the residual channel offset used to copy only the latter portions of the residual (default = 0 which uses all of the residual).")]
42 get {
return m_nResidualChannelOffset; }
43 set { m_nResidualChannelOffset = value; }
47 public override object Load(
System.IO.BinaryReader br,
bool bNewInstance =
true)
85 return new RawProto(strName,
"", rgChildren);
98 if ((strVal = rp.
FindValue(
"residual_channel_offset")) !=
null)
The RawProtoCollection class is a list of RawProto objects.
void Add(RawProto p)
Adds a RawProto to the collection.
The RawProto class is used to parse and output Google prototxt file data.
static RawProto Parse(string str)
Parses a prototxt and places it in a new RawProto.
string FindValue(string strName)
Searches for a falue of a node within this nodes children.
The LayerParameterBase is the base class for all other layer specific parameters.
Specifies the parameters for the GetAddNormLayer (Gate Add Norm).
static GateAddNormParameter FromProto(RawProto rp)
Parses the parameter from a RawProto.
override LayerParameterBase Clone()
Creates a new copy of this instance of the parameter.
int residual_channel_offset
Specifies the residual channel offset used to copy only the latter portions of the residual (default ...
GateAddNormParameter()
Constructor for the parameter.
override object Load(System.IO.BinaryReader br, bool bNewInstance=true)
Load the parameter from a binary reader.
override RawProto ToProto(string strName)
Convert the parameter into a RawProto.
override void Copy(LayerParameterBase src)
Copy on parameter to another.
Specifies the parameters for the GluLayer (Gated Linear Unit).
The MyCaffe.basecode contains all generic types used throughout MyCaffe.
The MyCaffe.param namespace contains parameters used to create models.
The MyCaffe namespace contains the main body of MyCaffe code that closesly tracks the C++ Caffe open-...