7 using System.Collections.Generic;
19 public class EvaluateModelRequest : KineticaData
21 public string model_name {
get; set; }
22 public int replicas {
get; set; }
23 public string deployment_mode {
get; set; }
24 public string source_table {
get; set; }
25 public string destination_table {
get; set; }
26 public IDictionary<string, string> options {
get; set; } =
new Dictionary<string, string>();
31 public EvaluateModelRequest() { }
43 public EvaluateModelRequest(
string model_name,
45 string deployment_mode,
47 string destination_table,
48 IDictionary<string, string> options = null)
50 this.model_name = model_name ??
"";
51 this.replicas = replicas;
52 this.deployment_mode = deployment_mode ??
"";
53 this.source_table = source_table ??
"";
54 this.destination_table = destination_table ??
"";
55 this.options = options ??
new Dictionary<string, string>();
67 public class EvaluateModelResponse : KineticaData
69 public string model_name {
get; set; }
70 public string destination_table {
get; set; }
71 public IDictionary<string, string> info {
get; set; } =
new Dictionary<string, string>();