예제 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="JsonArrayResponse" /> class.
 /// </summary>
 /// <param name="Array">Array.</param>
 public JsonArrayResponse(INDArray Array = default(INDArray))
 {
     this.Array = Array;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Prediction" /> class.
 /// </summary>
 /// <param name="Id">Id.</param>
 /// <param name="NeedsPreProcessing">NeedsPreProcessing.</param>
 /// <param name="_Prediction">_Prediction.</param>
 public Prediction(string Id = default(string), bool?NeedsPreProcessing = default(bool?), INDArray _Prediction = default(INDArray))
 {
     this.Id = Id;
     this.NeedsPreProcessing = NeedsPreProcessing;
     this._Prediction        = _Prediction;
 }