/// <summary>
 /// Initializes a new instance of the GaussianSerializer class.
 /// </summary>
 protected GaussianSerializer()
 {
     Statistic = new StreamStatistic();
     QuantizedStatistic = new StreamStatistic();
     IsNeedQuantize = true;
 }
 /// <summary>
 /// Initializes a new instance of the LinXformSerializer class.
 /// </summary>
 protected LinXformSerializer()
 {
     MeanStatistic = new StreamStatistic();
     VarStatistic = new StreamStatistic();
     IsNeedQuantize = true;
 }