teradataml 20.0.0.6__py3-none-any.whl → 20.0.0.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of teradataml might be problematic. Click here for more details.
- teradataml/README.md +210 -0
- teradataml/__init__.py +1 -1
- teradataml/_version.py +1 -1
- teradataml/analytics/analytic_function_executor.py +162 -76
- teradataml/analytics/byom/__init__.py +1 -1
- teradataml/analytics/json_parser/__init__.py +2 -0
- teradataml/analytics/json_parser/analytic_functions_argument.py +95 -2
- teradataml/analytics/json_parser/metadata.py +22 -4
- teradataml/analytics/sqle/DecisionTreePredict.py +3 -2
- teradataml/analytics/sqle/NaiveBayesPredict.py +3 -2
- teradataml/analytics/sqle/__init__.py +3 -0
- teradataml/analytics/utils.py +4 -1
- teradataml/automl/__init__.py +2369 -464
- teradataml/automl/autodataprep/__init__.py +15 -0
- teradataml/automl/custom_json_utils.py +184 -112
- teradataml/automl/data_preparation.py +113 -58
- teradataml/automl/data_transformation.py +154 -53
- teradataml/automl/feature_engineering.py +113 -53
- teradataml/automl/feature_exploration.py +548 -25
- teradataml/automl/model_evaluation.py +260 -32
- teradataml/automl/model_training.py +399 -206
- teradataml/clients/auth_client.py +2 -2
- teradataml/common/aed_utils.py +11 -2
- teradataml/common/bulk_exposed_utils.py +4 -2
- teradataml/common/constants.py +62 -2
- teradataml/common/garbagecollector.py +50 -21
- teradataml/common/messagecodes.py +47 -2
- teradataml/common/messages.py +19 -1
- teradataml/common/sqlbundle.py +23 -6
- teradataml/common/utils.py +116 -10
- teradataml/context/aed_context.py +16 -10
- teradataml/data/Employee.csv +5 -0
- teradataml/data/Employee_Address.csv +4 -0
- teradataml/data/Employee_roles.csv +5 -0
- teradataml/data/JulesBelvezeDummyData.csv +100 -0
- teradataml/data/byom_example.json +5 -0
- teradataml/data/creditcard_data.csv +284618 -0
- teradataml/data/docs/byom/docs/ONNXSeq2Seq.py +255 -0
- teradataml/data/docs/sqle/docs_17_10/NGramSplitter.py +1 -1
- teradataml/data/docs/sqle/docs_17_20/NGramSplitter.py +1 -1
- teradataml/data/docs/sqle/docs_17_20/TextParser.py +1 -1
- teradataml/data/jsons/byom/ONNXSeq2Seq.json +287 -0
- teradataml/data/jsons/sqle/20.00/AI_AnalyzeSentiment.json +3 -7
- teradataml/data/jsons/sqle/20.00/AI_AskLLM.json +3 -7
- teradataml/data/jsons/sqle/20.00/AI_DetectLanguage.json +3 -7
- teradataml/data/jsons/sqle/20.00/AI_ExtractKeyPhrases.json +3 -7
- teradataml/data/jsons/sqle/20.00/AI_MaskPII.json +3 -7
- teradataml/data/jsons/sqle/20.00/AI_RecognizeEntities.json +3 -7
- teradataml/data/jsons/sqle/20.00/AI_RecognizePIIEntities.json +3 -7
- teradataml/data/jsons/sqle/20.00/AI_TextClassifier.json +3 -7
- teradataml/data/jsons/sqle/20.00/AI_TextEmbeddings.json +3 -7
- teradataml/data/jsons/sqle/20.00/AI_TextSummarize.json +3 -7
- teradataml/data/jsons/sqle/20.00/AI_TextTranslate.json +3 -7
- teradataml/data/jsons/sqle/20.00/TD_API_AzureML.json +151 -0
- teradataml/data/jsons/sqle/20.00/TD_API_Sagemaker.json +182 -0
- teradataml/data/jsons/sqle/20.00/TD_API_VertexAI.json +183 -0
- teradataml/data/load_example_data.py +29 -11
- teradataml/data/payment_fraud_dataset.csv +10001 -0
- teradataml/data/teradataml_example.json +67 -0
- teradataml/dataframe/copy_to.py +714 -54
- teradataml/dataframe/dataframe.py +1153 -33
- teradataml/dataframe/dataframe_utils.py +8 -3
- teradataml/dataframe/functions.py +168 -1
- teradataml/dataframe/setop.py +4 -1
- teradataml/dataframe/sql.py +141 -9
- teradataml/dbutils/dbutils.py +470 -35
- teradataml/dbutils/filemgr.py +1 -1
- teradataml/hyperparameter_tuner/optimizer.py +456 -142
- teradataml/lib/aed_0_1.dll +0 -0
- teradataml/lib/libaed_0_1.dylib +0 -0
- teradataml/lib/libaed_0_1.so +0 -0
- teradataml/lib/libaed_0_1_aarch64.so +0 -0
- teradataml/scriptmgmt/UserEnv.py +234 -34
- teradataml/scriptmgmt/lls_utils.py +43 -17
- teradataml/sdk/_json_parser.py +1 -1
- teradataml/sdk/api_client.py +9 -6
- teradataml/sdk/modelops/_client.py +3 -0
- teradataml/series/series.py +12 -7
- teradataml/store/feature_store/constants.py +601 -234
- teradataml/store/feature_store/feature_store.py +2886 -616
- teradataml/store/feature_store/mind_map.py +639 -0
- teradataml/store/feature_store/models.py +5831 -214
- teradataml/store/feature_store/utils.py +390 -0
- teradataml/table_operators/table_operator_util.py +1 -1
- teradataml/table_operators/templates/dataframe_register.template +6 -2
- teradataml/table_operators/templates/dataframe_udf.template +6 -2
- teradataml/utils/docstring.py +527 -0
- teradataml/utils/dtypes.py +93 -0
- teradataml/utils/internal_buffer.py +2 -2
- teradataml/utils/utils.py +41 -2
- teradataml/utils/validators.py +694 -17
- {teradataml-20.0.0.6.dist-info → teradataml-20.0.0.7.dist-info}/METADATA +213 -2
- {teradataml-20.0.0.6.dist-info → teradataml-20.0.0.7.dist-info}/RECORD +96 -81
- {teradataml-20.0.0.6.dist-info → teradataml-20.0.0.7.dist-info}/WHEEL +0 -0
- {teradataml-20.0.0.6.dist-info → teradataml-20.0.0.7.dist-info}/top_level.txt +0 -0
- {teradataml-20.0.0.6.dist-info → teradataml-20.0.0.7.dist-info}/zip-safe +0 -0
|
@@ -268,20 +268,16 @@
|
|
|
268
268
|
},
|
|
269
269
|
|
|
270
270
|
{
|
|
271
|
-
"
|
|
272
|
-
"permittedValues": [
|
|
273
|
-
"true",
|
|
274
|
-
"false"
|
|
275
|
-
],
|
|
271
|
+
"permittedValues": ["TRUE", "FALSE"],
|
|
276
272
|
"isOutputColumn": false,
|
|
277
273
|
"name": "isDebug",
|
|
278
274
|
"alternateNames": [],
|
|
279
275
|
"isRequired": false,
|
|
280
276
|
"rDescription": "Specify whether error logging is required.",
|
|
281
277
|
"description": "Specify whether error logging is required.",
|
|
282
|
-
"datatype": "
|
|
278
|
+
"datatype": "STRING",
|
|
283
279
|
"allowsLists": false,
|
|
284
|
-
"rName": "
|
|
280
|
+
"rName": "is.debug",
|
|
285
281
|
"useInR": true,
|
|
286
282
|
"rOrderNum": 17
|
|
287
283
|
},
|
|
@@ -268,20 +268,16 @@
|
|
|
268
268
|
},
|
|
269
269
|
|
|
270
270
|
{
|
|
271
|
-
"
|
|
272
|
-
"permittedValues": [
|
|
273
|
-
"true",
|
|
274
|
-
"false"
|
|
275
|
-
],
|
|
271
|
+
"permittedValues": ["TRUE", "FALSE"],
|
|
276
272
|
"isOutputColumn": false,
|
|
277
273
|
"name": "isDebug",
|
|
278
274
|
"alternateNames": [],
|
|
279
275
|
"isRequired": false,
|
|
280
276
|
"rDescription": "Specify whether error logging is required.",
|
|
281
277
|
"description": "Specify whether error logging is required.",
|
|
282
|
-
"datatype": "
|
|
278
|
+
"datatype": "STRING",
|
|
283
279
|
"allowsLists": false,
|
|
284
|
-
"rName": "
|
|
280
|
+
"rName": "is.debug",
|
|
285
281
|
"useInR": true,
|
|
286
282
|
"rOrderNum": 17
|
|
287
283
|
},
|
|
@@ -268,20 +268,16 @@
|
|
|
268
268
|
},
|
|
269
269
|
|
|
270
270
|
{
|
|
271
|
-
"
|
|
272
|
-
"permittedValues": [
|
|
273
|
-
"true",
|
|
274
|
-
"false"
|
|
275
|
-
],
|
|
271
|
+
"permittedValues": ["TRUE", "FALSE"],
|
|
276
272
|
"isOutputColumn": false,
|
|
277
273
|
"name": "isDebug",
|
|
278
274
|
"alternateNames": [],
|
|
279
275
|
"isRequired": false,
|
|
280
276
|
"rDescription": "Specify whether error logging is required.",
|
|
281
277
|
"description": "Specify whether error logging is required.",
|
|
282
|
-
"datatype": "
|
|
278
|
+
"datatype": "STRING",
|
|
283
279
|
"allowsLists": false,
|
|
284
|
-
"rName": "
|
|
280
|
+
"rName": "is.debug",
|
|
285
281
|
"useInR": true,
|
|
286
282
|
"rOrderNum": 17
|
|
287
283
|
},
|
|
@@ -268,20 +268,16 @@
|
|
|
268
268
|
},
|
|
269
269
|
|
|
270
270
|
{
|
|
271
|
-
"
|
|
272
|
-
"permittedValues": [
|
|
273
|
-
"true",
|
|
274
|
-
"false"
|
|
275
|
-
],
|
|
271
|
+
"permittedValues": ["TRUE", "FALSE"],
|
|
276
272
|
"isOutputColumn": false,
|
|
277
273
|
"name": "isDebug",
|
|
278
274
|
"alternateNames": [],
|
|
279
275
|
"isRequired": false,
|
|
280
276
|
"rDescription": "Specify whether error logging is required.",
|
|
281
277
|
"description": "Specify whether error logging is required.",
|
|
282
|
-
"datatype": "
|
|
278
|
+
"datatype": "STRING",
|
|
283
279
|
"allowsLists": false,
|
|
284
|
-
"rName": "
|
|
280
|
+
"rName": "is.debug",
|
|
285
281
|
"useInR": true,
|
|
286
282
|
"rOrderNum": 17
|
|
287
283
|
},
|
|
@@ -268,20 +268,16 @@
|
|
|
268
268
|
},
|
|
269
269
|
|
|
270
270
|
{
|
|
271
|
-
"
|
|
272
|
-
"permittedValues": [
|
|
273
|
-
"true",
|
|
274
|
-
"false"
|
|
275
|
-
],
|
|
271
|
+
"permittedValues": ["TRUE", "FALSE"],
|
|
276
272
|
"isOutputColumn": false,
|
|
277
273
|
"name": "isDebug",
|
|
278
274
|
"alternateNames": [],
|
|
279
275
|
"isRequired": false,
|
|
280
276
|
"rDescription": "Specify whether error logging is required.",
|
|
281
277
|
"description": "Specify whether error logging is required.",
|
|
282
|
-
"datatype": "
|
|
278
|
+
"datatype": "STRING",
|
|
283
279
|
"allowsLists": false,
|
|
284
|
-
"rName": "
|
|
280
|
+
"rName": "is.debug",
|
|
285
281
|
"useInR": true,
|
|
286
282
|
"rOrderNum": 17
|
|
287
283
|
},
|
|
@@ -268,20 +268,16 @@
|
|
|
268
268
|
},
|
|
269
269
|
|
|
270
270
|
{
|
|
271
|
-
"
|
|
272
|
-
"permittedValues": [
|
|
273
|
-
"true",
|
|
274
|
-
"false"
|
|
275
|
-
],
|
|
271
|
+
"permittedValues": ["TRUE", "FALSE"],
|
|
276
272
|
"isOutputColumn": false,
|
|
277
273
|
"name": "isDebug",
|
|
278
274
|
"alternateNames": [],
|
|
279
275
|
"isRequired": false,
|
|
280
276
|
"rDescription": "Specify whether error logging is required.",
|
|
281
277
|
"description": "Specify whether error logging is required.",
|
|
282
|
-
"datatype": "
|
|
278
|
+
"datatype": "STRING",
|
|
283
279
|
"allowsLists": false,
|
|
284
|
-
"rName": "
|
|
280
|
+
"rName": "is.debug",
|
|
285
281
|
"useInR": true,
|
|
286
282
|
"rOrderNum": 17
|
|
287
283
|
},
|
|
@@ -268,20 +268,16 @@
|
|
|
268
268
|
},
|
|
269
269
|
|
|
270
270
|
{
|
|
271
|
-
"
|
|
272
|
-
"permittedValues": [
|
|
273
|
-
"true",
|
|
274
|
-
"false"
|
|
275
|
-
],
|
|
271
|
+
"permittedValues": ["TRUE", "FALSE"],
|
|
276
272
|
"isOutputColumn": false,
|
|
277
273
|
"name": "isDebug",
|
|
278
274
|
"alternateNames": [],
|
|
279
275
|
"isRequired": false,
|
|
280
276
|
"rDescription": "Specify whether error logging is required.",
|
|
281
277
|
"description": "Specify whether error logging is required.",
|
|
282
|
-
"datatype": "
|
|
278
|
+
"datatype": "STRING",
|
|
283
279
|
"allowsLists": false,
|
|
284
|
-
"rName": "
|
|
280
|
+
"rName": "is.debug",
|
|
285
281
|
"useInR": true,
|
|
286
282
|
"rOrderNum": 17
|
|
287
283
|
},
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
{
|
|
2
|
+
"json_schema_major_version": "1",
|
|
3
|
+
"json_schema_minor_version": "1",
|
|
4
|
+
"json_content_version": "1",
|
|
5
|
+
"function_name": "TD_API_AzureML",
|
|
6
|
+
"function_version": "1.0",
|
|
7
|
+
"function_type": "fastpath",
|
|
8
|
+
"function_category": "Text Analytics AI",
|
|
9
|
+
"function_alias_name": "TDAPIAzureML",
|
|
10
|
+
"function_r_name": "aa.td_api_azureml",
|
|
11
|
+
"supports_view": false,
|
|
12
|
+
"short_description": "This function initiates an API request to machine learning models deployed on the Azure ML platform for inference. The input data, sourced from a Teradata table, is transmitted to the model via the API. Upon processing the data, the model returns predictions, which are provided as the function's output.",
|
|
13
|
+
"long_description": "This function initiates an API request to machine learning models deployed on the Azure ML platform for inference. The input data, sourced from a Teradata table, is transmitted to the model via the API. Upon processing the data, the model returns predictions, which are provided as the function's output.",
|
|
14
|
+
"input_tables": [
|
|
15
|
+
{
|
|
16
|
+
"isOrdered": false,
|
|
17
|
+
"partitionByOne": false,
|
|
18
|
+
"name": "InputTable",
|
|
19
|
+
"alternateNames": [],
|
|
20
|
+
"isRequired": true,
|
|
21
|
+
"rDescription": "Specifies the table containing the input data.",
|
|
22
|
+
"description": "Specifies the table containing the input data.",
|
|
23
|
+
"datatype": "TABLE_ALIAS",
|
|
24
|
+
"allowsLists": false,
|
|
25
|
+
"rName": "data",
|
|
26
|
+
"useInR": true,
|
|
27
|
+
"rOrderNum": 1
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"argument_clauses": [
|
|
31
|
+
{
|
|
32
|
+
"name": "Endpoint",
|
|
33
|
+
"alternateNames": [],
|
|
34
|
+
"isRequired": false,
|
|
35
|
+
"rOrderNum": 2,
|
|
36
|
+
"allowNaN": false,
|
|
37
|
+
"description": "Specifies the Endpoint of the model deployed on Azure ML",
|
|
38
|
+
"rDescription": "Specifies the Endpoint of the model deployed on Azure ML",
|
|
39
|
+
"datatype": "STRING",
|
|
40
|
+
"allowsLists": false,
|
|
41
|
+
"allowPadding": true,
|
|
42
|
+
"rName": "endpoint",
|
|
43
|
+
"useInR": true,
|
|
44
|
+
"rFormulaUsage": false
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "Region",
|
|
48
|
+
"alternateNames": [],
|
|
49
|
+
"isRequired": false,
|
|
50
|
+
"rOrderNum": 3,
|
|
51
|
+
"allowNaN": false,
|
|
52
|
+
"description": "Specifies the region of the Azure ML endpoint on which the model is deployed.",
|
|
53
|
+
"rDescription": "Specifies the region of the Azure ML endpoint on which the model is deployed.",
|
|
54
|
+
"datatype": "STRING",
|
|
55
|
+
"allowsLists": false,
|
|
56
|
+
"allowPadding": true,
|
|
57
|
+
"rName": "region",
|
|
58
|
+
"useInR": true,
|
|
59
|
+
"rFormulaUsage": false
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "ApiKey",
|
|
63
|
+
"alternateNames": [],
|
|
64
|
+
"isRequired": false,
|
|
65
|
+
"rOrderNum": 4,
|
|
66
|
+
"allowNaN": false,
|
|
67
|
+
"description": "Specifies the primary or secondary API Key for the Azure ML endpoint.",
|
|
68
|
+
"rDescription": "Specifies the primary or secondary API Key for the Azure ML endpoint.",
|
|
69
|
+
"datatype": "STRING",
|
|
70
|
+
"allowsLists": false,
|
|
71
|
+
"allowPadding": true,
|
|
72
|
+
"rName": "api.key",
|
|
73
|
+
"useInR": true,
|
|
74
|
+
"rFormulaUsage": false
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"targetTable": [
|
|
78
|
+
"InputTable"
|
|
79
|
+
],
|
|
80
|
+
"checkDuplicate": true,
|
|
81
|
+
"allowedTypes": [],
|
|
82
|
+
"allowedTypeGroups": [
|
|
83
|
+
"ALL"
|
|
84
|
+
],
|
|
85
|
+
"matchLengthOfArgument": "",
|
|
86
|
+
"allowPadding": false,
|
|
87
|
+
"name": "InputColumns",
|
|
88
|
+
"alternateNames": [],
|
|
89
|
+
"isRequired": true,
|
|
90
|
+
"rDescription": "Specifies the input table columns as inputs for the model deployed on Azure ML.",
|
|
91
|
+
"description": "Specifies the input table columns as inputs for the model deployed on Azure ML.",
|
|
92
|
+
"datatype": "COLUMNS",
|
|
93
|
+
"allowsLists": true,
|
|
94
|
+
"rName": "input.columns",
|
|
95
|
+
"useInR": true,
|
|
96
|
+
"rFormulaUsage": false,
|
|
97
|
+
"rOrderNum": 5
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"permittedValues": ["TRUE", "FALSE"],
|
|
101
|
+
"isOutputColumn": false,
|
|
102
|
+
"name": "isDebug",
|
|
103
|
+
"alternateNames": [],
|
|
104
|
+
"isRequired": false,
|
|
105
|
+
"rDescription": "Specify whether error logging is required.",
|
|
106
|
+
"description": "Specify whether error logging is required.",
|
|
107
|
+
"datatype": "STRING",
|
|
108
|
+
"allowsLists": false,
|
|
109
|
+
"rName": "is.debug",
|
|
110
|
+
"useInR": true,
|
|
111
|
+
"rOrderNum": 6
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"targetTable": [
|
|
115
|
+
"InputTable"
|
|
116
|
+
],
|
|
117
|
+
"checkDuplicate": true,
|
|
118
|
+
"allowedTypes": [],
|
|
119
|
+
"allowedTypeGroups": [
|
|
120
|
+
"ALL"
|
|
121
|
+
],
|
|
122
|
+
"matchLengthOfArgument": "",
|
|
123
|
+
"allowPadding": false,
|
|
124
|
+
"name": "Accumulate",
|
|
125
|
+
"alternateNames": [],
|
|
126
|
+
"isRequired": false,
|
|
127
|
+
"rDescription": "Specifies the input table columns to copy to the output table. By default, the function copies all input table columns to the output table.",
|
|
128
|
+
"description": "Specifies the input table columns to copy to the output table. By default, the function copies all input table columns to the output table.",
|
|
129
|
+
"datatype": "COLUMNS",
|
|
130
|
+
"allowsLists": true,
|
|
131
|
+
"rName": "accumulate",
|
|
132
|
+
"useInR": true,
|
|
133
|
+
"rOrderNum": 7
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"name": "AUTHORIZATION",
|
|
137
|
+
"alternateNames": [],
|
|
138
|
+
"isRequired": false,
|
|
139
|
+
"rOrderNum":8,
|
|
140
|
+
"allowNaN": false,
|
|
141
|
+
"description": "Specifies the authorization object name containing the credentials, optionally prefixed by the database name.",
|
|
142
|
+
"rDescription": "Specifies the authorization object name containing the credentials, optionally prefixed by the database name.",
|
|
143
|
+
"datatype": "STRING",
|
|
144
|
+
"allowsLists": false,
|
|
145
|
+
"allowPadding": true,
|
|
146
|
+
"rName": "authorization",
|
|
147
|
+
"useInR": true,
|
|
148
|
+
"rFormulaUsage": false
|
|
149
|
+
}
|
|
150
|
+
]
|
|
151
|
+
}
|
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
{
|
|
2
|
+
"json_schema_major_version": "1",
|
|
3
|
+
"json_schema_minor_version": "1",
|
|
4
|
+
"json_content_version": "1",
|
|
5
|
+
"function_name": "TD_API_Sagemaker",
|
|
6
|
+
"function_version": "1.0",
|
|
7
|
+
"function_type": "fastpath",
|
|
8
|
+
"function_category": "Text Analytics AI",
|
|
9
|
+
"function_alias_name": "TDAPISagemaker",
|
|
10
|
+
"function_r_name": "aa.tdapisagemaker",
|
|
11
|
+
"supports_view": false,
|
|
12
|
+
"short_description": "This function sends an API request to a machine learning model deployed on Sagemaker, using input data from a Teradata table. The model processes the data and returns predictions, which are then provided as the output of the function for users to consume.",
|
|
13
|
+
"long_description": "This function sends an API request to a machine learning model deployed on Sagemaker, using input data from a Teradata table. The model processes the data and returns predictions, which are then provided as the output of the function for users to consume.",
|
|
14
|
+
"input_tables": [
|
|
15
|
+
{
|
|
16
|
+
"isOrdered": false,
|
|
17
|
+
"partitionByOne": false,
|
|
18
|
+
"name": "InputTable",
|
|
19
|
+
"alternateNames": [],
|
|
20
|
+
"isRequired": true,
|
|
21
|
+
"rDescription": "Specifies the table containing the input data.",
|
|
22
|
+
"description": "Specifies the table containing the input data.",
|
|
23
|
+
"datatype": "TABLE_ALIAS",
|
|
24
|
+
"allowsLists": false,
|
|
25
|
+
"rName": "data",
|
|
26
|
+
"useInR": true,
|
|
27
|
+
"rOrderNum": 1
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"argument_clauses": [
|
|
31
|
+
{
|
|
32
|
+
"name": "Endpoint",
|
|
33
|
+
"alternateNames": [],
|
|
34
|
+
"isRequired": false,
|
|
35
|
+
"rOrderNum": 2,
|
|
36
|
+
"allowNaN": false,
|
|
37
|
+
"description": "Specifies the Endpoint of the model deployed on Sagemaker.",
|
|
38
|
+
"rDescription": "Specifies the Endpoint of the model deployed on Sagemaker.",
|
|
39
|
+
"datatype": "STRING",
|
|
40
|
+
"allowsLists": false,
|
|
41
|
+
"allowPadding": true,
|
|
42
|
+
"rName": "endpoint",
|
|
43
|
+
"useInR": true,
|
|
44
|
+
"rFormulaUsage": false
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "Region",
|
|
48
|
+
"alternateNames": [],
|
|
49
|
+
"isRequired": false,
|
|
50
|
+
"rOrderNum": 3,
|
|
51
|
+
"allowNaN": false,
|
|
52
|
+
"description": "Specifies the name of the AWS Sagemaker service region.",
|
|
53
|
+
"rDescription": "Specifies the name of the AWS Sagemaker service region.",
|
|
54
|
+
"datatype": "STRING",
|
|
55
|
+
"allowsLists": false,
|
|
56
|
+
"allowPadding": true,
|
|
57
|
+
"rName": "region",
|
|
58
|
+
"useInR": true,
|
|
59
|
+
"rFormulaUsage": false
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"name": "AccessKey",
|
|
63
|
+
"alternateNames": [],
|
|
64
|
+
"isRequired": false,
|
|
65
|
+
"rOrderNum": 4,
|
|
66
|
+
"allowNaN": false,
|
|
67
|
+
"description": "Specifies the AWS Sagemaker service access key.",
|
|
68
|
+
"rDescription": "Specifies the AWS Sagemaker service access key.",
|
|
69
|
+
"datatype": "STRING",
|
|
70
|
+
"allowsLists": false,
|
|
71
|
+
"allowPadding": true,
|
|
72
|
+
"rName": "access.key",
|
|
73
|
+
"useInR": true,
|
|
74
|
+
"rFormulaUsage": false
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "SecretKey",
|
|
78
|
+
"alternateNames": [],
|
|
79
|
+
"isRequired": false,
|
|
80
|
+
"rOrderNum": 5,
|
|
81
|
+
"allowNaN": false,
|
|
82
|
+
"description": "Specifies the AWS Sagemaker service secret key.",
|
|
83
|
+
"rDescription": "Specifies the AWS Sagemaker service secret key.",
|
|
84
|
+
"datatype": "STRING",
|
|
85
|
+
"allowsLists": false,
|
|
86
|
+
"allowPadding": true,
|
|
87
|
+
"rName": "secret.key",
|
|
88
|
+
"useInR": true,
|
|
89
|
+
"rFormulaUsage": false
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"name": "SessionKey",
|
|
93
|
+
"alternateNames": [],
|
|
94
|
+
"isRequired": false,
|
|
95
|
+
"rOrderNum": 6,
|
|
96
|
+
"allowNaN": false,
|
|
97
|
+
"description": "Specifies the AWS Sagemaker service session key.",
|
|
98
|
+
"rDescription": "Specifies the AWS Sagemaker service session key.",
|
|
99
|
+
"datatype": "STRING",
|
|
100
|
+
"allowsLists": false,
|
|
101
|
+
"allowPadding": true,
|
|
102
|
+
"rName": "session.key",
|
|
103
|
+
"useInR": true,
|
|
104
|
+
"rFormulaUsage": false
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"targetTable": [
|
|
108
|
+
"InputTable"
|
|
109
|
+
],
|
|
110
|
+
"checkDuplicate": true,
|
|
111
|
+
"allowedTypes": [],
|
|
112
|
+
"allowedTypeGroups": [
|
|
113
|
+
"ALL"
|
|
114
|
+
],
|
|
115
|
+
"matchLengthOfArgument": "",
|
|
116
|
+
"allowPadding": false,
|
|
117
|
+
"name": "InputColumns",
|
|
118
|
+
"alternateNames": [],
|
|
119
|
+
"isRequired": true,
|
|
120
|
+
"rDescription": "Specifies the input table columns to be sent to the model hosted on sagemaker for inference.",
|
|
121
|
+
"description": "Specifies the input table columns to be sent to the model hosted on sagemaker for inference.",
|
|
122
|
+
"datatype": "COLUMNS",
|
|
123
|
+
"allowsLists": true,
|
|
124
|
+
"rName": "input.columns",
|
|
125
|
+
"useInR": true,
|
|
126
|
+
"rOrderNum": 7
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"permittedValues": ["TRUE", "FALSE"],
|
|
130
|
+
"isOutputColumn": false,
|
|
131
|
+
"name": "isDebug",
|
|
132
|
+
"alternateNames": [],
|
|
133
|
+
"isRequired": false,
|
|
134
|
+
"rDescription": "Specify whether error logging is required.",
|
|
135
|
+
"description": "Specify whether error logging is required.",
|
|
136
|
+
"datatype": "STRING",
|
|
137
|
+
"allowsLists": false,
|
|
138
|
+
"rName": "is.debug",
|
|
139
|
+
"useInR": true,
|
|
140
|
+
"rOrderNum": 8
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"targetTable": [
|
|
144
|
+
"InputTable"
|
|
145
|
+
],
|
|
146
|
+
"checkDuplicate": true,
|
|
147
|
+
"allowedTypes": [],
|
|
148
|
+
"allowedTypeGroups": [
|
|
149
|
+
"ALL"
|
|
150
|
+
],
|
|
151
|
+
"matchLengthOfArgument": "",
|
|
152
|
+
"allowPadding": false,
|
|
153
|
+
"name": "Accumulate",
|
|
154
|
+
"alternateNames": [],
|
|
155
|
+
"isRequired": false,
|
|
156
|
+
"rDescription": "Specifies the input table columns to copy to the output table. By default, the function copy all input table columns to the output table.",
|
|
157
|
+
"description": "Specifies the input table columns to copy to the output table. By default, the function copy all any input table columns to the output table.",
|
|
158
|
+
"datatype": "COLUMNS",
|
|
159
|
+
"allowsLists": true,
|
|
160
|
+
"rName": "accumulate",
|
|
161
|
+
"useInR": true,
|
|
162
|
+
"rOrderNum": 9
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"name": "AUTHORIZATION",
|
|
166
|
+
"alternateNames": [],
|
|
167
|
+
"isRequired": false,
|
|
168
|
+
"rOrderNum":10,
|
|
169
|
+
"allowNaN": false,
|
|
170
|
+
"description": "Specifies the authorization object name containing the credentials, optionally prefixed by the database name.",
|
|
171
|
+
"rDescription": "Specifies the authorization object name containing the credentials, optionally prefixed by the database name.",
|
|
172
|
+
"datatype": "STRING",
|
|
173
|
+
"allowsLists": false,
|
|
174
|
+
"allowPadding": true,
|
|
175
|
+
"rName": "authorization",
|
|
176
|
+
"useInR": true,
|
|
177
|
+
"rFormulaUsage": false
|
|
178
|
+
}
|
|
179
|
+
]
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
|