/// <summary> /// Predict values from array /// </summary> /// <exception cref="BlackFoxCSharp.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="predictionArrayConfig">PredictionArrayConfig (optional)</param> /// <returns>Task of List<List<double>></returns> public async System.Threading.Tasks.Task <List <List <double> > > PredictFromArrayAsync(PredictionArrayConfig predictionArrayConfig = default(PredictionArrayConfig)) { ApiResponse <List <List <double> > > localVarResponse = await PredictFromArrayAsyncWithHttpInfo(predictionArrayConfig); return(localVarResponse.Data); }
/// <summary> /// Predict values from array /// </summary> /// <exception cref="BlackFoxCSharp.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="predictionArrayConfig">PredictionArrayConfig (optional)</param> /// <returns>Task of ApiResponse (List<List<double>>)</returns> public async System.Threading.Tasks.Task <ApiResponse <List <List <double> > > > PredictFromArrayAsyncWithHttpInfo(PredictionArrayConfig predictionArrayConfig = default(PredictionArrayConfig)) { var localVarPath = "./api/ann/prediction/array"; var localVarPathParams = new Dictionary <String, String>(); var localVarQueryParams = new List <KeyValuePair <String, String> >(); var localVarHeaderParams = new Dictionary <String, String>(this.Configuration.DefaultHeader); var localVarFormParams = new Dictionary <String, String>(); var localVarFileParams = new Dictionary <String, FileParameter>(); Object localVarPostBody = null; // to determine the Content-Type header String[] localVarHttpContentTypes = new String[] { "application/json", "text/json", "application/_*+json" }; String localVarHttpContentType = this.Configuration.ApiClient.SelectHeaderContentType(localVarHttpContentTypes); // to determine the Accept header String[] localVarHttpHeaderAccepts = new String[] { "text/plain", "application/json", "text/json" }; String localVarHttpHeaderAccept = this.Configuration.ApiClient.SelectHeaderAccept(localVarHttpHeaderAccepts); if (localVarHttpHeaderAccept != null) { localVarHeaderParams.Add("Accept", localVarHttpHeaderAccept); } if (predictionArrayConfig != null && predictionArrayConfig.GetType() != typeof(byte[])) { localVarPostBody = this.Configuration.ApiClient.Serialize(predictionArrayConfig); // http body (model) parameter } else { localVarPostBody = predictionArrayConfig; // byte array } // make the HTTP request IRestResponse localVarResponse = (IRestResponse)await this.Configuration.ApiClient.CallApiAsync(localVarPath, Method.POST, localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarFileParams, localVarPathParams, localVarHttpContentType); int localVarStatusCode = (int)localVarResponse.StatusCode; if (ExceptionFactory != null) { Exception exception = ExceptionFactory("PredictFromArray", localVarResponse); if (exception != null) { throw exception; } } return(new ApiResponse <List <List <double> > >(localVarStatusCode, localVarResponse.Headers.ToDictionary(x => x.Key, x => string.Join(",", x.Value)), (List <List <double> >) this.Configuration.ApiClient.Deserialize(localVarResponse, typeof(List <List <double> >)))); }
/// <summary> /// Predict values from array /// </summary> /// <exception cref="BlackFoxCSharp.Client.ApiException">Thrown when fails to make API call</exception> /// <param name="predictionArrayConfig">PredictionArrayConfig (optional)</param> /// <returns>List<List<double>></returns> public List <List <double> > PredictFromArray(PredictionArrayConfig predictionArrayConfig = default(PredictionArrayConfig)) { ApiResponse <List <List <double> > > localVarResponse = PredictFromArrayWithHttpInfo(predictionArrayConfig); return(localVarResponse.Data); }