2using System.Collections.Generic;
19 [TypeConverter(typeof(ExpandableObjectConverter))]
22 List<float> m_rgDesiredQuantiles =
new List<float>();
32 [Description(
"Specifies the desired quantiles.")]
35 get {
return m_rgDesiredQuantiles; }
36 set { m_rgDesiredQuantiles = value; }
40 public override object Load(
System.IO.BinaryReader br,
bool bNewInstance =
true)
77 return new RawProto(strName,
"", rgChildren);
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.
The Utility class provides general utility funtions.
The LayerParameterBase is the base class for all other layer specific parameters.
Specifies the parameters for the QuantileLossLayer used in TFT models
override RawProto ToProto(string strName)
Convert the parameter into a RawProto.
static QuantileLossParameter FromProto(RawProto rp)
Parses the parameter from a RawProto.
override LayerParameterBase Clone()
Creates a new copy of this instance of the parameter.
override object Load(System.IO.BinaryReader br, bool bNewInstance=true)
Load the parameter from a binary reader.
List< float > desired_quantiles
Specifies the desired quantiles.
QuantileLossParameter()
Constructor for the parameter.
override void Copy(LayerParameterBase src)
Copy on parameter to another.
The MyCaffe.basecode contains all generic types used throughout MyCaffe.
The MyCaffe namespace contains the main body of MyCaffe code that closesly tracks the C++ Caffe open-...