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
|
@@ -1391,10 +1391,77 @@
|
|
|
1391
1391
|
"float_format": "VARCHAR(20)",
|
|
1392
1392
|
"date_format": "VARCHAR(20)"
|
|
1393
1393
|
},
|
|
1394
|
+
"Employee_roles": {
|
|
1395
|
+
"EmployeeID": "integer NOT NULL",
|
|
1396
|
+
"EmployeeName": "varchar(100) CHARACTER SET LATIN CASESPECIFIC",
|
|
1397
|
+
"Department": "varchar(50) CHARACTER SET LATIN CASESPECIFIC",
|
|
1398
|
+
"Salary": "decimal(10,2)",
|
|
1399
|
+
"role_validity_period": "PERIOD(DATE) NOT NULL AS VALIDTIME"
|
|
1400
|
+
},
|
|
1401
|
+
"Employee_Address": {
|
|
1402
|
+
"EmployeeID": "integer",
|
|
1403
|
+
"EmployeeName": "varchar(100) CHARACTER SET LATIN NOT CASESPECIFIC",
|
|
1404
|
+
"address": "varchar(255) CHARACTER SET LATIN NOT CASESPECIFIC",
|
|
1405
|
+
"validity_period": "PERIOD(TIMESTAMP(6) WITH TIME ZONE) NOT NULL AS TRANSACTIONTIME"
|
|
1406
|
+
},
|
|
1407
|
+
"Employee": {
|
|
1408
|
+
"EmployeeID": "integer NOT NULL",
|
|
1409
|
+
"EmployeeName": "varchar(100)",
|
|
1410
|
+
"address": "varchar(100)",
|
|
1411
|
+
"Department": "varchar(50)",
|
|
1412
|
+
"Salary": "decimal(10,2)",
|
|
1413
|
+
"role_validity": "PERIOD(DATE) NOT NULL AS VALIDTIME",
|
|
1414
|
+
"validity_period": "PERIOD(TIMESTAMP(6) WITH TIME ZONE) NOT NULL AS TRANSACTIONTIME"
|
|
1415
|
+
},
|
|
1394
1416
|
"pattern_matching_data":{
|
|
1395
1417
|
"id": "INTEGER",
|
|
1396
1418
|
"data": "VARCHAR(20)",
|
|
1397
1419
|
"pattern": "VARCHAR(20)",
|
|
1398
1420
|
"level": "VARCHAR(20)"
|
|
1421
|
+
},
|
|
1422
|
+
"creditcard_data":{
|
|
1423
|
+
"Credit_Time": "FLOAT",
|
|
1424
|
+
"V1" : "FLOAT",
|
|
1425
|
+
"V2" : "FLOAT",
|
|
1426
|
+
"V3" : "FLOAT",
|
|
1427
|
+
"V4" : "FLOAT",
|
|
1428
|
+
"V5" : "FLOAT",
|
|
1429
|
+
"V6" : "FLOAT",
|
|
1430
|
+
"V7" : "FLOAT",
|
|
1431
|
+
"V8" : "FLOAT",
|
|
1432
|
+
"V9" : "FLOAT",
|
|
1433
|
+
"V10" : "FLOAT",
|
|
1434
|
+
"V11" : "FLOAT",
|
|
1435
|
+
"V12" : "FLOAT",
|
|
1436
|
+
"V13" : "FLOAT",
|
|
1437
|
+
"V14" : "FLOAT",
|
|
1438
|
+
"V15" : "FLOAT",
|
|
1439
|
+
"V16" : "FLOAT",
|
|
1440
|
+
"V17" : "FLOAT",
|
|
1441
|
+
"V18" : "FLOAT",
|
|
1442
|
+
"V19" : "FLOAT",
|
|
1443
|
+
"V20" : "FLOAT",
|
|
1444
|
+
"V21" : "FLOAT",
|
|
1445
|
+
"V22" : "FLOAT",
|
|
1446
|
+
"V23" : "FLOAT",
|
|
1447
|
+
"V24" : "FLOAT",
|
|
1448
|
+
"V25" : "FLOAT",
|
|
1449
|
+
"V26" : "FLOAT",
|
|
1450
|
+
"V27" : "FLOAT",
|
|
1451
|
+
"V28" : "FLOAT",
|
|
1452
|
+
"Amount" : "FLOAT",
|
|
1453
|
+
"Credit_Class" : "BIGINT"
|
|
1454
|
+
},
|
|
1455
|
+
"payment_fraud_dataset":{
|
|
1456
|
+
"step": "BIGINT",
|
|
1457
|
+
"payment_type": "VARCHAR(40)",
|
|
1458
|
+
"amount": "FLOAT",
|
|
1459
|
+
"nameOrig": "VARCHAR(40)",
|
|
1460
|
+
"oldbalanceOrg": "FLOAT",
|
|
1461
|
+
"newbalanceOrig": "FLOAT",
|
|
1462
|
+
"nameDest": "VARCHAR(40)",
|
|
1463
|
+
"oldbalanceDest": "FLOAT",
|
|
1464
|
+
"newbalanceDest": "FLOAT",
|
|
1465
|
+
"isFraud": "BIGINT"
|
|
1399
1466
|
}
|
|
1400
1467
|
}
|