7 using System.Collections.Generic;
12 public class EvaluateModelRequest : KineticaData
14 public string model_name {
get;
set; }
15 public int replicas {
get;
set; }
16 public string deployment_mode {
get;
set; }
17 public string source_table {
get;
set; }
18 public string destination_table {
get;
set; }
19 public IDictionary<string, string> options {
get;
set; } =
new Dictionary<string, string>();
21 public EvaluateModelRequest() { }
23 public EvaluateModelRequest(
string model_name,
25 string deployment_mode,
27 string destination_table,
28 IDictionary<string, string> options =
null)
30 this.model_name = model_name ??
"";
31 this.replicas = replicas;
32 this.deployment_mode = deployment_mode ??
"";
33 this.source_table = source_table ??
"";
34 this.destination_table = destination_table ??
"";
35 this.options = options ??
new Dictionary<string, string>();
41 public class EvaluateModelResponse : KineticaData
43 public string model_name {
get;
set; }
44 public string destination_table {
get;
set; }
45 public IDictionary<string, string> info {
get;
set; } =
new Dictionary<string, string>();