teradataml 20.0.0.3__py3-none-any.whl → 20.0.0.5__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/LICENSE-3RD-PARTY.pdf +0 -0
- teradataml/README.md +193 -1
- teradataml/__init__.py +2 -1
- teradataml/_version.py +2 -2
- teradataml/analytics/analytic_function_executor.py +25 -18
- teradataml/analytics/byom/__init__.py +1 -1
- teradataml/analytics/json_parser/analytic_functions_argument.py +4 -0
- teradataml/analytics/sqle/__init__.py +20 -2
- teradataml/analytics/utils.py +15 -1
- teradataml/analytics/valib.py +18 -4
- teradataml/automl/__init__.py +341 -112
- teradataml/automl/autodataprep/__init__.py +471 -0
- teradataml/automl/data_preparation.py +84 -42
- teradataml/automl/data_transformation.py +69 -33
- teradataml/automl/feature_engineering.py +76 -9
- teradataml/automl/feature_exploration.py +639 -25
- teradataml/automl/model_training.py +35 -14
- teradataml/clients/auth_client.py +2 -2
- teradataml/common/__init__.py +1 -2
- teradataml/common/constants.py +122 -63
- teradataml/common/messagecodes.py +14 -3
- teradataml/common/messages.py +8 -4
- teradataml/common/sqlbundle.py +40 -10
- teradataml/common/utils.py +366 -74
- teradataml/common/warnings.py +11 -0
- teradataml/context/context.py +348 -86
- teradataml/data/amazon_reviews_25.csv +26 -0
- teradataml/data/apriori_example.json +22 -0
- teradataml/data/byom_example.json +11 -0
- teradataml/data/docs/byom/docs/DataRobotPredict.py +2 -2
- teradataml/data/docs/byom/docs/DataikuPredict.py +40 -1
- teradataml/data/docs/byom/docs/H2OPredict.py +2 -2
- teradataml/data/docs/byom/docs/ONNXEmbeddings.py +242 -0
- teradataml/data/docs/byom/docs/ONNXPredict.py +2 -2
- teradataml/data/docs/byom/docs/PMMLPredict.py +2 -2
- teradataml/data/docs/sqle/docs_17_20/Apriori.py +138 -0
- teradataml/data/docs/sqle/docs_17_20/NERExtractor.py +121 -0
- teradataml/data/docs/sqle/docs_17_20/NGramSplitter.py +3 -3
- teradataml/data/docs/sqle/docs_17_20/SMOTE.py +212 -0
- teradataml/data/docs/sqle/docs_17_20/Shap.py +28 -6
- teradataml/data/docs/sqle/docs_17_20/TextMorph.py +119 -0
- teradataml/data/docs/sqle/docs_17_20/TextParser.py +54 -3
- teradataml/data/docs/uaf/docs_17_20/ACF.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/ArimaEstimate.py +2 -2
- teradataml/data/docs/uaf/docs_17_20/ArimaXEstimate.py +2 -2
- teradataml/data/docs/uaf/docs_17_20/DFFT.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/DFFT2.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/DFFT2Conv.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/DFFTConv.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/DWT2D.py +4 -1
- teradataml/data/docs/uaf/docs_17_20/FilterFactory1d.py +4 -4
- teradataml/data/docs/uaf/docs_17_20/GenseriesSinusoids.py +2 -2
- teradataml/data/docs/uaf/docs_17_20/GoldfeldQuandt.py +2 -2
- teradataml/data/docs/uaf/docs_17_20/HoltWintersForecaster.py +6 -6
- teradataml/data/docs/uaf/docs_17_20/LineSpec.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/LinearRegr.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/Matrix2Image.py +4 -4
- teradataml/data/docs/uaf/docs_17_20/MultivarRegr.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/PACF.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/PowerSpec.py +2 -2
- teradataml/data/docs/uaf/docs_17_20/PowerTransform.py +3 -3
- teradataml/data/docs/uaf/docs_17_20/Resample.py +5 -5
- teradataml/data/docs/uaf/docs_17_20/SAX.py +3 -3
- teradataml/data/docs/uaf/docs_17_20/SignifPeriodicities.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/SimpleExp.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/Smoothma.py +3 -3
- teradataml/data/docs/uaf/docs_17_20/UNDIFF.py +1 -1
- teradataml/data/hnsw_alter_data.csv +5 -0
- teradataml/data/hnsw_data.csv +10 -0
- teradataml/data/jsons/byom/h2opredict.json +1 -1
- teradataml/data/jsons/byom/onnxembeddings.json +266 -0
- teradataml/data/jsons/sqle/17.20/NGramSplitter.json +6 -6
- teradataml/data/jsons/sqle/17.20/TD_Apriori.json +181 -0
- teradataml/data/jsons/sqle/17.20/TD_NERExtractor.json +145 -0
- teradataml/data/jsons/sqle/17.20/TD_SMOTE.json +267 -0
- teradataml/data/jsons/sqle/17.20/TD_Shap.json +0 -1
- teradataml/data/jsons/sqle/17.20/TD_TextMorph.json +134 -0
- teradataml/data/jsons/sqle/17.20/TD_TextParser.json +114 -9
- teradataml/data/jsons/sqle/20.00/AI_AnalyzeSentiment.json +328 -0
- teradataml/data/jsons/sqle/20.00/AI_AskLLM.json +420 -0
- teradataml/data/jsons/sqle/20.00/AI_DetectLanguage.json +343 -0
- teradataml/data/jsons/sqle/20.00/AI_ExtractKeyPhrases.json +328 -0
- teradataml/data/jsons/sqle/20.00/AI_MaskPII.json +328 -0
- teradataml/data/jsons/sqle/20.00/AI_RecognizeEntities.json +328 -0
- teradataml/data/jsons/sqle/20.00/AI_RecognizePIIEntities.json +328 -0
- teradataml/data/jsons/sqle/20.00/AI_TextClassifier.json +359 -0
- teradataml/data/jsons/sqle/20.00/AI_TextEmbeddings.json +360 -0
- teradataml/data/jsons/sqle/20.00/AI_TextSummarize.json +343 -0
- teradataml/data/jsons/sqle/20.00/AI_TextTranslate.json +343 -0
- teradataml/data/jsons/sqle/20.00/TD_HNSW.json +296 -0
- teradataml/data/jsons/sqle/20.00/TD_HNSWPredict.json +206 -0
- teradataml/data/jsons/sqle/20.00/TD_HNSWSummary.json +32 -0
- teradataml/data/jsons/sqle/20.00/TD_KMeans.json +2 -2
- teradataml/data/jsons/sqle/20.00/TD_SMOTE.json +3 -3
- teradataml/data/jsons/sqle/20.00/TD_VectorDistance.json +6 -6
- teradataml/data/ner_dict.csv +8 -0
- teradataml/data/ner_input_eng.csv +7 -0
- teradataml/data/ner_rule.csv +5 -0
- teradataml/data/pos_input.csv +40 -0
- teradataml/data/tdnerextractor_example.json +14 -0
- teradataml/data/teradataml_example.json +21 -0
- teradataml/data/textmorph_example.json +5 -0
- teradataml/data/to_num_data.csv +4 -0
- teradataml/data/tochar_data.csv +5 -0
- teradataml/data/trans_dense.csv +16 -0
- teradataml/data/trans_sparse.csv +55 -0
- teradataml/data/vectordistance_example.json +1 -1
- teradataml/dataframe/copy_to.py +45 -29
- teradataml/dataframe/data_transfer.py +72 -46
- teradataml/dataframe/dataframe.py +642 -166
- teradataml/dataframe/dataframe_utils.py +167 -22
- teradataml/dataframe/functions.py +135 -20
- teradataml/dataframe/setop.py +11 -6
- teradataml/dataframe/sql.py +330 -78
- teradataml/dbutils/dbutils.py +556 -140
- teradataml/dbutils/filemgr.py +14 -10
- teradataml/hyperparameter_tuner/optimizer.py +12 -1
- teradataml/lib/aed_0_1.dll +0 -0
- teradataml/opensource/{sklearn/_sklearn_wrapper.py → _base.py} +168 -1013
- teradataml/opensource/_class.py +141 -17
- teradataml/opensource/{constants.py → _constants.py} +7 -3
- teradataml/opensource/_lightgbm.py +52 -53
- teradataml/opensource/_sklearn.py +1008 -0
- teradataml/opensource/_wrapper_utils.py +5 -5
- teradataml/options/__init__.py +47 -15
- teradataml/options/configure.py +103 -26
- teradataml/options/display.py +13 -2
- teradataml/plot/axis.py +47 -8
- teradataml/plot/figure.py +33 -0
- teradataml/plot/plot.py +63 -13
- teradataml/scriptmgmt/UserEnv.py +307 -40
- teradataml/scriptmgmt/lls_utils.py +428 -145
- teradataml/store/__init__.py +2 -3
- teradataml/store/feature_store/feature_store.py +102 -7
- teradataml/table_operators/Apply.py +48 -19
- teradataml/table_operators/Script.py +23 -2
- teradataml/table_operators/TableOperator.py +3 -1
- teradataml/table_operators/table_operator_util.py +58 -9
- teradataml/utils/dtypes.py +49 -1
- teradataml/utils/internal_buffer.py +38 -0
- teradataml/utils/validators.py +377 -62
- {teradataml-20.0.0.3.dist-info → teradataml-20.0.0.5.dist-info}/METADATA +200 -4
- {teradataml-20.0.0.3.dist-info → teradataml-20.0.0.5.dist-info}/RECORD +146 -112
- teradataml/data/SQL_Fundamentals.pdf +0 -0
- teradataml/libaed_0_1.dylib +0 -0
- teradataml/libaed_0_1.so +0 -0
- teradataml/opensource/sklearn/__init__.py +0 -0
- teradataml/store/vector_store/__init__.py +0 -1586
- {teradataml-20.0.0.3.dist-info → teradataml-20.0.0.5.dist-info}/WHEEL +0 -0
- {teradataml-20.0.0.3.dist-info → teradataml-20.0.0.5.dist-info}/top_level.txt +0 -0
- {teradataml-20.0.0.3.dist-info → teradataml-20.0.0.5.dist-info}/zip-safe +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: teradataml
|
|
3
|
-
Version: 20.0.0.
|
|
3
|
+
Version: 20.0.0.5
|
|
4
4
|
Summary: Teradata Vantage Python package for Advanced Analytics
|
|
5
5
|
Home-page: http://www.teradata.com/
|
|
6
6
|
Author: Teradata Corporation
|
|
@@ -17,18 +17,22 @@ Classifier: Topic :: Database :: Front-Ends
|
|
|
17
17
|
Classifier: License :: Other/Proprietary License
|
|
18
18
|
Requires-Python: >=3.8
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
|
-
Requires-Dist: teradatasql (>=20.0.0.
|
|
21
|
-
Requires-Dist: teradatasqlalchemy (>=20.0.0.
|
|
20
|
+
Requires-Dist: teradatasql (>=20.0.0.26)
|
|
21
|
+
Requires-Dist: teradatasqlalchemy (>=20.0.0.5)
|
|
22
22
|
Requires-Dist: pandas (>=0.22)
|
|
23
23
|
Requires-Dist: psutil
|
|
24
24
|
Requires-Dist: requests (>=2.25.1)
|
|
25
25
|
Requires-Dist: scikit-learn (>=0.24.2)
|
|
26
26
|
Requires-Dist: IPython (>=8.10.0)
|
|
27
27
|
Requires-Dist: imbalanced-learn (>=0.8.0)
|
|
28
|
+
Requires-Dist: matplotlib (>=3.7.5)
|
|
29
|
+
Requires-Dist: seaborn (>=0.13.0)
|
|
28
30
|
Requires-Dist: pyjwt (>=2.8.0)
|
|
29
31
|
Requires-Dist: cryptography (>=42.0.5)
|
|
30
32
|
Requires-Dist: sqlalchemy (>=2.0)
|
|
31
33
|
Requires-Dist: lightgbm (>=3.3.3)
|
|
34
|
+
Requires-Dist: python-dotenv
|
|
35
|
+
Requires-Dist: teradatamlwidgets (>=20.0.0.5)
|
|
32
36
|
|
|
33
37
|
## Teradata Python package for Advanced Analytics.
|
|
34
38
|
|
|
@@ -38,7 +42,7 @@ For community support, please visit the [Teradata Community](https://support.ter
|
|
|
38
42
|
|
|
39
43
|
For Teradata customer support, please visit [Teradata Support](https://support.teradata.com/csm).
|
|
40
44
|
|
|
41
|
-
Copyright
|
|
45
|
+
Copyright 2025, Teradata. All Rights Reserved.
|
|
42
46
|
|
|
43
47
|
### Table of Contents
|
|
44
48
|
* [Release Notes](#release-notes)
|
|
@@ -49,6 +53,198 @@ Copyright 2024, Teradata. All Rights Reserved.
|
|
|
49
53
|
|
|
50
54
|
## Release Notes:
|
|
51
55
|
|
|
56
|
+
#### teradataml 20.00.00.05
|
|
57
|
+
* ##### New Features/Functionality
|
|
58
|
+
* ##### teradataml: AutoML
|
|
59
|
+
* New methods added for `AutoML()`, `AutoRegressor()` and `AutoClassifier()`:
|
|
60
|
+
* `get_persisted_tables()` - List the persisted tables created during AutoML execution.
|
|
61
|
+
* `visualize()` - Generates visualizations to analyze and understand the underlying patterns in the data.
|
|
62
|
+
|
|
63
|
+
* ##### AutoDataPrep - Automated Data Preparation
|
|
64
|
+
AutoDataPrep simplifies the data preparation process by automating the different aspects of
|
|
65
|
+
data cleaning and transformation, enabling seamless exploration, transformation, and optimization of datasets.
|
|
66
|
+
* `AutoDataPrep`
|
|
67
|
+
* Methods of AutoDataPrep
|
|
68
|
+
* `__init__()` - Instantiate an object of AutoDataPrep with given parameters.
|
|
69
|
+
* `fit()` - Perform fit on specified data and target column.
|
|
70
|
+
* `get_data()` - Retrieve the data after AutoDataPrep.
|
|
71
|
+
* `load()` - Load the saved datasets from Teradata Vantage.
|
|
72
|
+
* `deploy()` - Persist the datasets generated by AutoDataPrep in Teradata Vantage.
|
|
73
|
+
* `delete_data()` - Deletes the deployed dataset from the Teradata Vantage.
|
|
74
|
+
* `visualize()` - Generates visualizations to analyze and understand the underlying patterns in the data.
|
|
75
|
+
|
|
76
|
+
* ##### teradataml: SQLE Engine Analytic Functions
|
|
77
|
+
* New Analytics Database Analytic Functions:
|
|
78
|
+
* `Apriori()`
|
|
79
|
+
* `NERExtractor()`
|
|
80
|
+
* `TextMorph()`
|
|
81
|
+
|
|
82
|
+
* ##### teradataml: Functions
|
|
83
|
+
* `td_range()` - Creates a DataFrame with a specified range of numbers.
|
|
84
|
+
|
|
85
|
+
* ##### teradataml DataFrameColumn a.k.a. ColumnExpression
|
|
86
|
+
* `DataFrameColumn.to_number()` - Function converts a string-like representation of a number to NUMBER type.
|
|
87
|
+
|
|
88
|
+
* ##### Updates
|
|
89
|
+
* ###### teradataml: DataFrame function
|
|
90
|
+
* `DataFrame.agg()`: User can request for different percentiles while running agg function.
|
|
91
|
+
* New argument `debug` is added to `DataFrame.map_row()`, `DataFrame.map_partition()`, `DataFrame.apply()` and `udf()`. During the execution of these functions, teradataml internally generates scripts, which are garbage collected implicitly. To debug the failures, this argument allows user to control the garbage collection of the script. When set to False (default), script generated is garbage collected, otherwise script is not garbage collected and displays the path to the script, and user is responsible to remove the script if required.
|
|
92
|
+
* `map_row()`, `map_partition()` and `apply()`
|
|
93
|
+
* Raises a TeradataMlException, if the Python interpreter major version is different between the Vantage Python environment and the local user environment.
|
|
94
|
+
* Displays a warning, if `dill` package version is different between the Vantage Python environment and the local user environment.
|
|
95
|
+
* `DataFrame.describe()`: Argument `include` is no longer supported.
|
|
96
|
+
* `assign()` - Optimized SQL query to enhance the performance for consecutive assign calls.
|
|
97
|
+
|
|
98
|
+
* ###### teradataml: Context Creation
|
|
99
|
+
* `create_context()`
|
|
100
|
+
* Enables user to set the authentication token while creating the connection. This authentication token is required to access services running on Teradata Vantage.
|
|
101
|
+
* New argument `sql_timeout` is added to specify timeout for SQL statement execution triggered from the current session.
|
|
102
|
+
|
|
103
|
+
* ###### teradataml: UAF Functions
|
|
104
|
+
* Integer type value is now accepted as a valid value for function arguments accepting float type.
|
|
105
|
+
|
|
106
|
+
* ###### General functions
|
|
107
|
+
* `set_auth_token()`
|
|
108
|
+
* Added argument `kid` to accept the name of the key used while generating `pem_file`.
|
|
109
|
+
* New keyword argument `auth_mech` accepts the authentication mechanism to be used for generating authentication token.
|
|
110
|
+
* Basic authentication is now supported as well. New keyword argument `password` accepts password for database user in such case.
|
|
111
|
+
* `copy_to_sql()` and `read_csv()` support the VECTOR data type.
|
|
112
|
+
|
|
113
|
+
* ###### Open Analytics Framework (OpenAF) APIs:
|
|
114
|
+
* `create_env()`:
|
|
115
|
+
* Supports creation of conda R environment.
|
|
116
|
+
|
|
117
|
+
* ###### teradataml DataFrameColumn a.k.a. ColumnExpression
|
|
118
|
+
* _String Functions_
|
|
119
|
+
* `DataFrameColumn.substr()` - Arguments `start_pos` and `length` now accept DataFrameColumn as input.
|
|
120
|
+
* `DataFrameColumn.to_char()` - Argument `formatter` now accepts DataFrameColumn as input.
|
|
121
|
+
|
|
122
|
+
* ###### teradataml: SQLE Engine Analytic Functions
|
|
123
|
+
* Updated Analytics Database Analytic Functions:
|
|
124
|
+
* `SMOTE()` is now supported on 17.20.00.00 as well.
|
|
125
|
+
* `TextParser()`
|
|
126
|
+
* New arguments added: `enforce_token_limit`, `delimiter_regex`, `doc_id_column`,
|
|
127
|
+
`list_positions`, `token_frequency`, `output_by_word`
|
|
128
|
+
|
|
129
|
+
#### teradataml 20.00.00.04
|
|
130
|
+
* ##### New Features/Functionality
|
|
131
|
+
* ###### teradataml OTF Support:
|
|
132
|
+
* This release has enabled the support for accessing OTF data from teradataml.
|
|
133
|
+
* User can now create a teradataml DataFrame on OTF table, allowing user to use teradataml functions.
|
|
134
|
+
* Example usage below:
|
|
135
|
+
* Creation of view on OTF/datalake table is not supported. Hence, user has to set `configure.temp_object_type` to `VT` using below-mentioned statement.
|
|
136
|
+
```configure.temp_object_type = "VT"```
|
|
137
|
+
* User needs to provide additional information about datalake while creating the DataFrame. There are two approaches to provide datalake information
|
|
138
|
+
* Approach 1: Using `in_schema()`
|
|
139
|
+
```
|
|
140
|
+
>>> from teradataml.dataframe.dataframe import in_schema
|
|
141
|
+
# Create an in_schema object to privide additional information about datalake.
|
|
142
|
+
>>> in_schema_tbl = in_schema(schema_name="datalake_db",
|
|
143
|
+
... table_name="datalake_table_name",
|
|
144
|
+
... datalake_name="datalake")
|
|
145
|
+
>>> otf_df = DataFrame(in_schema_tbl)
|
|
146
|
+
```
|
|
147
|
+
* Approach 2: Using `DataFrame.from_table()`
|
|
148
|
+
```
|
|
149
|
+
>>> otf_df = DataFrame.from_table(table_name = "datalake_table_name",
|
|
150
|
+
... schema_name="datalake_db",
|
|
151
|
+
... datalake_name="datalake")
|
|
152
|
+
```
|
|
153
|
+
* Once this DataFrame is created, users can use any DataFrame method or analytics features/functionality from teradataml with it. Visit Limitations and considerations section in _Teradata Python Package User Guide_ to check the supportability.
|
|
154
|
+
* Note: All further operations create volatile tables in local database.
|
|
155
|
+
```
|
|
156
|
+
>>> new_df = otf_df.assign(new_col=otf_df.existing_col*2)
|
|
157
|
+
```
|
|
158
|
+
* ###### teradataml: DataFrame
|
|
159
|
+
* Introduced a new feature 'Exploratory Data Analysis UI' (EDA-UI), which enhances
|
|
160
|
+
the user experience of teradataml with Jupyter notebook. EDA-UI is displayed by default
|
|
161
|
+
when a teradataml DataFrame is printed in the Jupyter notebook.
|
|
162
|
+
* User can control the EDA-UI using a new configuration option `display.enable_ui`.
|
|
163
|
+
It can be disabled by setting `display.enable_ui` to False.
|
|
164
|
+
* New Function
|
|
165
|
+
* `get_output()` is added to get the result of Analytic function when executed from EDA UI.
|
|
166
|
+
|
|
167
|
+
* ###### OpensourceML
|
|
168
|
+
* `td_lightgbm` - A teradataml OpenSourceML module
|
|
169
|
+
* `deploy()` - User can now deploy the models created by lightgbm `Booster` and `sklearn` modules. Deploying the model stores the model in Vantage for future use with `td_lightgbm`.
|
|
170
|
+
* `td_lightgbm.deploy()` - Deploy the lightgbm `Booster` or any `scikit-learn` model trained outside Vantage.
|
|
171
|
+
* `td_lightgbm.train().deploy()` - Deploys the lightgbm `Booster` object trained within Vantage.
|
|
172
|
+
* `td_lightgbm.<sklearn_class>().deploy()` - Deploys lightgbm's sklearn class object created/trained within Vantage.
|
|
173
|
+
* `load()` - User can load the deployed models back in the current session. This allows user to use the lightgbm functions with the `td_lightgbm` module.
|
|
174
|
+
* `td_lightgbm.load()` - Load the deployed model in the current session.
|
|
175
|
+
|
|
176
|
+
* ###### FeatureStore
|
|
177
|
+
* New function `FeatureStore.delete()` is added to drop the Feature Store and corresponding repo from Vantage.
|
|
178
|
+
|
|
179
|
+
* ###### Database Utility
|
|
180
|
+
* `db_python_version_diff()` - Identifies the Python interpreter major version difference between the interpreter installed on Vantage vs interpreter on the local user environment.
|
|
181
|
+
* `db_python_package_version_diff()` - Identifies the Python package version difference between the packages installed on Vantage vs the local user environment.
|
|
182
|
+
|
|
183
|
+
* ###### BYOM Function
|
|
184
|
+
* `ONNXEmbeddings()` - Calculate embeddings values in Vantage using an embeddings model that has been created outside Vantage and stored in ONNX format.
|
|
185
|
+
|
|
186
|
+
* ###### teradataml Options
|
|
187
|
+
* Configuration Options
|
|
188
|
+
* `configure.temp_object_type` - Allows user to choose between creating volatile tables or views for teradataml internal use. By default, teradataml internally creates the views for some of the operations. Now, with new configuration option, user can opt to create Volatile tables instead of views. This provides greater flexibility for users who lack the necessary permissions to create view or need to create views on tables without WITH GRANT permissions.
|
|
189
|
+
* Display Options
|
|
190
|
+
* `display.enable_ui` - Specifies whether to display exploratory data analysis UI when DataFrame is printed. By default, this option is enabled (True), allowing exploratory data analysis UI to be displayed. When set to False, exploratory data analysis UI is hidden.
|
|
191
|
+
|
|
192
|
+
* ##### Updates
|
|
193
|
+
* ###### teradataml: DataFrame function
|
|
194
|
+
* `describe()`
|
|
195
|
+
* New argument added: `pivot`.
|
|
196
|
+
* When argument `pivot` is set to False, Non-numeric columns are no longer supported for generating statistics.
|
|
197
|
+
Use `CategoricalSummary` and `ColumnSummary`.
|
|
198
|
+
* `fillna()` - Accepts new argument `partition_column` to partition the data and impute null values accordingly.
|
|
199
|
+
* Optimised performance for `DataFrame.plot()`.
|
|
200
|
+
* `DataFrame.plot()` will not regenerate the image when run more than once with same arguments.
|
|
201
|
+
* `DataFrame.from_table()`: New argument `datalake_name` added to accept datalake name while creating DataFrame on datalake table.
|
|
202
|
+
|
|
203
|
+
* ###### teradataml: DataFrame Utilities
|
|
204
|
+
* `in_schema()`: New argument `datalake_name` added to accept datalake name.
|
|
205
|
+
|
|
206
|
+
* ###### Table Operator
|
|
207
|
+
* `Apply()` no longer looks at authentication token by default. Authentication token is now required only if user wants to consume Open Analytics Framework REST APIs.
|
|
208
|
+
|
|
209
|
+
* ###### Hyper Parameter Tuner
|
|
210
|
+
* `GridSearch()` and `RandomSearch()` now displays a message to refer to `get_error_log()` api when model training fails in HPT.
|
|
211
|
+
|
|
212
|
+
* ###### teradataml Options
|
|
213
|
+
* Configuration Options
|
|
214
|
+
* `configure.indb_install_location`
|
|
215
|
+
Determines the installation location of the In-DB Python package based on the installed RPM version.
|
|
216
|
+
|
|
217
|
+
* ###### teradataml Context Creation
|
|
218
|
+
* `create_context()` - Enables user to create connection using either parameters set in environment or config file, in addition to previous method. Newly added options help users to hide the sensitive data from the script.
|
|
219
|
+
|
|
220
|
+
* ###### Open Analytics Framework
|
|
221
|
+
* Enhanced the `create_env()` to display a message when an invalid base_env is passed, informing users that the default base_env is being used.
|
|
222
|
+
|
|
223
|
+
* ###### OpensourceML
|
|
224
|
+
* Raises a TeradataMlException, if the Python interpreter major version is different between the Vantage Python environment and the local user environment.
|
|
225
|
+
* Displays a warning, if specific Python package versions are different between the Vantage Python environment and the local user environment.
|
|
226
|
+
|
|
227
|
+
* ###### Database Utility
|
|
228
|
+
* `db_list_tables()`: New argument `datalake_name` added to accept datalake name to list tables from.
|
|
229
|
+
* `db_drop_table()`:
|
|
230
|
+
* New argument `datalake_name` added to accept datalake name to drop tables from.
|
|
231
|
+
* New argument `purge` added to specify whether to use `PURGE ALL` or `NO PURGE` clause while dropping table.
|
|
232
|
+
|
|
233
|
+
* ##### Bug Fixes
|
|
234
|
+
* `td_lightgbm` OpensourceML module: In multi model case, `td_lightgbm.Dataset().add_features_from()` function should add features of one partition in first Dataset to features of the same partition in second Dataset. This is not the case before and this function fails. Fixed this now.
|
|
235
|
+
* Fixed a minor bug in the `Shap()` and converted argument `training_method` to required argument.
|
|
236
|
+
* Fixed PCA-related warnings in `AutoML`.
|
|
237
|
+
* `AutoML` no longer fails when data with all categorical columns are provided.
|
|
238
|
+
* Fixed `AutoML` issue with upsampling method.
|
|
239
|
+
* Excluded the identifier column from outlier processing in `AutoML`.
|
|
240
|
+
* `DataFrame.set_index()` no longer modifies the original DataFrame's index when argument `append` is used.
|
|
241
|
+
* `concat()` function now supports the DataFrame with column name starts with digit or contains special characters or contains reserved keywords.
|
|
242
|
+
* `create_env()` proceeds to install other files even if current file installation fails.
|
|
243
|
+
* Corrected the error message being raised in `create_env()` when authentication token is not set.
|
|
244
|
+
* Added missing argument `charset` for Vantage Analytic Library functions.
|
|
245
|
+
* New argument `seed` is added to `AutoML`, `AutoRegressor` and `AutoClassifier` to ensure consistency on result.
|
|
246
|
+
* Analytic functions now work even if name of columns for underlying tables has non-ascii characters.
|
|
247
|
+
|
|
52
248
|
#### teradataml 20.00.00.03
|
|
53
249
|
|
|
54
250
|
* teradataml no longer supports setting the `auth_token` using `set_config_params()`. Users should use `set_auth_token()` to set the token.
|