teradataml 20.0.0.4__py3-none-any.whl → 20.0.0.6__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.

Files changed (131) hide show
  1. teradataml/LICENSE-3RD-PARTY.pdf +0 -0
  2. teradataml/README.md +182 -13
  3. teradataml/__init__.py +2 -1
  4. teradataml/_version.py +2 -2
  5. teradataml/analytics/analytic_function_executor.py +8 -13
  6. teradataml/analytics/json_parser/analytic_functions_argument.py +4 -0
  7. teradataml/analytics/sqle/__init__.py +16 -1
  8. teradataml/analytics/utils.py +60 -1
  9. teradataml/automl/__init__.py +290 -106
  10. teradataml/automl/autodataprep/__init__.py +471 -0
  11. teradataml/automl/data_preparation.py +29 -10
  12. teradataml/automl/data_transformation.py +11 -0
  13. teradataml/automl/feature_engineering.py +64 -4
  14. teradataml/automl/feature_exploration.py +639 -25
  15. teradataml/automl/model_training.py +1 -1
  16. teradataml/clients/auth_client.py +12 -8
  17. teradataml/clients/keycloak_client.py +165 -0
  18. teradataml/common/constants.py +71 -26
  19. teradataml/common/exceptions.py +32 -0
  20. teradataml/common/messagecodes.py +28 -0
  21. teradataml/common/messages.py +13 -4
  22. teradataml/common/sqlbundle.py +3 -2
  23. teradataml/common/utils.py +345 -45
  24. teradataml/context/context.py +259 -93
  25. teradataml/data/apriori_example.json +22 -0
  26. teradataml/data/docs/sqle/docs_17_20/Apriori.py +138 -0
  27. teradataml/data/docs/sqle/docs_17_20/NERExtractor.py +121 -0
  28. teradataml/data/docs/sqle/docs_17_20/NGramSplitter.py +3 -3
  29. teradataml/data/docs/sqle/docs_17_20/SMOTE.py +212 -0
  30. teradataml/data/docs/sqle/docs_17_20/TextMorph.py +119 -0
  31. teradataml/data/docs/sqle/docs_17_20/TextParser.py +54 -3
  32. teradataml/data/docs/uaf/docs_17_20/ACF.py +1 -1
  33. teradataml/data/docs/uaf/docs_17_20/ArimaEstimate.py +2 -2
  34. teradataml/data/docs/uaf/docs_17_20/ArimaXEstimate.py +2 -2
  35. teradataml/data/docs/uaf/docs_17_20/DFFT.py +1 -1
  36. teradataml/data/docs/uaf/docs_17_20/DFFT2.py +1 -1
  37. teradataml/data/docs/uaf/docs_17_20/DFFT2Conv.py +1 -1
  38. teradataml/data/docs/uaf/docs_17_20/DFFTConv.py +1 -1
  39. teradataml/data/docs/uaf/docs_17_20/FilterFactory1d.py +4 -4
  40. teradataml/data/docs/uaf/docs_17_20/GenseriesSinusoids.py +2 -2
  41. teradataml/data/docs/uaf/docs_17_20/GoldfeldQuandt.py +2 -2
  42. teradataml/data/docs/uaf/docs_17_20/HoltWintersForecaster.py +6 -6
  43. teradataml/data/docs/uaf/docs_17_20/LineSpec.py +1 -1
  44. teradataml/data/docs/uaf/docs_17_20/LinearRegr.py +1 -1
  45. teradataml/data/docs/uaf/docs_17_20/Matrix2Image.py +4 -4
  46. teradataml/data/docs/uaf/docs_17_20/MultivarRegr.py +1 -1
  47. teradataml/data/docs/uaf/docs_17_20/PACF.py +1 -1
  48. teradataml/data/docs/uaf/docs_17_20/PowerSpec.py +2 -2
  49. teradataml/data/docs/uaf/docs_17_20/PowerTransform.py +3 -3
  50. teradataml/data/docs/uaf/docs_17_20/Resample.py +5 -5
  51. teradataml/data/docs/uaf/docs_17_20/SAX.py +3 -3
  52. teradataml/data/docs/uaf/docs_17_20/SignifPeriodicities.py +1 -1
  53. teradataml/data/docs/uaf/docs_17_20/SimpleExp.py +1 -1
  54. teradataml/data/docs/uaf/docs_17_20/Smoothma.py +3 -3
  55. teradataml/data/docs/uaf/docs_17_20/UNDIFF.py +1 -1
  56. teradataml/data/jsons/byom/onnxembeddings.json +1 -0
  57. teradataml/data/jsons/sqle/17.20/NGramSplitter.json +6 -6
  58. teradataml/data/jsons/sqle/17.20/TD_Apriori.json +181 -0
  59. teradataml/data/jsons/sqle/17.20/TD_NERExtractor.json +145 -0
  60. teradataml/data/jsons/sqle/17.20/TD_SMOTE.json +267 -0
  61. teradataml/data/jsons/sqle/17.20/TD_TextMorph.json +134 -0
  62. teradataml/data/jsons/sqle/17.20/TD_TextParser.json +114 -9
  63. teradataml/data/jsons/sqle/20.00/AI_AnalyzeSentiment.json +328 -0
  64. teradataml/data/jsons/sqle/20.00/AI_AskLLM.json +420 -0
  65. teradataml/data/jsons/sqle/20.00/AI_DetectLanguage.json +343 -0
  66. teradataml/data/jsons/sqle/20.00/AI_ExtractKeyPhrases.json +328 -0
  67. teradataml/data/jsons/sqle/20.00/AI_MaskPII.json +328 -0
  68. teradataml/data/jsons/sqle/20.00/AI_RecognizeEntities.json +328 -0
  69. teradataml/data/jsons/sqle/20.00/AI_RecognizePIIEntities.json +328 -0
  70. teradataml/data/jsons/sqle/20.00/AI_TextClassifier.json +359 -0
  71. teradataml/data/jsons/sqle/20.00/AI_TextEmbeddings.json +360 -0
  72. teradataml/data/jsons/sqle/20.00/AI_TextSummarize.json +343 -0
  73. teradataml/data/jsons/sqle/20.00/AI_TextTranslate.json +343 -0
  74. teradataml/data/jsons/sqle/20.00/TD_SMOTE.json +2 -2
  75. teradataml/data/jsons/sqle/20.00/TD_VectorDistance.json +1 -1
  76. teradataml/data/ner_dict.csv +8 -0
  77. teradataml/data/ner_input_eng.csv +7 -0
  78. teradataml/data/ner_rule.csv +5 -0
  79. teradataml/data/pattern_matching_data.csv +11 -0
  80. teradataml/data/pos_input.csv +40 -0
  81. teradataml/data/sdk/modelops/modelops_spec.json +101737 -0
  82. teradataml/data/tdnerextractor_example.json +14 -0
  83. teradataml/data/teradataml_example.json +21 -1
  84. teradataml/data/textmorph_example.json +5 -0
  85. teradataml/data/to_num_data.csv +4 -0
  86. teradataml/data/tochar_data.csv +5 -0
  87. teradataml/data/trans_dense.csv +16 -0
  88. teradataml/data/trans_sparse.csv +55 -0
  89. teradataml/data/url_data.csv +10 -9
  90. teradataml/dataframe/copy_to.py +38 -27
  91. teradataml/dataframe/data_transfer.py +61 -45
  92. teradataml/dataframe/dataframe.py +1110 -132
  93. teradataml/dataframe/dataframe_utils.py +73 -27
  94. teradataml/dataframe/functions.py +1070 -9
  95. teradataml/dataframe/sql.py +750 -959
  96. teradataml/dbutils/dbutils.py +33 -13
  97. teradataml/dbutils/filemgr.py +14 -10
  98. teradataml/hyperparameter_tuner/utils.py +4 -2
  99. teradataml/lib/aed_0_1.dll +0 -0
  100. teradataml/opensource/_base.py +12 -157
  101. teradataml/options/configure.py +24 -9
  102. teradataml/scriptmgmt/UserEnv.py +317 -39
  103. teradataml/scriptmgmt/lls_utils.py +456 -135
  104. teradataml/sdk/README.md +79 -0
  105. teradataml/sdk/__init__.py +4 -0
  106. teradataml/sdk/_auth_modes.py +422 -0
  107. teradataml/sdk/_func_params.py +487 -0
  108. teradataml/sdk/_json_parser.py +453 -0
  109. teradataml/sdk/_openapi_spec_constants.py +249 -0
  110. teradataml/sdk/_utils.py +236 -0
  111. teradataml/sdk/api_client.py +897 -0
  112. teradataml/sdk/constants.py +62 -0
  113. teradataml/sdk/modelops/__init__.py +98 -0
  114. teradataml/sdk/modelops/_client.py +406 -0
  115. teradataml/sdk/modelops/_constants.py +304 -0
  116. teradataml/sdk/modelops/models.py +2308 -0
  117. teradataml/sdk/spinner.py +107 -0
  118. teradataml/store/__init__.py +1 -1
  119. teradataml/table_operators/Apply.py +16 -1
  120. teradataml/table_operators/Script.py +20 -1
  121. teradataml/table_operators/query_generator.py +4 -21
  122. teradataml/table_operators/table_operator_util.py +58 -9
  123. teradataml/utils/dtypes.py +4 -2
  124. teradataml/utils/internal_buffer.py +22 -2
  125. teradataml/utils/utils.py +0 -1
  126. teradataml/utils/validators.py +318 -58
  127. {teradataml-20.0.0.4.dist-info → teradataml-20.0.0.6.dist-info}/METADATA +188 -14
  128. {teradataml-20.0.0.4.dist-info → teradataml-20.0.0.6.dist-info}/RECORD +131 -84
  129. {teradataml-20.0.0.4.dist-info → teradataml-20.0.0.6.dist-info}/WHEEL +0 -0
  130. {teradataml-20.0.0.4.dist-info → teradataml-20.0.0.6.dist-info}/top_level.txt +0 -0
  131. {teradataml-20.0.0.4.dist-info → teradataml-20.0.0.6.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.4
3
+ Version: 20.0.0.6
4
4
  Summary: Teradata Vantage Python package for Advanced Analytics
5
5
  Home-page: http://www.teradata.com/
6
6
  Author: Teradata Corporation
@@ -17,20 +17,25 @@ 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.19)
21
- Requires-Dist: teradatasqlalchemy (>=20.0.0.4)
20
+ Requires-Dist: teradatasql (>=20.0.0.26)
21
+ Requires-Dist: teradatasqlalchemy (>=20.0.0.6)
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)
32
34
  Requires-Dist: python-dotenv
33
35
  Requires-Dist: teradatamlwidgets (>=20.0.0.5)
36
+ Requires-Dist: oauthlib (>=3.2.2)
37
+ Requires-Dist: requests-oauthlib (>=2.0.0)
38
+ Requires-Dist: pydantic (>=2.10.6)
34
39
 
35
40
  ## Teradata Python package for Advanced Analytics.
36
41
 
@@ -40,7 +45,7 @@ For community support, please visit the [Teradata Community](https://support.ter
40
45
 
41
46
  For Teradata customer support, please visit [Teradata Support](https://support.teradata.com/csm).
42
47
 
43
- Copyright 2024, Teradata. All Rights Reserved.
48
+ Copyright 2025, Teradata. All Rights Reserved.
44
49
 
45
50
  ### Table of Contents
46
51
  * [Release Notes](#release-notes)
@@ -51,10 +56,179 @@ Copyright 2024, Teradata. All Rights Reserved.
51
56
 
52
57
  ## Release Notes:
53
58
 
59
+ #### teradataml 20.00.00.06
60
+ * ##### New Features/Functionality
61
+ * ###### teradataml: SDK
62
+ * Added new client `teradataml.sdk.Client` which can be used by user to make REST calls through SDK.
63
+ * New exception added in `teradataml`, specifically for REST APIs `TeradatamlRestException` that has attribute `json_resonse` providing proper printable json.
64
+ * Exposed three different ways of authentication through `Client`.
65
+ * Client credentials Authentication through `ClientCredentialsAuth` class.
66
+ * Device code Authentication through `DeviceCodeAuth` class.
67
+ * Bearer Authentication through `BearerAuth` class.
68
+
69
+ * ###### teradataml: ModelOps SDK
70
+ * `teradataml` exposes Python interfaces for all the REST APIs provided by Teradata Vantage ModelOps.
71
+ * Added support for `blueprint()` method which prints available classes in `modelops` module.
72
+ * Added new client `ModelOpsClient` with some additional function compared to `teradataml.sdk.Client`.
73
+ * teradataml classes are added for the schema in ModelOps OpenAPI specification.
74
+ ```python
75
+ >>> from teradataml.sdk.modelops import ModelOpsClient, Projects
76
+ >>> from teradataml.common.exceptions import TeradatamlRestException
77
+ >>> from teradataml.sdk import DeviceCodeAuth, BearerAuth, ClientCredentialsAuth # Authentication related classes.
78
+ >>> from teradataml.sdk.modelops import models # All classes related to OpenAPI schema are present in this module.
79
+
80
+ # Print available classes in modelops module.
81
+ >>> from teradataml.sdk.modelops import blueprint
82
+ >>> blueprint()
83
+
84
+ # Create ClientCredentialsAuth object and create ModelOpsClient object.
85
+ >>> cc_obj = ClientCredentialsAuth(auth_client_id="<client_id>",
86
+ auth_client_secret="<client_secret>",
87
+ auth_token_url="https://<example.com>/token")
88
+ >>> client = ModelOpsClient(base_url="<base_url>", auth=cc_obj, ssl_verify=False)
89
+
90
+ # Create Projects object.
91
+ >>> p = Projects(client=client)
92
+
93
+ # Create project using `body` argument taking object of ProjectRequestBody.
94
+ >>> project_paylod = {
95
+ "name": "dummy_project",
96
+ "description": "dummy_project created for testing",
97
+ "groupId": "<group_ID>",
98
+ "gitRepositoryUrl": "/app/built-in/empty",
99
+ "branch": "<branch>"
100
+ }
101
+ >>> p.create_project(body=models.ProjectRequestBody(**project_payload))
102
+ ```
103
+
104
+ * ###### teradataml: Functions
105
+ * `get_formatters()` - Get the formatters for NUMERIC, DATE and CHAR types.
106
+
107
+ * ###### teradataml: DataFrame Methods
108
+ * `get_snapshot()` - Gets the snapshot data of a teradataml DataFrame created on OTF table for a given snapshot id or timestamp.
109
+ * `from_pandas()`: Creates a teradataml DataFrame from a pandas DataFrame.
110
+ * `from_records()`: Creates a teradataml DataFrame from a list.
111
+ * `from_dict()`: Creates a teradataml DataFrame from a dictionary.
112
+
113
+ * ###### teradataml: DataFrame Property
114
+ * `history` - Returns snapshot history for a DataFrame created on OTF table.
115
+ * `manifests` - Returns manifest information for a DataFrame created on OTF table.
116
+ * `partitions` - Returns partition information for a DataFrame created on OTF table.
117
+ * `snapshots` - Returns snapshot information for a DataFrame created on OTF table.
118
+
119
+ * ###### teradataml DataFrameColumn a.k.a. ColumnExpression
120
+ * `DataFrameColumn.rlike()` - Function to match a string against a regular expression pattern.
121
+ * `DataFrameColumn.substring_index()` - Function to return the substring from a column before a specified
122
+ delimiter, up to a given occurrence count.
123
+ * `DataFrameColumn.count_delimiters()` - Function to count the total number of occurrences of a specified delimiter.
124
+
125
+ * ##### Updates
126
+ * ###### teradataml DataFrameColumn a.k.a. ColumnExpression
127
+ * `DataFrameColumn.like()`
128
+ * Added argument `escape_char` to specify the escape character for the LIKE pattern.
129
+ * Argument `pattern` now accepts DataFrameColumn as input.
130
+ * `DataFrameColumn.ilike()`
131
+ * Added argument `escape_char` to specify the escape character for the ILIKE pattern.
132
+ * Argument `pattern` now accepts DataFrameColumn as input.
133
+ * `DataFrameColumn.parse_url()` - Added argument `key` to extract a specific query parameter when `url_part` is set to "QUERY".
134
+
135
+ * ###### teradataml: DataFrame function
136
+ * `groupby()`, `cube()` and `rollup()`
137
+ * Added argument `include_grouping_columns` to include aggregations on the grouping column(s).
138
+ * `DataFrame()`: New argument `data`, that accepts input data to create a teradataml DataFrame, is added.
139
+
140
+ * ###### General functions
141
+ * `set_auth_token()`
142
+ * New keyword argument `auth_url` accepts the endpoint URL for a keycloak server.
143
+ * New keyword argument `rest_client` accepts name of the service for which keycloak token is to be generated.
144
+ * New keyword argument `validate_jwt` accepts the boolean flag to decide whether to validate generated JWT token or not.
145
+ * New keyword argument `valid_from` accepts the epoch seconds representing time from which JWT token will be valid.
146
+
147
+ * ###### teradataml Options
148
+ * Configuration Options
149
+ * `configure.use_short_object_name`
150
+ Specifies whether to use a shorter name for temporary database objects which are created by teradataml internally.
151
+
152
+ * ###### BYOM Function
153
+ * Supports special characters.
154
+
155
+ #### teradataml 20.00.00.05
156
+ * ##### New Features/Functionality
157
+ * ##### teradataml: AutoML
158
+ * New methods added for `AutoML()`, `AutoRegressor()` and `AutoClassifier()`:
159
+ * `get_persisted_tables()` - List the persisted tables created during AutoML execution.
160
+ * `visualize()` - Generates visualizations to analyze and understand the underlying patterns in the data.
161
+
162
+ * ##### AutoDataPrep - Automated Data Preparation
163
+ AutoDataPrep simplifies the data preparation process by automating the different aspects of
164
+ data cleaning and transformation, enabling seamless exploration, transformation, and optimization of datasets.
165
+ * `AutoDataPrep`
166
+ * Methods of AutoDataPrep
167
+ * `__init__()` - Instantiate an object of AutoDataPrep with given parameters.
168
+ * `fit()` - Perform fit on specified data and target column.
169
+ * `get_data()` - Retrieve the data after AutoDataPrep.
170
+ * `load()` - Load the saved datasets from Teradata Vantage.
171
+ * `deploy()` - Persist the datasets generated by AutoDataPrep in Teradata Vantage.
172
+ * `delete_data()` - Deletes the deployed dataset from the Teradata Vantage.
173
+ * `visualize()` - Generates visualizations to analyze and understand the underlying patterns in the data.
174
+
175
+ * ##### teradataml: SQLE Engine Analytic Functions
176
+ * New Analytics Database Analytic Functions:
177
+ * `Apriori()`
178
+ * `NERExtractor()`
179
+ * `TextMorph()`
180
+
181
+ * ##### teradataml: Functions
182
+ * `td_range()` - Creates a DataFrame with a specified range of numbers.
183
+
184
+ * ##### teradataml DataFrameColumn a.k.a. ColumnExpression
185
+ * `DataFrameColumn.to_number()` - Function converts a string-like representation of a number to NUMBER type.
186
+
187
+ * ##### Updates
188
+ * ###### teradataml: DataFrame function
189
+ * `DataFrame.agg()`: User can request for different percentiles while running agg function.
190
+ * 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.
191
+ * `map_row()`, `map_partition()` and `apply()`
192
+ * Raises a TeradataMlException, if the Python interpreter major version is different between the Vantage Python environment and the local user environment.
193
+ * Displays a warning, if `dill` package version is different between the Vantage Python environment and the local user environment.
194
+ * `DataFrame.describe()`: Argument `include` is no longer supported.
195
+ * `assign()` - Optimized SQL query to enhance the performance for consecutive assign calls.
196
+
197
+ * ###### teradataml: Context Creation
198
+ * `create_context()`
199
+ * Enables user to set the authentication token while creating the connection. This authentication token is required to access services running on Teradata Vantage.
200
+ * New argument `sql_timeout` is added to specify timeout for SQL statement execution triggered from the current session.
201
+
202
+ * ###### teradataml: UAF Functions
203
+ * Integer type value is now accepted as a valid value for function arguments accepting float type.
204
+
205
+ * ###### General functions
206
+ * `set_auth_token()`
207
+ * Added argument `kid` to accept the name of the key used while generating `pem_file`.
208
+ * New keyword argument `auth_mech` accepts the authentication mechanism to be used for generating authentication token.
209
+ * Basic authentication is now supported as well. New keyword argument `password` accepts password for database user in such case.
210
+ * `copy_to_sql()` and `read_csv()` support the VECTOR data type.
211
+
212
+ * ###### Open Analytics Framework (OpenAF) APIs:
213
+ * `create_env()`:
214
+ * Supports creation of conda R environment.
215
+
216
+ * ###### teradataml DataFrameColumn a.k.a. ColumnExpression
217
+ * _String Functions_
218
+ * `DataFrameColumn.substr()` - Arguments `start_pos` and `length` now accept DataFrameColumn as input.
219
+ * `DataFrameColumn.to_char()` - Argument `formatter` now accepts DataFrameColumn as input.
220
+
221
+ * ###### teradataml: SQLE Engine Analytic Functions
222
+ * Updated Analytics Database Analytic Functions:
223
+ * `SMOTE()` is now supported on 17.20.00.00 as well.
224
+ * `TextParser()`
225
+ * New arguments added: `enforce_token_limit`, `delimiter_regex`, `doc_id_column`,
226
+ `list_positions`, `token_frequency`, `output_by_word`
227
+
54
228
  #### teradataml 20.00.00.04
55
229
  * ##### New Features/Functionality
56
230
  * ###### teradataml OTF Support:
57
- * This release has enabled the support for accessing OTF data from teradataml.
231
+ * This release has enabled the support for accessing OTF data from teradataml.
58
232
  * User can now create a teradataml DataFrame on OTF table, allowing user to use teradataml functions.
59
233
  * Example usage below:
60
234
  * 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.
@@ -82,7 +256,7 @@ Copyright 2024, Teradata. All Rights Reserved.
82
256
  ```
83
257
  * ###### teradataml: DataFrame
84
258
  * Introduced a new feature 'Exploratory Data Analysis UI' (EDA-UI), which enhances
85
- the user experience of teradataml with Jupyter notebook. EDA-UI is displayed by default
259
+ the user experience of teradataml with Jupyter notebook. EDA-UI is displayed by default
86
260
  when a teradataml DataFrame is printed in the Jupyter notebook.
87
261
  * User can control the EDA-UI using a new configuration option `display.enable_ui`.
88
262
  It can be disabled by setting `display.enable_ui` to False.
@@ -99,7 +273,7 @@ Copyright 2024, Teradata. All Rights Reserved.
99
273
  * `td_lightgbm.load()` - Load the deployed model in the current session.
100
274
 
101
275
  * ###### FeatureStore
102
- * New function `FeatureStore.delete()` is added to drop the Feature Store and corresponding repo from Vantage.
276
+ * New function `FeatureStore.delete()` is added to drop the Feature Store and corresponding repo from Vantage.
103
277
 
104
278
  * ###### Database Utility
105
279
  * `db_python_version_diff()` - Identifies the Python interpreter major version difference between the interpreter installed on Vantage vs interpreter on the local user environment.
@@ -112,13 +286,13 @@ Copyright 2024, Teradata. All Rights Reserved.
112
286
  * Configuration Options
113
287
  * `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.
114
288
  * Display Options
115
- * `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.
289
+ * `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.
116
290
 
117
291
  * ##### Updates
118
292
  * ###### teradataml: DataFrame function
119
293
  * `describe()`
120
294
  * New argument added: `pivot`.
121
- * When argument `pivot` is set to False, Non-numeric columns are no longer supported for generating statistics.
295
+ * When argument `pivot` is set to False, Non-numeric columns are no longer supported for generating statistics.
122
296
  Use `CategoricalSummary` and `ColumnSummary`.
123
297
  * `fillna()` - Accepts new argument `partition_column` to partition the data and impute null values accordingly.
124
298
  * Optimised performance for `DataFrame.plot()`.
@@ -128,8 +302,8 @@ Copyright 2024, Teradata. All Rights Reserved.
128
302
  * ###### teradataml: DataFrame Utilities
129
303
  * `in_schema()`: New argument `datalake_name` added to accept datalake name.
130
304
 
131
- * ###### Table Operator
132
- * `Apply()` no longer looks at authentication token by default. Authentication token is now required only if user want to update backend Open Analytics Framework service.
305
+ * ###### Table Operator
306
+ * `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.
133
307
 
134
308
  * ###### Hyper Parameter Tuner
135
309
  * `GridSearch()` and `RandomSearch()` now displays a message to refer to `get_error_log()` api when model training fails in HPT.
@@ -147,7 +321,7 @@ Copyright 2024, Teradata. All Rights Reserved.
147
321
 
148
322
  * ###### OpensourceML
149
323
  * Raises a TeradataMlException, if the Python interpreter major version is different between the Vantage Python environment and the local user environment.
150
- * Displays a warning, if specific Python package versions are different between the Vantage Python environment and the local user environment.
324
+ * Displays a warning, if specific Python package versions are different between the Vantage Python environment and the local user environment.
151
325
 
152
326
  * ###### Database Utility
153
327
  * `db_list_tables()`: New argument `datalake_name` added to accept datalake name to list tables from.
@@ -165,10 +339,10 @@ Copyright 2024, Teradata. All Rights Reserved.
165
339
  * `DataFrame.set_index()` no longer modifies the original DataFrame's index when argument `append` is used.
166
340
  * `concat()` function now supports the DataFrame with column name starts with digit or contains special characters or contains reserved keywords.
167
341
  * `create_env()` proceeds to install other files even if current file installation fails.
168
- * Corrected the error message being raised in `create_env()` when authentication is not set.
342
+ * Corrected the error message being raised in `create_env()` when authentication token is not set.
169
343
  * Added missing argument `charset` for Vantage Analytic Library functions.
170
344
  * New argument `seed` is added to `AutoML`, `AutoRegressor` and `AutoClassifier` to ensure consistency on result.
171
- * Analytic functions now work even if name of columns for underlying tables is non-ascii characters.
345
+ * Analytic functions now work even if name of columns for underlying tables has non-ascii characters.
172
346
 
173
347
  #### teradataml 20.00.00.03
174
348