teradataml 20.0.0.1__py3-none-any.whl → 20.0.0.2__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 (200) hide show
  1. teradataml/LICENSE.pdf +0 -0
  2. teradataml/README.md +112 -0
  3. teradataml/__init__.py +6 -3
  4. teradataml/_version.py +1 -1
  5. teradataml/analytics/__init__.py +3 -2
  6. teradataml/analytics/analytic_function_executor.py +224 -16
  7. teradataml/analytics/analytic_query_generator.py +92 -0
  8. teradataml/analytics/byom/__init__.py +3 -2
  9. teradataml/analytics/json_parser/metadata.py +1 -0
  10. teradataml/analytics/json_parser/utils.py +6 -4
  11. teradataml/analytics/meta_class.py +40 -1
  12. teradataml/analytics/sqle/DecisionTreePredict.py +1 -1
  13. teradataml/analytics/sqle/__init__.py +10 -2
  14. teradataml/analytics/table_operator/__init__.py +3 -2
  15. teradataml/analytics/uaf/__init__.py +21 -2
  16. teradataml/analytics/utils.py +62 -1
  17. teradataml/analytics/valib.py +1 -1
  18. teradataml/automl/__init__.py +1502 -323
  19. teradataml/automl/custom_json_utils.py +139 -61
  20. teradataml/automl/data_preparation.py +245 -306
  21. teradataml/automl/data_transformation.py +32 -12
  22. teradataml/automl/feature_engineering.py +313 -82
  23. teradataml/automl/model_evaluation.py +44 -35
  24. teradataml/automl/model_training.py +109 -146
  25. teradataml/catalog/byom.py +8 -8
  26. teradataml/clients/pkce_client.py +1 -1
  27. teradataml/common/constants.py +37 -0
  28. teradataml/common/deprecations.py +13 -7
  29. teradataml/common/garbagecollector.py +151 -120
  30. teradataml/common/messagecodes.py +4 -1
  31. teradataml/common/messages.py +2 -1
  32. teradataml/common/sqlbundle.py +1 -1
  33. teradataml/common/utils.py +97 -11
  34. teradataml/common/wrapper_utils.py +1 -1
  35. teradataml/context/context.py +72 -2
  36. teradataml/data/complaints_test_tokenized.csv +353 -0
  37. teradataml/data/complaints_tokens_model.csv +348 -0
  38. teradataml/data/covid_confirm_sd.csv +83 -0
  39. teradataml/data/dataframe_example.json +10 -0
  40. teradataml/data/docs/sqle/docs_17_20/CFilter.py +132 -0
  41. teradataml/data/docs/sqle/docs_17_20/NaiveBayes.py +162 -0
  42. teradataml/data/docs/sqle/docs_17_20/OutlierFilterFit.py +2 -0
  43. teradataml/data/docs/sqle/docs_17_20/Pivoting.py +279 -0
  44. teradataml/data/docs/sqle/docs_17_20/Shap.py +197 -0
  45. teradataml/data/docs/sqle/docs_17_20/TDNaiveBayesPredict.py +189 -0
  46. teradataml/data/docs/sqle/docs_17_20/TFIDF.py +142 -0
  47. teradataml/data/docs/sqle/docs_17_20/Unpivoting.py +216 -0
  48. teradataml/data/docs/uaf/docs_17_20/ACF.py +1 -10
  49. teradataml/data/docs/uaf/docs_17_20/ArimaEstimate.py +1 -1
  50. teradataml/data/docs/uaf/docs_17_20/ArimaForecast.py +35 -5
  51. teradataml/data/docs/uaf/docs_17_20/ArimaValidate.py +3 -1
  52. teradataml/data/docs/uaf/docs_17_20/ArimaXEstimate.py +293 -0
  53. teradataml/data/docs/uaf/docs_17_20/AutoArima.py +354 -0
  54. teradataml/data/docs/uaf/docs_17_20/BreuschGodfrey.py +3 -2
  55. teradataml/data/docs/uaf/docs_17_20/BreuschPaganGodfrey.py +1 -1
  56. teradataml/data/docs/uaf/docs_17_20/Convolve.py +13 -10
  57. teradataml/data/docs/uaf/docs_17_20/Convolve2.py +4 -1
  58. teradataml/data/docs/uaf/docs_17_20/CumulPeriodogram.py +5 -4
  59. teradataml/data/docs/uaf/docs_17_20/DFFT2Conv.py +4 -4
  60. teradataml/data/docs/uaf/docs_17_20/DWT.py +235 -0
  61. teradataml/data/docs/uaf/docs_17_20/DWT2D.py +214 -0
  62. teradataml/data/docs/uaf/docs_17_20/DurbinWatson.py +1 -1
  63. teradataml/data/docs/uaf/docs_17_20/ExtractResults.py +1 -1
  64. teradataml/data/docs/uaf/docs_17_20/FilterFactory1d.py +160 -0
  65. teradataml/data/docs/uaf/docs_17_20/GenseriesSinusoids.py +1 -1
  66. teradataml/data/docs/uaf/docs_17_20/GoldfeldQuandt.py +9 -31
  67. teradataml/data/docs/uaf/docs_17_20/HoltWintersForecaster.py +4 -2
  68. teradataml/data/docs/uaf/docs_17_20/IDFFT2.py +1 -8
  69. teradataml/data/docs/uaf/docs_17_20/IDWT.py +236 -0
  70. teradataml/data/docs/uaf/docs_17_20/IDWT2D.py +226 -0
  71. teradataml/data/docs/uaf/docs_17_20/IQR.py +134 -0
  72. teradataml/data/docs/uaf/docs_17_20/LineSpec.py +1 -1
  73. teradataml/data/docs/uaf/docs_17_20/LinearRegr.py +2 -2
  74. teradataml/data/docs/uaf/docs_17_20/MAMean.py +3 -3
  75. teradataml/data/docs/uaf/docs_17_20/Matrix2Image.py +297 -0
  76. teradataml/data/docs/uaf/docs_17_20/MatrixMultiply.py +15 -6
  77. teradataml/data/docs/uaf/docs_17_20/PACF.py +0 -1
  78. teradataml/data/docs/uaf/docs_17_20/Portman.py +2 -2
  79. teradataml/data/docs/uaf/docs_17_20/PowerSpec.py +2 -2
  80. teradataml/data/docs/uaf/docs_17_20/Resample.py +9 -1
  81. teradataml/data/docs/uaf/docs_17_20/SAX.py +246 -0
  82. teradataml/data/docs/uaf/docs_17_20/SeasonalNormalize.py +17 -10
  83. teradataml/data/docs/uaf/docs_17_20/SignifPeriodicities.py +1 -1
  84. teradataml/data/docs/uaf/docs_17_20/WhitesGeneral.py +3 -1
  85. teradataml/data/docs/uaf/docs_17_20/WindowDFFT.py +368 -0
  86. teradataml/data/dwt2d_dataTable.csv +65 -0
  87. teradataml/data/dwt_dataTable.csv +8 -0
  88. teradataml/data/dwt_filterTable.csv +3 -0
  89. teradataml/data/finance_data4.csv +13 -0
  90. teradataml/data/grocery_transaction.csv +19 -0
  91. teradataml/data/idwt2d_dataTable.csv +5 -0
  92. teradataml/data/idwt_dataTable.csv +8 -0
  93. teradataml/data/idwt_filterTable.csv +3 -0
  94. teradataml/data/interval_data.csv +5 -0
  95. teradataml/data/jsons/paired_functions.json +14 -0
  96. teradataml/data/jsons/sqle/17.20/TD_CFilter.json +118 -0
  97. teradataml/data/jsons/sqle/17.20/TD_NaiveBayes.json +193 -0
  98. teradataml/data/jsons/sqle/17.20/TD_NaiveBayesPredict.json +212 -0
  99. teradataml/data/jsons/sqle/17.20/TD_OneClassSVM.json +9 -9
  100. teradataml/data/jsons/sqle/17.20/TD_Pivoting.json +280 -0
  101. teradataml/data/jsons/sqle/17.20/TD_Shap.json +222 -0
  102. teradataml/data/jsons/sqle/17.20/TD_TFIDF.json +162 -0
  103. teradataml/data/jsons/sqle/17.20/TD_Unpivoting.json +235 -0
  104. teradataml/data/jsons/storedprocedure/17.20/TD_FILTERFACTORY1D.json +150 -0
  105. teradataml/data/jsons/uaf/17.20/TD_ACF.json +1 -18
  106. teradataml/data/jsons/uaf/17.20/TD_ARIMAESTIMATE.json +3 -16
  107. teradataml/data/jsons/uaf/17.20/TD_ARIMAFORECAST.json +0 -3
  108. teradataml/data/jsons/uaf/17.20/TD_ARIMAVALIDATE.json +5 -3
  109. teradataml/data/jsons/uaf/17.20/TD_ARIMAXESTIMATE.json +362 -0
  110. teradataml/data/jsons/uaf/17.20/TD_AUTOARIMA.json +469 -0
  111. teradataml/data/jsons/uaf/17.20/TD_BINARYMATRIXOP.json +0 -3
  112. teradataml/data/jsons/uaf/17.20/TD_BINARYSERIESOP.json +0 -2
  113. teradataml/data/jsons/uaf/17.20/TD_BREUSCH_GODFREY.json +2 -1
  114. teradataml/data/jsons/uaf/17.20/TD_BREUSCH_PAGAN_GODFREY.json +2 -5
  115. teradataml/data/jsons/uaf/17.20/TD_CONVOLVE.json +3 -6
  116. teradataml/data/jsons/uaf/17.20/TD_CONVOLVE2.json +1 -3
  117. teradataml/data/jsons/uaf/17.20/TD_CUMUL_PERIODOGRAM.json +0 -5
  118. teradataml/data/jsons/uaf/17.20/TD_DFFT.json +1 -4
  119. teradataml/data/jsons/uaf/17.20/TD_DFFT2.json +2 -7
  120. teradataml/data/jsons/uaf/17.20/TD_DFFT2CONV.json +1 -2
  121. teradataml/data/jsons/uaf/17.20/TD_DFFTCONV.json +0 -2
  122. teradataml/data/jsons/uaf/17.20/TD_DTW.json +3 -6
  123. teradataml/data/jsons/uaf/17.20/TD_DWT.json +173 -0
  124. teradataml/data/jsons/uaf/17.20/TD_DWT2D.json +160 -0
  125. teradataml/data/jsons/uaf/17.20/TD_FITMETRICS.json +1 -1
  126. teradataml/data/jsons/uaf/17.20/TD_GOLDFELD_QUANDT.json +16 -30
  127. teradataml/data/jsons/uaf/17.20/{TD_HOLT_WINTERS_FORECAST.json → TD_HOLT_WINTERS_FORECASTER.json} +1 -2
  128. teradataml/data/jsons/uaf/17.20/TD_IDFFT2.json +1 -15
  129. teradataml/data/jsons/uaf/17.20/TD_IDWT.json +162 -0
  130. teradataml/data/jsons/uaf/17.20/TD_IDWT2D.json +149 -0
  131. teradataml/data/jsons/uaf/17.20/TD_IQR.json +117 -0
  132. teradataml/data/jsons/uaf/17.20/TD_LINEAR_REGR.json +1 -1
  133. teradataml/data/jsons/uaf/17.20/TD_LINESPEC.json +1 -1
  134. teradataml/data/jsons/uaf/17.20/TD_MAMEAN.json +1 -3
  135. teradataml/data/jsons/uaf/17.20/TD_MATRIX2IMAGE.json +209 -0
  136. teradataml/data/jsons/uaf/17.20/TD_PACF.json +2 -2
  137. teradataml/data/jsons/uaf/17.20/TD_POWERSPEC.json +5 -5
  138. teradataml/data/jsons/uaf/17.20/TD_RESAMPLE.json +48 -28
  139. teradataml/data/jsons/uaf/17.20/TD_SAX.json +208 -0
  140. teradataml/data/jsons/uaf/17.20/TD_SEASONALNORMALIZE.json +12 -6
  141. teradataml/data/jsons/uaf/17.20/TD_SIMPLEEXP.json +0 -1
  142. teradataml/data/jsons/uaf/17.20/TD_TRACKINGOP.json +8 -8
  143. teradataml/data/jsons/uaf/17.20/TD_UNDIFF.json +1 -1
  144. teradataml/data/jsons/uaf/17.20/TD_UNNORMALIZE.json +1 -1
  145. teradataml/data/jsons/uaf/17.20/TD_WINDOWDFFT.json +400 -0
  146. teradataml/data/load_example_data.py +8 -2
  147. teradataml/data/naivebayestextclassifier_example.json +1 -1
  148. teradataml/data/naivebayestextclassifierpredict_example.json +11 -0
  149. teradataml/data/peppers.png +0 -0
  150. teradataml/data/real_values.csv +14 -0
  151. teradataml/data/sax_example.json +8 -0
  152. teradataml/data/scripts/deploy_script.py +1 -1
  153. teradataml/data/scripts/sklearn/sklearn_fit.py +17 -10
  154. teradataml/data/scripts/sklearn/sklearn_fit_predict.py +2 -2
  155. teradataml/data/scripts/sklearn/sklearn_function.template +30 -7
  156. teradataml/data/scripts/sklearn/sklearn_neighbors.py +1 -1
  157. teradataml/data/scripts/sklearn/sklearn_score.py +12 -3
  158. teradataml/data/scripts/sklearn/sklearn_transform.py +55 -4
  159. teradataml/data/star_pivot.csv +8 -0
  160. teradataml/data/templates/open_source_ml.json +2 -1
  161. teradataml/data/teradataml_example.json +20 -1
  162. teradataml/data/timestamp_data.csv +4 -0
  163. teradataml/data/titanic_dataset_unpivoted.csv +19 -0
  164. teradataml/data/uaf_example.json +55 -1
  165. teradataml/data/unpivot_example.json +15 -0
  166. teradataml/data/url_data.csv +9 -0
  167. teradataml/data/windowdfft.csv +16 -0
  168. teradataml/dataframe/copy_to.py +1 -1
  169. teradataml/dataframe/data_transfer.py +5 -3
  170. teradataml/dataframe/dataframe.py +474 -41
  171. teradataml/dataframe/fastload.py +3 -3
  172. teradataml/dataframe/functions.py +339 -0
  173. teradataml/dataframe/row.py +160 -0
  174. teradataml/dataframe/setop.py +2 -2
  175. teradataml/dataframe/sql.py +658 -20
  176. teradataml/dataframe/window.py +1 -1
  177. teradataml/dbutils/dbutils.py +322 -16
  178. teradataml/geospatial/geodataframe.py +1 -1
  179. teradataml/geospatial/geodataframecolumn.py +1 -1
  180. teradataml/hyperparameter_tuner/optimizer.py +13 -13
  181. teradataml/lib/aed_0_1.dll +0 -0
  182. teradataml/opensource/sklearn/_sklearn_wrapper.py +154 -69
  183. teradataml/options/__init__.py +3 -1
  184. teradataml/options/configure.py +14 -2
  185. teradataml/options/display.py +2 -2
  186. teradataml/plot/axis.py +4 -4
  187. teradataml/scriptmgmt/UserEnv.py +10 -6
  188. teradataml/scriptmgmt/lls_utils.py +3 -2
  189. teradataml/table_operators/Script.py +2 -2
  190. teradataml/table_operators/TableOperator.py +106 -20
  191. teradataml/table_operators/table_operator_util.py +88 -41
  192. teradataml/table_operators/templates/dataframe_udf.template +63 -0
  193. teradataml/telemetry_utils/__init__.py +0 -0
  194. teradataml/telemetry_utils/queryband.py +52 -0
  195. teradataml/utils/validators.py +1 -1
  196. {teradataml-20.0.0.1.dist-info → teradataml-20.0.0.2.dist-info}/METADATA +115 -2
  197. {teradataml-20.0.0.1.dist-info → teradataml-20.0.0.2.dist-info}/RECORD +200 -140
  198. {teradataml-20.0.0.1.dist-info → teradataml-20.0.0.2.dist-info}/WHEEL +0 -0
  199. {teradataml-20.0.0.1.dist-info → teradataml-20.0.0.2.dist-info}/top_level.txt +0 -0
  200. {teradataml-20.0.0.1.dist-info → teradataml-20.0.0.2.dist-info}/zip-safe +0 -0
@@ -13,9 +13,10 @@ A teradataml context functions provide interface to Teradata Vantage. Provides f
13
13
  context which can be used by other analytical functions to get the Teradata Vantage connection.
14
14
 
15
15
  """
16
+ import ipaddress
16
17
  from pathlib import Path
17
18
  from sqlalchemy import create_engine
18
- from teradatasqlalchemy.telemetry.queryband import collect_queryband
19
+ from teradataml.telemetry_utils.queryband import collect_queryband
19
20
  from teradataml.common.deprecations import argument_deprecation
20
21
  from teradataml.common.exceptions import TeradataMlException
21
22
  from teradataml.common.warnings import TeradataMlRuntimeWarning
@@ -35,6 +36,8 @@ from sqlalchemy.engine.url import URL
35
36
  import os
36
37
  import warnings
37
38
  import atexit
39
+ import socket
40
+ import threading
38
41
  import urllib.parse
39
42
 
40
43
  # Store a global Teradata Vantage Connection.
@@ -517,6 +520,9 @@ def create_context(host = None, username = None, password = None, tdsqlengine =
517
520
  # Process Analytic functions.
518
521
  from teradataml.analytics import _process_analytic_functions
519
522
  _process_analytic_functions()
523
+
524
+ # Add global lock to internal buffer
525
+ _InternalBuffer.add(global_lock=threading.Lock())
520
526
 
521
527
  # Return the connection by default
522
528
  return td_sqlalchemy_engine
@@ -620,6 +626,8 @@ def set_context(tdsqlengine, temp_database_name=None):
620
626
  global user_specified_connection
621
627
  global python_packages_installed
622
628
  if td_connection is not None:
629
+ # Clearing the internal buffer.
630
+ _InternalBuffer.clean()
623
631
  warnings.warn(Messages.get_message(MessageCodes.OVERWRITE_CONTEXT), stacklevel=2)
624
632
  remove_context()
625
633
 
@@ -649,6 +657,9 @@ def set_context(tdsqlengine, temp_database_name=None):
649
657
 
650
658
  # Initialise Dag
651
659
  __initalise_dag()
660
+
661
+ # Add global lock to internal buffer
662
+ _InternalBuffer.add(global_lock=threading.Lock())
652
663
 
653
664
  return td_connection
654
665
 
@@ -681,6 +692,7 @@ def remove_context():
681
692
  # Initiate the garbage collection
682
693
  __cleanup_garbage_collection()
683
694
 
695
+ # Check if connection is established or not.
684
696
  if user_specified_connection is not True:
685
697
  try:
686
698
  # Close the connection if not user specified connection.
@@ -839,7 +851,8 @@ def _get_vantage_version():
839
851
  EXAMPLES:
840
852
  _get_vantage_version()
841
853
  """
842
- if td_connection.dialect.has_table(td_connection, "versionInfo", schema="pm"):
854
+ if td_connection.dialect.has_table(td_connection, "versionInfo", schema="pm",
855
+ table_only=True):
843
856
 
844
857
  # BTEQ -- Enter your SQL request or BTEQ command:
845
858
  # select * from pm.versionInfo;
@@ -980,6 +993,63 @@ def _get_user():
980
993
  td_user = _get_database_username()
981
994
  return td_user
982
995
 
996
+ def _get_host():
997
+ """
998
+ DESCRIPTION:
999
+ An internal function to get the host associated with the current context.
1000
+
1001
+ PARAMETERS:
1002
+ None.
1003
+
1004
+ RETURNS:
1005
+ Host associated with the current context.
1006
+
1007
+ RAISES:
1008
+ None.
1009
+
1010
+ EXAMPLES:
1011
+ _get_host()
1012
+ """
1013
+ global td_sqlalchemy_engine
1014
+ return td_sqlalchemy_engine.url.host
1015
+
1016
+ def _get_host_ip():
1017
+ """
1018
+ DESCRIPTION:
1019
+ Function to return the host IP address.
1020
+
1021
+ PARAMETERS:
1022
+ None.
1023
+
1024
+ RETURNS:
1025
+ Host IP address.
1026
+
1027
+ RAISES:
1028
+ None.
1029
+
1030
+ EXAMPLES:
1031
+ GarbageCollector._get_host_ip()
1032
+ """
1033
+ # Return None if connection is not established.
1034
+ if td_connection is None:
1035
+ return None
1036
+
1037
+ host_ip = _get_host()
1038
+ try:
1039
+ # Validate if host_ip is a valid IP address (IPv4 or IPv6)
1040
+ ipaddress.ip_address(host_ip)
1041
+ except ValueError:
1042
+ # If host is not an IP address, get the IP address by DNS name from _InternalBuffer.
1043
+ host_ip = _InternalBuffer.get('dns_host_ip')
1044
+ if host_ip is None:
1045
+ global td_sqlalchemy_engine
1046
+ # Get the list of addresses(compatible for both IPv4 and IPv6)
1047
+ addr_info = socket.getaddrinfo(td_sqlalchemy_engine.url.host, None)
1048
+ # Pick the first address from the list
1049
+ host_ip = addr_info[0][4][0]
1050
+ # Add the DNS host IP to the _InternalBuffer.
1051
+ _InternalBuffer.add(dns_host_ip=host_ip)
1052
+ return host_ip
983
1053
 
984
1054
  class ContextUtilFuncs():
985
1055
  @staticmethod
@@ -0,0 +1,353 @@
1
+ doc_id,doc_name,sn,token
2
+ 5,E,1,CONSUMER
3
+ 9,I,1,CONSUMER
4
+ 7,G,1,DRIVING
5
+ 6,F,1,WHEEL
6
+ 5,E,2,WAS
7
+ 9,I,2,WAS
8
+ 7,G,2,ABOUT
9
+ 6,F,2,BEARING
10
+ 5,E,3,MAKING
11
+ 9,I,3,DRIVING
12
+ 7,G,3,5-10
13
+ 6,F,3,AND
14
+ 5,E,4,A
15
+ 9,I,4,WEST
16
+ 7,G,4,MPH
17
+ 6,F,4,HUBS
18
+ 5,E,5,TURN
19
+ 9,I,5,WHEN
20
+ 7,G,5,","
21
+ 6,F,5,CRACKED
22
+ 5,E,6,",DRIVING"
23
+ 9,I,6,THE
24
+ 7,G,6,THE
25
+ 6,F,6,","
26
+ 5,E,7,AT
27
+ 9,I,7,OTHER
28
+ 7,G,7,VEHICLE
29
+ 6,F,7,CAUSING
30
+ 5,E,8,APPROX
31
+ 9,I,8,CAR
32
+ 7,G,8,HAD
33
+ 6,F,8,THE
34
+ 5,E,9,5-
35
+ 9,I,9,WAS
36
+ 7,G,9,A
37
+ 6,F,9,METAL
38
+ 5,E,10,10
39
+ 9,I,10,GOING
40
+ 7,G,10,LOW
41
+ 6,F,10,TO
42
+ 5,E,11,MPH
43
+ 9,I,11,EAST
44
+ 7,G,11,FRONTAL
45
+ 6,F,11,GRIND
46
+ 5,E,12,WHEN
47
+ 9,I,12,.
48
+ 7,G,12,IMPACT
49
+ 6,F,12,WHEN
50
+ 5,E,13,CONSUMER
51
+ 9,I,13,THE
52
+ 7,G,13,IN
53
+ 6,F,13,MAKING
54
+ 5,E,14,HIT
55
+ 9,I,14,OTHER
56
+ 7,G,14,WHICH
57
+ 6,F,14,A
58
+ 5,E,15,ANOTHER
59
+ 9,I,15,CAR
60
+ 7,G,15,THE
61
+ 6,F,15,RIGHT
62
+ 5,E,16,VEHICLE
63
+ 9,I,16,TURNED
64
+ 7,G,16,OTHER
65
+ 6,F,16,TURN
66
+ 5,E,17,.
67
+ 9,I,17,IN
68
+ 7,G,17,VEHICLE
69
+ 6,F,17,.
70
+ 5,E,18,UPON
71
+ 9,I,18,FRONT
72
+ 7,G,18,HAD
73
+ 6,F,18,ALSO
74
+ 5,E,19,IMPACT
75
+ 9,I,19,OF
76
+ 7,G,19,NO
77
+ 6,F,19,WHEN
78
+ 5,E,20,","
79
+ 9,I,20,CONSUMER'S
80
+ 7,G,20,DAMAGES
81
+ 6,F,20,APPLYING
82
+ 5,E,21,DUAL
83
+ 9,I,21,VEHICLE
84
+ 7,G,21,.
85
+ 6,F,21,THE
86
+ 5,E,22,AIRBAGS
87
+ 9,I,22,","
88
+ 7,G,22,UPON
89
+ 6,F,22,BRAKES
90
+ 5,E,23,DID
91
+ 9,I,23,CONSUMER
92
+ 7,G,23,IMPACT
93
+ 6,F,23,","
94
+ 5,E,24,NOT
95
+ 9,I,24,HIT
96
+ 7,G,24,","
97
+ 6,F,24,PEDAL
98
+ 5,E,25,DEPLOY
99
+ 9,I,25,OTHER
100
+ 7,G,25,DRIVER'S
101
+ 6,F,25,GOES
102
+ 5,E,26,.
103
+ 9,I,26,VEHICLE
104
+ 7,G,26,AND
105
+ 6,F,26,TO
106
+ 5,E,27,ALL
107
+ 9,I,27,AND
108
+ 7,G,27,THE
109
+ 6,F,27,THE
110
+ 5,E,28,DAMAGE
111
+ 9,I,28,STARTED
112
+ 7,G,28,PASSENGER'S
113
+ 6,F,28,FLOOR
114
+ 5,E,29,WAS
115
+ 9,I,29,TO
116
+ 7,G,29,AIR
117
+ 6,F,29,","
118
+ 5,E,30,DONE
119
+ 9,I,30,SPIN
120
+ 7,G,30,BAGS
121
+ 6,F,30,CAUSE
122
+ 5,E,31,FROM
123
+ 9,I,31,AROUND
124
+ 7,G,31,DID
125
+ 6,F,31,UNKNOWN
126
+ 5,E,32,ENGINE
127
+ 9,I,32,",COULDN'T"
128
+ 7,G,32,NOT
129
+ 6,F,32,.
130
+ 5,E,33,TO
131
+ 9,I,33,STOP
132
+ 7,G,33,DEPLOY
133
+ 6,F,33,WAS
134
+ 5,E,34,"TRANSMISSION,TO"
135
+ 9,I,34,","
136
+ 7,G,34,","
137
+ 6,F,34,ADVISED
138
+ 5,E,35,THE
139
+ 9,I,35,RESULTING
140
+ 7,G,35,RESULTING
141
+ 6,F,35,BY
142
+ 5,E,36,FRONT
143
+ 9,I,36,IN
144
+ 7,G,36,IN
145
+ 6,F,36,MIDAS
146
+ 5,E,37,OF
147
+ 9,I,37,A
148
+ 7,G,37,INJURIES
149
+ 6,F,37,NOT
150
+ 5,E,38,VEHICLE
151
+ 9,I,38,CRASH
152
+ 7,G,38,.
153
+ 6,F,38,TO
154
+ 5,E,39,","
155
+ 9,I,39,.
156
+ 7,G,39,PLEASE
157
+ 6,F,39,DRIVE
158
+ 5,E,40,AND
159
+ 9,I,40,UPON
160
+ 7,G,40,PROVIDE
161
+ 6,F,40,VEHICLE-
162
+ 5,E,41,THE
163
+ 9,I,41,IMPACT
164
+ 7,G,41,FURTHER
165
+ 6,F,41,WHEELE
166
+ 5,E,42,VEHICLE
167
+ 9,I,42,","
168
+ 7,G,42,INFORMATION
169
+ 6,F,42,COULD
170
+ 5,E,43,CONSIDERED
171
+ 9,I,43,AIRBAGS
172
+ 7,G,43,AND
173
+ 6,F,43,COME
174
+ 5,E,44,A
175
+ 9,I,44,DIDN'T
176
+ 7,G,44,VIN#
177
+ 6,F,44,OFF
178
+ 5,E,45,TOTAL
179
+ 9,I,45,DEPLOY
180
+ 7,G,45,.
181
+ 6,F,45,.
182
+ 5,E,46,LOSS
183
+ 9,I,46,.
184
+ 4,D,1,THERE
185
+ 5,E,47,.
186
+ 10,J,1,WHILE
187
+ 4,D,2,IS
188
+ 3,C,1,WHILE
189
+ 10,J,2,DRIVING
190
+ 4,D,3,A
191
+ 3,C,2,DRIVING
192
+ 10,J,3,ABOUT
193
+ 4,D,4,KNOCKING
194
+ 3,C,3,AT
195
+ 10,J,4,65
196
+ 4,D,5,NOISE
197
+ 3,C,4,60
198
+ 10,J,5,MPH
199
+ 4,D,6,COMING
200
+ 3,C,5,MPH
201
+ 10,J,6,AND
202
+ 4,D,7,FROM
203
+ 3,C,6,GAS
204
+ 10,J,7,THE
205
+ 4,D,8,THE
206
+ 3,C,7,PEDAL
207
+ 10,J,8,TRANSMISISON
208
+ 4,D,9,CATALYITC
209
+ 3,C,8,GOT
210
+ 10,J,9,MADE
211
+ 4,D,10,CONVERTER
212
+ 3,C,9,STUCK
213
+ 10,J,10,A
214
+ 4,D,11,",AND"
215
+ 3,C,10,DUE
216
+ 10,J,11,STRANGE
217
+ 4,D,12,THE
218
+ 3,C,11,TO
219
+ 10,J,12,NOISE
220
+ 4,D,13,VEHICLE
221
+ 3,C,12,THE
222
+ 10,J,13,","
223
+ 4,D,14,IS
224
+ 3,C,13,RUBBER
225
+ 10,J,14,AND
226
+ 4,D,15,STALLING
227
+ 3,C,14,THAT
228
+ 10,J,15,THE
229
+ 4,D,16,.
230
+ 3,C,15,IS
231
+ 10,J,16,LEFT
232
+ 4,D,17,ALSO
233
+ 3,C,16,AROUND
234
+ 10,J,17,FRONT
235
+ 4,D,18,","
236
+ 3,C,17,THE
237
+ 10,J,18,AXLE
238
+ 4,D,19,HAS
239
+ 3,C,18,GAS
240
+ 10,J,19,LOCKED
241
+ 4,D,20,PROBLEM
242
+ 3,C,19,PEDAL
243
+ 10,J,20,UP
244
+ 4,D,21,WITH
245
+ 3,C,20,.
246
+ 10,J,21,.
247
+ 4,D,22,THE
248
+ 1,A,1,ELECTRICAL
249
+ 10,J,22,THE
250
+ 4,D,23,STEERING
251
+ 1,A,2,CONTROL
252
+ 10,J,23,DEALER
253
+ 4,D,24,.
254
+ 1,A,3,MODULE
255
+ 10,J,24,HAS
256
+ 1,A,4,IS
257
+ 10,J,25,REPAIRED
258
+ 1,A,5,SHORTENING
259
+ 10,J,26,THE
260
+ 1,A,6,OUT
261
+ 10,J,27,VEHICLE
262
+ 1,A,7,","
263
+ 10,J,28,.
264
+ 1,A,8,CAUSING
265
+ 1,A,9,THE
266
+ 1,A,10,VEHICLE
267
+ 1,A,11,TO
268
+ 1,A,12,STALL
269
+ 1,A,13,.
270
+ 1,A,14,ENGINE
271
+ 1,A,15,WILL
272
+ 1,A,16,BECOME
273
+ 1,A,17,TOTALLY
274
+ 1,A,18,INOPERATIVE
275
+ 1,A,19,.
276
+ 1,A,20,CONSUMER
277
+ 1,A,21,HAD
278
+ 1,A,22,TO
279
+ 1,A,23,CHANGE
280
+ 1,A,24,ALTERNATOR/
281
+ 1,A,25,BATTERY
282
+ 1,A,26,AND
283
+ 1,A,27,STARTER
284
+ 1,A,28,","
285
+ 1,A,29,AND
286
+ 1,A,30,MODULE
287
+ 1,A,31,REPLACED
288
+ 1,A,32,4
289
+ 1,A,33,TIMES
290
+ 1,A,34,","
291
+ 1,A,35,BUT
292
+ 1,A,36,DEFECT
293
+ 1,A,37,STILL
294
+ 1,A,38,OCCURRING
295
+ 1,A,39,CANNOT
296
+ 1,A,40,DETERMINE
297
+ 1,A,41,WHAT
298
+ 1,A,42,IS
299
+ 1,A,43,CAUSING
300
+ 1,A,44,THE
301
+ 1,A,45,PROBLEM
302
+ 1,A,46,.
303
+ 8,H,1,THE
304
+ 8,H,2,AIR
305
+ 8,H,3,BAG
306
+ 8,H,4,WARNING
307
+ 8,H,5,LIGHT
308
+ 8,H,6,HAS
309
+ 8,H,7,COME
310
+ 8,H,8,ON
311
+ 8,H,9,.
312
+ 8,H,10,INDICATING
313
+ 8,H,11,AIRBAGS
314
+ 8,H,12,ARE
315
+ 8,H,13,INOPERATIVE.THEY
316
+ 8,H,14,WERE
317
+ 8,H,15,FIXED
318
+ 8,H,16,ONE
319
+ 8,H,17,AT
320
+ 8,H,18,THE
321
+ 8,H,19,TIME
322
+ 8,H,20,","
323
+ 8,H,21,BUT
324
+ 8,H,22,PROBLEM
325
+ 8,H,23,HAS
326
+ 8,H,24,REOCCURRED
327
+ 8,H,25,.
328
+ 2,B,1,ABS
329
+ 2,B,2,BRAKES
330
+ 2,B,3,FAIL
331
+ 2,B,4,TO
332
+ 2,B,5,OPERATE
333
+ 2,B,6,PROPERLY
334
+ 2,B,7,","
335
+ 2,B,8,AND
336
+ 2,B,9,AIR
337
+ 2,B,10,BAGS
338
+ 2,B,11,FAILED
339
+ 2,B,12,TO
340
+ 2,B,13,DEPLOY
341
+ 2,B,14,DURING
342
+ 2,B,15,A
343
+ 2,B,16,CRASH
344
+ 2,B,17,AT
345
+ 2,B,18,APPROX
346
+ 2,B,19,.
347
+ 2,B,20,28
348
+ 2,B,21,MPH
349
+ 2,B,22,IMPACT
350
+ 2,B,23,.
351
+ 2,B,24,MANUFACTURER
352
+ 2,B,25,NOTIFIED
353
+ 2,B,26,.