teradataml 20.0.0.0__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.
- teradataml/LICENSE-3RD-PARTY.pdf +0 -0
- teradataml/LICENSE.pdf +0 -0
- teradataml/README.md +183 -0
- teradataml/__init__.py +6 -3
- teradataml/_version.py +2 -2
- teradataml/analytics/__init__.py +3 -2
- teradataml/analytics/analytic_function_executor.py +275 -40
- teradataml/analytics/analytic_query_generator.py +92 -0
- teradataml/analytics/byom/__init__.py +3 -2
- teradataml/analytics/json_parser/metadata.py +1 -0
- teradataml/analytics/json_parser/utils.py +17 -21
- teradataml/analytics/meta_class.py +40 -1
- teradataml/analytics/sqle/DecisionTreePredict.py +1 -1
- teradataml/analytics/sqle/__init__.py +10 -2
- teradataml/analytics/table_operator/__init__.py +3 -2
- teradataml/analytics/uaf/__init__.py +21 -2
- teradataml/analytics/utils.py +62 -1
- teradataml/analytics/valib.py +1 -1
- teradataml/automl/__init__.py +1553 -319
- teradataml/automl/custom_json_utils.py +139 -61
- teradataml/automl/data_preparation.py +276 -319
- teradataml/automl/data_transformation.py +163 -81
- teradataml/automl/feature_engineering.py +402 -239
- teradataml/automl/feature_exploration.py +9 -2
- teradataml/automl/model_evaluation.py +48 -51
- teradataml/automl/model_training.py +291 -189
- teradataml/catalog/byom.py +8 -8
- teradataml/catalog/model_cataloging_utils.py +1 -1
- teradataml/clients/auth_client.py +133 -0
- teradataml/clients/pkce_client.py +1 -1
- teradataml/common/aed_utils.py +3 -2
- teradataml/common/constants.py +48 -6
- teradataml/common/deprecations.py +13 -7
- teradataml/common/garbagecollector.py +156 -120
- teradataml/common/messagecodes.py +6 -1
- teradataml/common/messages.py +3 -1
- teradataml/common/sqlbundle.py +1 -1
- teradataml/common/utils.py +103 -11
- teradataml/common/wrapper_utils.py +1 -1
- teradataml/context/context.py +121 -31
- teradataml/data/advertising.csv +201 -0
- teradataml/data/bank_marketing.csv +11163 -0
- teradataml/data/bike_sharing.csv +732 -0
- teradataml/data/boston2cols.csv +721 -0
- teradataml/data/breast_cancer.csv +570 -0
- teradataml/data/complaints_test_tokenized.csv +353 -0
- teradataml/data/complaints_tokens_model.csv +348 -0
- teradataml/data/covid_confirm_sd.csv +83 -0
- teradataml/data/customer_segmentation_test.csv +2628 -0
- teradataml/data/customer_segmentation_train.csv +8069 -0
- teradataml/data/dataframe_example.json +10 -0
- teradataml/data/docs/sqle/docs_17_10/OneHotEncodingFit.py +3 -1
- teradataml/data/docs/sqle/docs_17_10/OneHotEncodingTransform.py +6 -0
- teradataml/data/docs/sqle/docs_17_10/OutlierFilterTransform.py +5 -1
- teradataml/data/docs/sqle/docs_17_20/ANOVA.py +61 -1
- teradataml/data/docs/sqle/docs_17_20/CFilter.py +132 -0
- teradataml/data/docs/sqle/docs_17_20/ColumnTransformer.py +2 -0
- teradataml/data/docs/sqle/docs_17_20/FTest.py +105 -26
- teradataml/data/docs/sqle/docs_17_20/GLM.py +162 -1
- teradataml/data/docs/sqle/docs_17_20/GetFutileColumns.py +5 -3
- teradataml/data/docs/sqle/docs_17_20/KMeans.py +48 -1
- teradataml/data/docs/sqle/docs_17_20/NaiveBayes.py +162 -0
- teradataml/data/docs/sqle/docs_17_20/NonLinearCombineFit.py +3 -2
- teradataml/data/docs/sqle/docs_17_20/OneHotEncodingFit.py +5 -0
- teradataml/data/docs/sqle/docs_17_20/OneHotEncodingTransform.py +6 -0
- teradataml/data/docs/sqle/docs_17_20/OutlierFilterFit.py +2 -0
- teradataml/data/docs/sqle/docs_17_20/Pivoting.py +279 -0
- teradataml/data/docs/sqle/docs_17_20/ROC.py +3 -2
- teradataml/data/docs/sqle/docs_17_20/SVMPredict.py +13 -2
- teradataml/data/docs/sqle/docs_17_20/ScaleFit.py +119 -1
- teradataml/data/docs/sqle/docs_17_20/ScaleTransform.py +93 -1
- teradataml/data/docs/sqle/docs_17_20/Shap.py +197 -0
- teradataml/data/docs/sqle/docs_17_20/TDGLMPredict.py +163 -1
- teradataml/data/docs/sqle/docs_17_20/TDNaiveBayesPredict.py +189 -0
- teradataml/data/docs/sqle/docs_17_20/TFIDF.py +142 -0
- teradataml/data/docs/sqle/docs_17_20/Unpivoting.py +216 -0
- teradataml/data/docs/sqle/docs_17_20/XGBoost.py +12 -4
- teradataml/data/docs/sqle/docs_17_20/XGBoostPredict.py +7 -1
- teradataml/data/docs/sqle/docs_17_20/ZTest.py +72 -7
- teradataml/data/docs/uaf/docs_17_20/ACF.py +1 -10
- teradataml/data/docs/uaf/docs_17_20/ArimaEstimate.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/ArimaForecast.py +35 -5
- teradataml/data/docs/uaf/docs_17_20/ArimaValidate.py +3 -1
- teradataml/data/docs/uaf/docs_17_20/ArimaXEstimate.py +293 -0
- teradataml/data/docs/uaf/docs_17_20/AutoArima.py +354 -0
- teradataml/data/docs/uaf/docs_17_20/BreuschGodfrey.py +3 -2
- teradataml/data/docs/uaf/docs_17_20/BreuschPaganGodfrey.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/Convolve.py +13 -10
- teradataml/data/docs/uaf/docs_17_20/Convolve2.py +4 -1
- teradataml/data/docs/uaf/docs_17_20/CumulPeriodogram.py +5 -4
- teradataml/data/docs/uaf/docs_17_20/DFFT2Conv.py +4 -4
- teradataml/data/docs/uaf/docs_17_20/DWT.py +235 -0
- teradataml/data/docs/uaf/docs_17_20/DWT2D.py +214 -0
- teradataml/data/docs/uaf/docs_17_20/DurbinWatson.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/ExtractResults.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/FilterFactory1d.py +160 -0
- teradataml/data/docs/uaf/docs_17_20/GenseriesSinusoids.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/GoldfeldQuandt.py +9 -31
- teradataml/data/docs/uaf/docs_17_20/HoltWintersForecaster.py +4 -2
- teradataml/data/docs/uaf/docs_17_20/IDFFT2.py +1 -8
- teradataml/data/docs/uaf/docs_17_20/IDWT.py +236 -0
- teradataml/data/docs/uaf/docs_17_20/IDWT2D.py +226 -0
- teradataml/data/docs/uaf/docs_17_20/IQR.py +134 -0
- teradataml/data/docs/uaf/docs_17_20/LineSpec.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/LinearRegr.py +2 -2
- teradataml/data/docs/uaf/docs_17_20/MAMean.py +3 -3
- teradataml/data/docs/uaf/docs_17_20/Matrix2Image.py +297 -0
- teradataml/data/docs/uaf/docs_17_20/MatrixMultiply.py +15 -6
- teradataml/data/docs/uaf/docs_17_20/PACF.py +0 -1
- teradataml/data/docs/uaf/docs_17_20/Portman.py +2 -2
- teradataml/data/docs/uaf/docs_17_20/PowerSpec.py +2 -2
- teradataml/data/docs/uaf/docs_17_20/Resample.py +9 -1
- teradataml/data/docs/uaf/docs_17_20/SAX.py +246 -0
- teradataml/data/docs/uaf/docs_17_20/SeasonalNormalize.py +17 -10
- teradataml/data/docs/uaf/docs_17_20/SignifPeriodicities.py +1 -1
- teradataml/data/docs/uaf/docs_17_20/WhitesGeneral.py +3 -1
- teradataml/data/docs/uaf/docs_17_20/WindowDFFT.py +368 -0
- teradataml/data/dwt2d_dataTable.csv +65 -0
- teradataml/data/dwt_dataTable.csv +8 -0
- teradataml/data/dwt_filterTable.csv +3 -0
- teradataml/data/finance_data4.csv +13 -0
- teradataml/data/glm_example.json +28 -1
- teradataml/data/grocery_transaction.csv +19 -0
- teradataml/data/housing_train_segment.csv +201 -0
- teradataml/data/idwt2d_dataTable.csv +5 -0
- teradataml/data/idwt_dataTable.csv +8 -0
- teradataml/data/idwt_filterTable.csv +3 -0
- teradataml/data/insect2Cols.csv +61 -0
- teradataml/data/interval_data.csv +5 -0
- teradataml/data/jsons/paired_functions.json +14 -0
- teradataml/data/jsons/sqle/17.20/TD_ANOVA.json +99 -27
- teradataml/data/jsons/sqle/17.20/TD_CFilter.json +118 -0
- teradataml/data/jsons/sqle/17.20/TD_FTest.json +166 -83
- teradataml/data/jsons/sqle/17.20/TD_GLM.json +90 -14
- teradataml/data/jsons/sqle/17.20/TD_GLMPREDICT.json +48 -5
- teradataml/data/jsons/sqle/17.20/TD_GetFutileColumns.json +5 -3
- teradataml/data/jsons/sqle/17.20/TD_KMeans.json +31 -11
- teradataml/data/jsons/sqle/17.20/TD_NaiveBayes.json +193 -0
- teradataml/data/jsons/sqle/17.20/TD_NaiveBayesPredict.json +212 -0
- teradataml/data/jsons/sqle/17.20/TD_NonLinearCombineFit.json +3 -2
- teradataml/data/jsons/sqle/17.20/TD_OneClassSVM.json +9 -9
- teradataml/data/jsons/sqle/17.20/TD_Pivoting.json +280 -0
- teradataml/data/jsons/sqle/17.20/TD_ROC.json +2 -1
- teradataml/data/jsons/sqle/17.20/TD_SVM.json +16 -16
- teradataml/data/jsons/sqle/17.20/TD_SVMPredict.json +19 -1
- teradataml/data/jsons/sqle/17.20/TD_ScaleFit.json +168 -15
- teradataml/data/jsons/sqle/17.20/TD_ScaleTransform.json +50 -1
- teradataml/data/jsons/sqle/17.20/TD_Shap.json +222 -0
- teradataml/data/jsons/sqle/17.20/TD_TFIDF.json +162 -0
- teradataml/data/jsons/sqle/17.20/TD_Unpivoting.json +235 -0
- teradataml/data/jsons/sqle/17.20/TD_XGBoost.json +25 -7
- teradataml/data/jsons/sqle/17.20/TD_XGBoostPredict.json +17 -4
- teradataml/data/jsons/sqle/17.20/TD_ZTest.json +157 -80
- teradataml/data/jsons/storedprocedure/17.20/TD_FILTERFACTORY1D.json +150 -0
- teradataml/data/jsons/uaf/17.20/TD_ACF.json +1 -18
- teradataml/data/jsons/uaf/17.20/TD_ARIMAESTIMATE.json +3 -16
- teradataml/data/jsons/uaf/17.20/TD_ARIMAFORECAST.json +0 -3
- teradataml/data/jsons/uaf/17.20/TD_ARIMAVALIDATE.json +5 -3
- teradataml/data/jsons/uaf/17.20/TD_ARIMAXESTIMATE.json +362 -0
- teradataml/data/jsons/uaf/17.20/TD_AUTOARIMA.json +469 -0
- teradataml/data/jsons/uaf/17.20/TD_BINARYMATRIXOP.json +0 -3
- teradataml/data/jsons/uaf/17.20/TD_BINARYSERIESOP.json +0 -2
- teradataml/data/jsons/uaf/17.20/TD_BREUSCH_GODFREY.json +2 -1
- teradataml/data/jsons/uaf/17.20/TD_BREUSCH_PAGAN_GODFREY.json +2 -5
- teradataml/data/jsons/uaf/17.20/TD_CONVOLVE.json +3 -6
- teradataml/data/jsons/uaf/17.20/TD_CONVOLVE2.json +1 -3
- teradataml/data/jsons/uaf/17.20/TD_CUMUL_PERIODOGRAM.json +0 -5
- teradataml/data/jsons/uaf/17.20/TD_DFFT.json +1 -4
- teradataml/data/jsons/uaf/17.20/TD_DFFT2.json +2 -7
- teradataml/data/jsons/uaf/17.20/TD_DFFT2CONV.json +1 -2
- teradataml/data/jsons/uaf/17.20/TD_DFFTCONV.json +0 -2
- teradataml/data/jsons/uaf/17.20/TD_DTW.json +3 -6
- teradataml/data/jsons/uaf/17.20/TD_DWT.json +173 -0
- teradataml/data/jsons/uaf/17.20/TD_DWT2D.json +160 -0
- teradataml/data/jsons/uaf/17.20/TD_FITMETRICS.json +1 -1
- teradataml/data/jsons/uaf/17.20/TD_GOLDFELD_QUANDT.json +16 -30
- teradataml/data/jsons/uaf/17.20/{TD_HOLT_WINTERS_FORECAST.json → TD_HOLT_WINTERS_FORECASTER.json} +1 -2
- teradataml/data/jsons/uaf/17.20/TD_IDFFT2.json +1 -15
- teradataml/data/jsons/uaf/17.20/TD_IDWT.json +162 -0
- teradataml/data/jsons/uaf/17.20/TD_IDWT2D.json +149 -0
- teradataml/data/jsons/uaf/17.20/TD_IQR.json +117 -0
- teradataml/data/jsons/uaf/17.20/TD_LINEAR_REGR.json +1 -1
- teradataml/data/jsons/uaf/17.20/TD_LINESPEC.json +1 -1
- teradataml/data/jsons/uaf/17.20/TD_MAMEAN.json +1 -3
- teradataml/data/jsons/uaf/17.20/TD_MATRIX2IMAGE.json +209 -0
- teradataml/data/jsons/uaf/17.20/TD_PACF.json +2 -2
- teradataml/data/jsons/uaf/17.20/TD_POWERSPEC.json +5 -5
- teradataml/data/jsons/uaf/17.20/TD_RESAMPLE.json +48 -28
- teradataml/data/jsons/uaf/17.20/TD_SAX.json +208 -0
- teradataml/data/jsons/uaf/17.20/TD_SEASONALNORMALIZE.json +12 -6
- teradataml/data/jsons/uaf/17.20/TD_SIMPLEEXP.json +0 -1
- teradataml/data/jsons/uaf/17.20/TD_TRACKINGOP.json +8 -8
- teradataml/data/jsons/uaf/17.20/TD_UNDIFF.json +1 -1
- teradataml/data/jsons/uaf/17.20/TD_UNNORMALIZE.json +1 -1
- teradataml/data/jsons/uaf/17.20/TD_WINDOWDFFT.json +400 -0
- teradataml/data/kmeans_example.json +5 -0
- teradataml/data/kmeans_table.csv +10 -0
- teradataml/data/load_example_data.py +8 -2
- teradataml/data/naivebayestextclassifier_example.json +1 -1
- teradataml/data/naivebayestextclassifierpredict_example.json +11 -0
- teradataml/data/onehot_encoder_train.csv +4 -0
- teradataml/data/openml_example.json +29 -0
- teradataml/data/peppers.png +0 -0
- teradataml/data/real_values.csv +14 -0
- teradataml/data/sax_example.json +8 -0
- teradataml/data/scale_attributes.csv +3 -0
- teradataml/data/scale_example.json +52 -1
- teradataml/data/scale_input_part_sparse.csv +31 -0
- teradataml/data/scale_input_partitioned.csv +16 -0
- teradataml/data/scale_input_sparse.csv +11 -0
- teradataml/data/scale_parameters.csv +3 -0
- teradataml/data/scripts/deploy_script.py +21 -2
- teradataml/data/scripts/sklearn/sklearn_fit.py +40 -37
- teradataml/data/scripts/sklearn/sklearn_fit_predict.py +22 -30
- teradataml/data/scripts/sklearn/sklearn_function.template +42 -24
- teradataml/data/scripts/sklearn/sklearn_model_selection_split.py +23 -33
- teradataml/data/scripts/sklearn/sklearn_neighbors.py +19 -28
- teradataml/data/scripts/sklearn/sklearn_score.py +32 -32
- teradataml/data/scripts/sklearn/sklearn_transform.py +85 -42
- teradataml/data/star_pivot.csv +8 -0
- teradataml/data/templates/open_source_ml.json +2 -1
- teradataml/data/teradataml_example.json +97 -1
- teradataml/data/timestamp_data.csv +4 -0
- teradataml/data/titanic_dataset_unpivoted.csv +19 -0
- teradataml/data/uaf_example.json +55 -1
- teradataml/data/unpivot_example.json +15 -0
- teradataml/data/url_data.csv +9 -0
- teradataml/data/windowdfft.csv +16 -0
- teradataml/data/ztest_example.json +16 -0
- teradataml/dataframe/copy_to.py +9 -4
- teradataml/dataframe/data_transfer.py +125 -64
- teradataml/dataframe/dataframe.py +575 -57
- teradataml/dataframe/dataframe_utils.py +47 -9
- teradataml/dataframe/fastload.py +273 -90
- teradataml/dataframe/functions.py +339 -0
- teradataml/dataframe/row.py +160 -0
- teradataml/dataframe/setop.py +2 -2
- teradataml/dataframe/sql.py +740 -18
- teradataml/dataframe/window.py +1 -1
- teradataml/dbutils/dbutils.py +324 -18
- teradataml/geospatial/geodataframe.py +1 -1
- teradataml/geospatial/geodataframecolumn.py +1 -1
- teradataml/hyperparameter_tuner/optimizer.py +13 -13
- teradataml/lib/aed_0_1.dll +0 -0
- teradataml/opensource/sklearn/_sklearn_wrapper.py +254 -122
- teradataml/options/__init__.py +16 -5
- teradataml/options/configure.py +39 -6
- teradataml/options/display.py +2 -2
- teradataml/plot/axis.py +4 -4
- teradataml/scriptmgmt/UserEnv.py +26 -19
- teradataml/scriptmgmt/lls_utils.py +120 -16
- teradataml/table_operators/Script.py +4 -5
- teradataml/table_operators/TableOperator.py +160 -26
- teradataml/table_operators/table_operator_util.py +88 -41
- teradataml/table_operators/templates/dataframe_udf.template +63 -0
- teradataml/telemetry_utils/__init__.py +0 -0
- teradataml/telemetry_utils/queryband.py +52 -0
- teradataml/utils/validators.py +41 -3
- {teradataml-20.0.0.0.dist-info → teradataml-20.0.0.2.dist-info}/METADATA +191 -6
- {teradataml-20.0.0.0.dist-info → teradataml-20.0.0.2.dist-info}/RECORD +263 -185
- {teradataml-20.0.0.0.dist-info → teradataml-20.0.0.2.dist-info}/WHEEL +0 -0
- {teradataml-20.0.0.0.dist-info → teradataml-20.0.0.2.dist-info}/top_level.txt +0 -0
- {teradataml-20.0.0.0.dist-info → teradataml-20.0.0.2.dist-info}/zip-safe +0 -0
|
@@ -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,.
|
|
@@ -0,0 +1,348 @@
|
|
|
1
|
+
token,category,prob
|
|
2
|
+
what,no_crash,0.117647058823529
|
|
3
|
+
can't,no_crash,0.117647058823529
|
|
4
|
+
97v017000,no_crash,0.117647058823529
|
|
5
|
+
,no_crash,0.941176470588235
|
|
6
|
+
impact,crash,0.285714285714286
|
|
7
|
+
one,crash,0.285714285714286
|
|
8
|
+
time,no_crash,0.176470588235294
|
|
9
|
+
,crash,0.857142857142857
|
|
10
|
+
1998,no_crash,0.117647058823529
|
|
11
|
+
hous,no_crash,0.117647058823529
|
|
12
|
+
move,no_crash,0.117647058823529
|
|
13
|
+
66900,no_crash,0.117647058823529
|
|
14
|
+
inflat,crash,0.285714285714286
|
|
15
|
+
99v029000,no_crash,0.117647058823529
|
|
16
|
+
perform,no_crash,0.117647058823529
|
|
17
|
+
passeng,crash,0.571428571428571
|
|
18
|
+
car,crash,0.285714285714286
|
|
19
|
+
also,no_crash,0.235294117647059
|
|
20
|
+
recal,no_crash,0.235294117647059
|
|
21
|
+
happen,no_crash,0.117647058823529
|
|
22
|
+
caus,no_crash,0.235294117647059
|
|
23
|
+
check,no_crash,0.117647058823529
|
|
24
|
+
65,crash,0.285714285714286
|
|
25
|
+
occur,no_crash,0.117647058823529
|
|
26
|
+
caus,crash,0.285714285714286
|
|
27
|
+
lower,no_crash,0.117647058823529
|
|
28
|
+
reimburs,no_crash,0.117647058823529
|
|
29
|
+
dealer,no_crash,0.294117647058824
|
|
30
|
+
own,no_crash,0.117647058823529
|
|
31
|
+
pedal,no_crash,0.117647058823529
|
|
32
|
+
rain,no_crash,0.117647058823529
|
|
33
|
+
dealer,crash,0.285714285714286
|
|
34
|
+
defect,no_crash,0.235294117647059
|
|
35
|
+
with,crash,0.285714285714286
|
|
36
|
+
light,no_crash,0.117647058823529
|
|
37
|
+
down,no_crash,0.176470588235294
|
|
38
|
+
engin,no_crash,0.176470588235294
|
|
39
|
+
slip,no_crash,0.117647058823529
|
|
40
|
+
inform,no_crash,0.235294117647059
|
|
41
|
+
was,no_crash,0.411764705882353
|
|
42
|
+
engin,crash,0.285714285714286
|
|
43
|
+
50,crash,0.285714285714286
|
|
44
|
+
his,crash,0.285714285714286
|
|
45
|
+
was,crash,0.428571428571429
|
|
46
|
+
reinspect,no_crash,0.117647058823529
|
|
47
|
+
stop,no_crash,0.117647058823529
|
|
48
|
+
35,crash,0.285714285714286
|
|
49
|
+
replac,no_crash,0.235294117647059
|
|
50
|
+
by,no_crash,0.235294117647059
|
|
51
|
+
yh,no_crash,0.117647058823529
|
|
52
|
+
coil,no_crash,0.117647058823529
|
|
53
|
+
not,no_crash,0.294117647058824
|
|
54
|
+
by,crash,0.285714285714286
|
|
55
|
+
cover,crash,0.285714285714286
|
|
56
|
+
periodc,no_crash,0.117647058823529
|
|
57
|
+
not,crash,0.571428571428571
|
|
58
|
+
wheel,no_crash,0.176470588235294
|
|
59
|
+
injuriesdeal,crash,0.285714285714286
|
|
60
|
+
that,no_crash,0.176470588235294
|
|
61
|
+
involv,crash,0.285714285714286
|
|
62
|
+
wheel,crash,0.285714285714286
|
|
63
|
+
of,no_crash,0.235294117647059
|
|
64
|
+
wiper,no_crash,0.176470588235294
|
|
65
|
+
will,no_crash,0.235294117647059
|
|
66
|
+
press,no_crash,0.117647058823529
|
|
67
|
+
sustain,crash,0.285714285714286
|
|
68
|
+
inclin,no_crash,0.117647058823529
|
|
69
|
+
wear,no_crash,0.117647058823529
|
|
70
|
+
forward,crash,0.285714285714286
|
|
71
|
+
pull,no_crash,0.117647058823529
|
|
72
|
+
upon,crash,0.285714285714286
|
|
73
|
+
cruis,no_crash,0.117647058823529
|
|
74
|
+
leak,no_crash,0.176470588235294
|
|
75
|
+
if,no_crash,0.117647058823529
|
|
76
|
+
has,no_crash,0.352941176470588
|
|
77
|
+
modul,no_crash,0.117647058823529
|
|
78
|
+
vehicl,no_crash,0.588235294117647
|
|
79
|
+
make,crash,0.285714285714286
|
|
80
|
+
has,crash,0.285714285714286
|
|
81
|
+
ford,crash,0.285714285714286
|
|
82
|
+
vehicl,crash,0.571428571428571
|
|
83
|
+
malfunct,no_crash,0.117647058823529
|
|
84
|
+
mphand,crash,0.285714285714286
|
|
85
|
+
which,no_crash,0.176470588235294
|
|
86
|
+
neck,crash,0.285714285714286
|
|
87
|
+
total,no_crash,0.176470588235294
|
|
88
|
+
hit,no_crash,0.117647058823529
|
|
89
|
+
high,crash,0.285714285714286
|
|
90
|
+
controlc,no_crash,0.117647058823529
|
|
91
|
+
total,crash,0.285714285714286
|
|
92
|
+
hit,crash,0.571428571428571
|
|
93
|
+
condit,crash,0.285714285714286
|
|
94
|
+
becom,no_crash,0.117647058823529
|
|
95
|
+
burn,no_crash,0.117647058823529
|
|
96
|
+
sit,no_crash,0.117647058823529
|
|
97
|
+
and,no_crash,0.529411764705882
|
|
98
|
+
2,no_crash,0.117647058823529
|
|
99
|
+
doe,no_crash,0.117647058823529
|
|
100
|
+
blew,no_crash,0.117647058823529
|
|
101
|
+
and,crash,0.714285714285714
|
|
102
|
+
excess,no_crash,0.117647058823529
|
|
103
|
+
but,no_crash,0.117647058823529
|
|
104
|
+
result,no_crash,0.117647058823529
|
|
105
|
+
is,no_crash,0.352941176470588
|
|
106
|
+
around,no_crash,0.117647058823529
|
|
107
|
+
but,crash,0.285714285714286
|
|
108
|
+
steer,no_crash,0.117647058823529
|
|
109
|
+
speedomet,no_crash,0.117647058823529
|
|
110
|
+
lurch,crash,0.285714285714286
|
|
111
|
+
hour,no_crash,0.117647058823529
|
|
112
|
+
steer,crash,0.285714285714286
|
|
113
|
+
driver,no_crash,0.117647058823529
|
|
114
|
+
increasedit,no_crash,0.117647058823529
|
|
115
|
+
shut,no_crash,0.176470588235294
|
|
116
|
+
deer,crash,0.285714285714286
|
|
117
|
+
driver,crash,0.714285714285714
|
|
118
|
+
incid,crash,0.285714285714286
|
|
119
|
+
intermitt,no_crash,0.117647058823529
|
|
120
|
+
power,no_crash,0.117647058823529
|
|
121
|
+
itself,no_crash,0.117647058823529
|
|
122
|
+
it,no_crash,0.176470588235294
|
|
123
|
+
gear,no_crash,0.117647058823529
|
|
124
|
+
occas,crash,0.285714285714286
|
|
125
|
+
idl,crash,0.285714285714286
|
|
126
|
+
it,crash,0.285714285714286
|
|
127
|
+
&,no_crash,0.176470588235294
|
|
128
|
+
follow,no_crash,0.117647058823529
|
|
129
|
+
still,no_crash,0.176470588235294
|
|
130
|
+
case,no_crash,0.117647058823529
|
|
131
|
+
broke,no_crash,0.176470588235294
|
|
132
|
+
keep,no_crash,0.117647058823529
|
|
133
|
+
still,crash,0.285714285714286
|
|
134
|
+
truck,no_crash,0.117647058823529
|
|
135
|
+
68000,no_crash,0.117647058823529
|
|
136
|
+
to,no_crash,0.470588235294118
|
|
137
|
+
mph,crash,0.571428571428571
|
|
138
|
+
truck,crash,0.285714285714286
|
|
139
|
+
bag,crash,0.571428571428571
|
|
140
|
+
to,crash,0.428571428571429
|
|
141
|
+
fail,no_crash,0.117647058823529
|
|
142
|
+
about,no_crash,0.117647058823529
|
|
143
|
+
head,no_crash,0.117647058823529
|
|
144
|
+
refer,no_crash,0.117647058823529
|
|
145
|
+
determin,no_crash,0.176470588235294
|
|
146
|
+
about,crash,0.285714285714286
|
|
147
|
+
side,no_crash,0.117647058823529
|
|
148
|
+
transmiss,no_crash,0.176470588235294
|
|
149
|
+
determin,crash,0.285714285714286
|
|
150
|
+
embank,crash,0.285714285714286
|
|
151
|
+
side,crash,0.571428571428571
|
|
152
|
+
smoke,no_crash,0.117647058823529
|
|
153
|
+
windshield,no_crash,0.176470588235294
|
|
154
|
+
manufactur,no_crash,0.352941176470588
|
|
155
|
+
saw,no_crash,0.117647058823529
|
|
156
|
+
brake,no_crash,0.176470588235294
|
|
157
|
+
windshield,crash,0.285714285714286
|
|
158
|
+
almost,no_crash,0.117647058823529
|
|
159
|
+
complet,no_crash,0.117647058823529
|
|
160
|
+
when,no_crash,0.352941176470588
|
|
161
|
+
start,no_crash,0.176470588235294
|
|
162
|
+
week,crash,0.285714285714286
|
|
163
|
+
cabl,no_crash,0.117647058823529
|
|
164
|
+
when,crash,0.285714285714286
|
|
165
|
+
nois,no_crash,0.117647058823529
|
|
166
|
+
at,no_crash,0.235294117647059
|
|
167
|
+
consum,no_crash,0.352941176470588
|
|
168
|
+
further,no_crash,0.117647058823529
|
|
169
|
+
had,no_crash,0.235294117647059
|
|
170
|
+
at,crash,0.428571428571429
|
|
171
|
+
consum,crash,0.428571428571429
|
|
172
|
+
referenc,no_crash,0.117647058823529
|
|
173
|
+
had,crash,0.285714285714286
|
|
174
|
+
airbag,no_crash,0.117647058823529
|
|
175
|
+
themselv,no_crash,0.117647058823529
|
|
176
|
+
head-on,crash,0.571428571428571
|
|
177
|
+
chang,no_crash,0.117647058823529
|
|
178
|
+
airbag,crash,0.571428571428571
|
|
179
|
+
alternator/,no_crash,0.117647058823529
|
|
180
|
+
stall,no_crash,0.176470588235294
|
|
181
|
+
owner,no_crash,0.235294117647059
|
|
182
|
+
knee,crash,0.285714285714286
|
|
183
|
+
storm,no_crash,0.117647058823529
|
|
184
|
+
NAIVE_BAYES_PRIOR_PROBABILITY,no_crash,0.75
|
|
185
|
+
two,crash,0.285714285714286
|
|
186
|
+
10mph,no_crash,0.117647058823529
|
|
187
|
+
over,no_crash,0.117647058823529
|
|
188
|
+
NAIVE_BAYES_PRIOR_PROBABILITY,crash,0.25
|
|
189
|
+
compart,no_crash,0.117647058823529
|
|
190
|
+
inop,no_crash,0.117647058823529
|
|
191
|
+
made,no_crash,0.117647058823529
|
|
192
|
+
awar,no_crash,0.117647058823529
|
|
193
|
+
approxim,crash,0.571428571428571
|
|
194
|
+
transfer,no_crash,0.117647058823529
|
|
195
|
+
without,no_crash,0.117647058823529
|
|
196
|
+
have,no_crash,0.176470588235294
|
|
197
|
+
repair,no_crash,0.235294117647059
|
|
198
|
+
electr,no_crash,0.117647058823529
|
|
199
|
+
rpms,no_crash,0.117647058823529
|
|
200
|
+
eard,no_crash,0.117647058823529
|
|
201
|
+
travel,no_crash,0.117647058823529
|
|
202
|
+
dealership,no_crash,0.117647058823529
|
|
203
|
+
whi,crash,0.285714285714286
|
|
204
|
+
under,no_crash,0.176470588235294
|
|
205
|
+
travel,crash,0.285714285714286
|
|
206
|
+
rear,no_crash,0.117647058823529
|
|
207
|
+
factori,no_crash,0.117647058823529
|
|
208
|
+
off,no_crash,0.176470588235294
|
|
209
|
+
notifi,no_crash,0.176470588235294
|
|
210
|
+
rear,crash,0.285714285714286
|
|
211
|
+
be,no_crash,0.176470588235294
|
|
212
|
+
then,no_crash,0.117647058823529
|
|
213
|
+
for,no_crash,0.117647058823529
|
|
214
|
+
stuck,no_crash,0.117647058823529
|
|
215
|
+
a,no_crash,0.294117647058824
|
|
216
|
+
then,crash,0.285714285714286
|
|
217
|
+
for,crash,0.285714285714286
|
|
218
|
+
would,no_crash,0.235294117647059
|
|
219
|
+
a,crash,0.714285714285714
|
|
220
|
+
ran,crash,0.285714285714286
|
|
221
|
+
injuri,crash,0.428571428571429
|
|
222
|
+
recker,no_crash,0.117647058823529
|
|
223
|
+
unexpect,no_crash,0.117647058823529
|
|
224
|
+
ignit,no_crash,0.176470588235294
|
|
225
|
+
NAIVE_BAYES_TEXT_MODEL_TYPE,BERNOULLI,1.0
|
|
226
|
+
sunroof,no_crash,0.117647058823529
|
|
227
|
+
ball,no_crash,0.117647058823529
|
|
228
|
+
expens,no_crash,0.117647058823529
|
|
229
|
+
rearend,crash,0.285714285714286
|
|
230
|
+
notfi,no_crash,0.117647058823529
|
|
231
|
+
back,no_crash,0.117647058823529
|
|
232
|
+
do,no_crash,0.117647058823529
|
|
233
|
+
batteri,no_crash,0.117647058823529
|
|
234
|
+
come,no_crash,0.117647058823529
|
|
235
|
+
back,crash,0.285714285714286
|
|
236
|
+
deploy,crash,0.714285714285714
|
|
237
|
+
mile,no_crash,0.176470588235294
|
|
238
|
+
hill,no_crash,0.117647058823529
|
|
239
|
+
on,no_crash,0.352941176470588
|
|
240
|
+
or,crash,0.285714285714286
|
|
241
|
+
3,no_crash,0.176470588235294
|
|
242
|
+
slow,no_crash,0.117647058823529
|
|
243
|
+
on,crash,0.428571428571429
|
|
244
|
+
could,no_crash,0.117647058823529
|
|
245
|
+
off/on,no_crash,0.117647058823529
|
|
246
|
+
slow,crash,0.285714285714286
|
|
247
|
+
walnut,no_crash,0.117647058823529
|
|
248
|
+
did,crash,0.571428571428571
|
|
249
|
+
45,crash,0.285714285714286
|
|
250
|
+
jiggl,no_crash,0.117647058823529
|
|
251
|
+
mechan,no_crash,0.117647058823529
|
|
252
|
+
from,no_crash,0.176470588235294
|
|
253
|
+
driveshaft,no_crash,0.117647058823529
|
|
254
|
+
4,no_crash,0.117647058823529
|
|
255
|
+
r&r,no_crash,0.117647058823529
|
|
256
|
+
problem,no_crash,0.294117647058824
|
|
257
|
+
bumper,crash,0.285714285714286
|
|
258
|
+
provid,no_crash,0.117647058823529
|
|
259
|
+
work,no_crash,0.235294117647059
|
|
260
|
+
after,no_crash,0.176470588235294
|
|
261
|
+
1,no_crash,0.117647058823529
|
|
262
|
+
proper,no_crash,0.117647058823529
|
|
263
|
+
fold,crash,0.285714285714286
|
|
264
|
+
into,no_crash,0.117647058823529
|
|
265
|
+
loss,no_crash,0.117647058823529
|
|
266
|
+
four,no_crash,0.117647058823529
|
|
267
|
+
receiv,crash,0.285714285714286
|
|
268
|
+
into,crash,0.428571428571429
|
|
269
|
+
front,no_crash,0.176470588235294
|
|
270
|
+
70mph,crash,0.285714285714286
|
|
271
|
+
accur,no_crash,0.117647058823529
|
|
272
|
+
f350,crash,0.285714285714286
|
|
273
|
+
front,crash,0.428571428571429
|
|
274
|
+
left,no_crash,0.176470588235294
|
|
275
|
+
pump,no_crash,0.117647058823529
|
|
276
|
+
were,no_crash,0.117647058823529
|
|
277
|
+
up,no_crash,0.176470588235294
|
|
278
|
+
left,crash,0.285714285714286
|
|
279
|
+
80,crash,0.285714285714286
|
|
280
|
+
motor,no_crash,0.117647058823529
|
|
281
|
+
while,no_crash,0.176470588235294
|
|
282
|
+
side/,crash,0.285714285714286
|
|
283
|
+
ea02-025,no_crash,0.117647058823529
|
|
284
|
+
NAIVE_BAYES_MISSING_TOKEN_PROBABILITY,no_crash,0.0588235294117647
|
|
285
|
+
while,crash,0.285714285714286
|
|
286
|
+
open,crash,0.285714285714286
|
|
287
|
+
NAIVE_BAYES_MISSING_TOKEN_PROBABILITY,crash,0.142857142857143
|
|
288
|
+
son,no_crash,0.117647058823529
|
|
289
|
+
want,no_crash,0.117647058823529
|
|
290
|
+
park,no_crash,0.117647058823529
|
|
291
|
+
air,crash,0.571428571428571
|
|
292
|
+
belts/spe,no_crash,0.117647058823529
|
|
293
|
+
park,crash,0.285714285714286
|
|
294
|
+
the,no_crash,0.705882352941177
|
|
295
|
+
separ,no_crash,0.117647058823529
|
|
296
|
+
hurt,crash,0.285714285714286
|
|
297
|
+
the,crash,0.428571428571429
|
|
298
|
+
thousand,no_crash,0.117647058823529
|
|
299
|
+
pleas,no_crash,0.117647058823529
|
|
300
|
+
bear,no_crash,0.117647058823529
|
|
301
|
+
fenc,crash,0.285714285714286
|
|
302
|
+
correct,no_crash,0.117647058823529
|
|
303
|
+
crash,no_crash,0.117647058823529
|
|
304
|
+
this,no_crash,0.176470588235294
|
|
305
|
+
both,no_crash,0.117647058823529
|
|
306
|
+
crash,crash,0.428571428571429
|
|
307
|
+
out,no_crash,0.176470588235294
|
|
308
|
+
build,crash,0.285714285714286
|
|
309
|
+
shift,no_crash,0.117647058823529
|
|
310
|
+
turn,no_crash,0.117647058823529
|
|
311
|
+
anoth,crash,0.428571428571429
|
|
312
|
+
cannot,no_crash,0.117647058823529
|
|
313
|
+
turn,crash,0.285714285714286
|
|
314
|
+
switch,no_crash,0.176470588235294
|
|
315
|
+
shop,crash,0.285714285714286
|
|
316
|
+
speed,no_crash,0.117647058823529
|
|
317
|
+
joint,no_crash,0.117647058823529
|
|
318
|
+
roll,no_crash,0.117647058823529
|
|
319
|
+
outward,crash,0.285714285714286
|
|
320
|
+
drive,no_crash,0.235294117647059
|
|
321
|
+
fire,no_crash,0.117647058823529
|
|
322
|
+
race,crash,0.285714285714286
|
|
323
|
+
drive,crash,0.285714285714286
|
|
324
|
+
starter,no_crash,0.117647058823529
|
|
325
|
+
shorten,no_crash,0.117647058823529
|
|
326
|
+
dual,crash,0.285714285714286
|
|
327
|
+
frame,no_crash,0.117647058823529
|
|
328
|
+
took,no_crash,0.117647058823529
|
|
329
|
+
*ml,no_crash,0.117647058823529
|
|
330
|
+
tune,no_crash,0.117647058823529
|
|
331
|
+
first,no_crash,0.117647058823529
|
|
332
|
+
end,crash,0.285714285714286
|
|
333
|
+
experienc,no_crash,0.117647058823529
|
|
334
|
+
smell,no_crash,0.117647058823529
|
|
335
|
+
due,no_crash,0.117647058823529
|
|
336
|
+
an,no_crash,0.176470588235294
|
|
337
|
+
stay,no_crash,0.117647058823529
|
|
338
|
+
an,crash,0.285714285714286
|
|
339
|
+
in,no_crash,0.294117647058824
|
|
340
|
+
neither,crash,0.285714285714286
|
|
341
|
+
in,crash,0.428571428571429
|
|
342
|
+
been,no_crash,0.235294117647059
|
|
343
|
+
been,crash,0.285714285714286
|
|
344
|
+
control,no_crash,0.176470588235294
|
|
345
|
+
just,no_crash,0.117647058823529
|
|
346
|
+
gasket,no_crash,0.117647058823529
|
|
347
|
+
foot,no_crash,0.117647058823529
|
|
348
|
+
prior,crash,0.285714285714286
|