├── .gitignore ├── Dissertation.pdf ├── README.md ├── paper-01-A_reliable_approach ├── Codes │ └── MATLAB │ │ ├── Feature Extraction │ │ ├── .DS_Store │ │ ├── Examples │ │ │ ├── examplet_featureExtraction_FOURIER.m │ │ │ ├── examplet_featureExtraction_GOERTZEL.m │ │ │ ├── examplet_featureExtraction_HOS.m │ │ │ ├── examplet_featureExtraction_SCM.m │ │ │ └── v000_NORMAL_FR4500_FG4385_L000_1,0IN_SENSORC.csv │ │ ├── featureExtraction_fft.m │ │ ├── featureExtraction_goertzel.m │ │ ├── featureExtraction_hos.m │ │ ├── featureExtraction_scm.m │ │ ├── scm.m │ │ └── scmprops.m │ │ └── filters │ │ ├── filter_movAvg.m │ │ └── filter_signal.m ├── datasets │ ├── v000_SCIG_SC_SENSORC_FOURIER_010-info.txt │ ├── v000_SCIG_SC_SENSORC_FOURIER_010.csv │ ├── v000_SCIG_SC_SENSORC_GOERTZEL_001-info.txt │ ├── v000_SCIG_SC_SENSORC_GOERTZEL_001.csv │ ├── v000_SCIG_SC_SENSORC_HOS_001-info.txt │ ├── v000_SCIG_SC_SENSORC_HOS_001.csv │ ├── v000_SCIG_SC_SENSORC_SCM_001-info.txt │ └── v000_SCIG_SC_SENSORC_SCM_001.csv ├── notebooks │ ├── Experiment_01 - FOURIER - Data from all phases are new features │ │ ├── .ipynb_checkpoints │ │ │ ├── notebook_01-SCIG-7classes-checkpoint.ipynb │ │ │ └── notebook_01-SCIG-7classes_tensorflow-checkpoint.ipynb │ │ ├── README.md │ │ ├── TESTE_notebook_01-SCIG-7classes_tensorflow.py │ │ ├── notebook_01-SCIG-7classes.ipynb │ │ ├── notebook_01_SCIG_7classes_tensorflow.ipynb │ │ ├── test.py │ │ └── v000_SCIG_SC_SENSORC_FOURIER_010.csv │ └── README.md └── workspace-vscode.code-workspace └── paper-02-A_multi-sensor_architecture ├── .gitignore ├── README.md ├── data └── csv │ ├── README.MD │ ├── classes.txt │ ├── figs │ ├── bench.png │ ├── diagram.pdf │ └── diagram.png │ ├── v000_SCIG_SC_SENSORA_FOURIER.csv │ ├── v000_SCIG_SC_SENSORA_HOS.csv │ ├── v000_SCIG_SC_SENSORA_SCM.csv │ ├── v000_SCIG_SC_SENSORC_FOURIER.csv │ ├── v000_SCIG_SC_SENSORC_HOS.csv │ ├── v000_SCIG_SC_SENSORC_SCM.csv │ ├── v000_SCIG_SC_SENSORV_FOURIER.csv │ ├── v000_SCIG_SC_SENSORV_HOS.csv │ └── v000_SCIG_SC_SENSORV_SCM.csv ├── models ├── classifier │ ├── clf_SENSORA_FOURIER_knn_appended.pkl │ ├── clf_SENSORA_FOURIER_mlp_appended.pkl │ ├── clf_SENSORA_FOURIER_naive_bayes_appended.pkl │ ├── clf_SENSORA_FOURIER_svm_appended.pkl │ ├── clf_SENSORA_HOS_knn_appended.pkl │ ├── clf_SENSORA_HOS_mlp_appended.pkl │ ├── clf_SENSORA_HOS_naive_bayes_appended.pkl │ ├── clf_SENSORA_HOS_svm_appended.pkl │ ├── clf_SENSORA_SCM_knn_appended.pkl │ ├── clf_SENSORA_SCM_mlp_appended.pkl │ ├── clf_SENSORA_SCM_naive_bayes_appended.pkl │ ├── clf_SENSORA_SCM_svm_appended.pkl │ ├── clf_SENSORC_FOURIER_knn_appended.pkl │ ├── clf_SENSORC_FOURIER_knn_union.pkl │ ├── clf_SENSORC_FOURIER_mlp_appended.pkl │ ├── clf_SENSORC_FOURIER_mlp_union.pkl │ ├── clf_SENSORC_FOURIER_naive_bayes_appended.pkl │ ├── clf_SENSORC_FOURIER_naive_bayes_union.pkl │ ├── clf_SENSORC_FOURIER_svm_appended.pkl │ ├── clf_SENSORC_FOURIER_svm_union.pkl │ ├── clf_SENSORC_HOS_knn_appended.pkl │ ├── clf_SENSORC_HOS_knn_union.pkl │ ├── clf_SENSORC_HOS_mlp_appended.pkl │ ├── clf_SENSORC_HOS_mlp_union.pkl │ ├── clf_SENSORC_HOS_naive_bayes_appended.pkl │ ├── clf_SENSORC_HOS_naive_bayes_union.pkl │ ├── clf_SENSORC_HOS_svm_appended.pkl │ ├── clf_SENSORC_HOS_svm_union.pkl │ ├── clf_SENSORC_SCM_knn_appended.pkl │ ├── clf_SENSORC_SCM_knn_union.pkl │ ├── clf_SENSORC_SCM_mlp_appended.pkl │ ├── clf_SENSORC_SCM_mlp_union.pkl │ ├── clf_SENSORC_SCM_naive_bayes_appended.pkl │ ├── clf_SENSORC_SCM_naive_bayes_union.pkl │ ├── clf_SENSORC_SCM_svm_appended.pkl │ ├── clf_SENSORC_SCM_svm_union.pkl │ ├── clf_SENSORV_FOURIER_knn_appended.pkl │ ├── clf_SENSORV_FOURIER_knn_union.pkl │ ├── clf_SENSORV_FOURIER_mlp_appended.pkl │ ├── clf_SENSORV_FOURIER_mlp_union.pkl │ ├── clf_SENSORV_FOURIER_naive_bayes_appended.pkl │ ├── clf_SENSORV_FOURIER_naive_bayes_union.pkl │ ├── clf_SENSORV_FOURIER_svm_appended.pkl │ ├── clf_SENSORV_FOURIER_svm_union.pkl │ ├── clf_SENSORV_HOS_knn_appended.pkl │ ├── clf_SENSORV_HOS_knn_union.pkl │ ├── clf_SENSORV_HOS_mlp_appended.pkl │ ├── clf_SENSORV_HOS_mlp_union.pkl │ ├── clf_SENSORV_HOS_naive_bayes_appended.pkl │ ├── clf_SENSORV_HOS_naive_bayes_union.pkl │ ├── clf_SENSORV_HOS_svm_appended.pkl │ ├── clf_SENSORV_HOS_svm_union.pkl │ ├── clf_SENSORV_SCM_knn_appended.pkl │ ├── clf_SENSORV_SCM_knn_union.pkl │ ├── clf_SENSORV_SCM_mlp_appended.pkl │ ├── clf_SENSORV_SCM_mlp_union.pkl │ ├── clf_SENSORV_SCM_naive_bayes_appended.pkl │ ├── clf_SENSORV_SCM_naive_bayes_union.pkl │ ├── clf_SENSORV_SCM_svm_appended.pkl │ └── clf_SENSORV_SCM_svm_union.pkl ├── pipeline │ ├── tf_pipeline_SENSORA_FOURIER.pkl │ ├── tf_pipeline_SENSORA_FOURIER_appended.pkl │ ├── tf_pipeline_SENSORA_HOS_appended.pkl │ ├── tf_pipeline_SENSORA_SCM_appended.pkl │ ├── tf_pipeline_SENSORC_FOURIER_appended.pkl │ ├── tf_pipeline_SENSORC_FOURIER_union.pkl │ ├── tf_pipeline_SENSORC_HOS_appended.pkl │ ├── tf_pipeline_SENSORC_HOS_union.pkl │ ├── tf_pipeline_SENSORC_SCM_appended.pkl │ ├── tf_pipeline_SENSORC_SCM_union.pkl │ ├── tf_pipeline_SENSORV_FOURIER_appended.pkl │ ├── tf_pipeline_SENSORV_FOURIER_union.pkl │ ├── tf_pipeline_SENSORV_HOS_appended.pkl │ ├── tf_pipeline_SENSORV_HOS_union.pkl │ ├── tf_pipeline_SENSORV_SCM_appended.pkl │ └── tf_pipeline_SENSORV_SCM_union.pkl ├── scaler │ ├── tf_scaler_SENSORA_FOURIER_SF1.pkl │ ├── tf_scaler_SENSORA_FOURIER_SF2.pkl │ ├── tf_scaler_SENSORA_HOS_SF1.pkl │ ├── tf_scaler_SENSORA_HOS_SF2.pkl │ ├── tf_scaler_SENSORA_SCM_SF1.pkl │ ├── tf_scaler_SENSORA_SCM_SF2.pkl │ ├── tf_scaler_SENSORC_FOURIER_SF1.pkl │ ├── tf_scaler_SENSORC_FOURIER_SF2.pkl │ ├── tf_scaler_SENSORC_FOURIER_SF3.pkl │ ├── tf_scaler_SENSORC_FOURIER_SF4.pkl │ ├── tf_scaler_SENSORC_HOS_SF1.pkl │ ├── tf_scaler_SENSORC_HOS_SF2.pkl │ ├── tf_scaler_SENSORC_HOS_SF3.pkl │ ├── tf_scaler_SENSORC_HOS_SF4.pkl │ ├── tf_scaler_SENSORC_SCM_SF1.pkl │ ├── tf_scaler_SENSORC_SCM_SF2.pkl │ ├── tf_scaler_SENSORC_SCM_SF3.pkl │ ├── tf_scaler_SENSORC_SCM_SF4.pkl │ ├── tf_scaler_SENSORV_FOURIER_SF1.pkl │ ├── tf_scaler_SENSORV_FOURIER_SF2.pkl │ ├── tf_scaler_SENSORV_FOURIER_SF3.pkl │ ├── tf_scaler_SENSORV_FOURIER_SF4.pkl │ ├── tf_scaler_SENSORV_HOS_SF1.pkl │ ├── tf_scaler_SENSORV_HOS_SF2.pkl │ ├── tf_scaler_SENSORV_HOS_SF3.pkl │ ├── tf_scaler_SENSORV_HOS_SF4.pkl │ ├── tf_scaler_SENSORV_SCM_SF1.pkl │ ├── tf_scaler_SENSORV_SCM_SF2.pkl │ ├── tf_scaler_SENSORV_SCM_SF3.pkl │ └── tf_scaler_SENSORV_SCM_SF4.pkl └── selector │ ├── tf_selector_SENSORA_FOURIER_SF1.pkl │ ├── tf_selector_SENSORA_FOURIER_SF2.pkl │ ├── tf_selector_SENSORA_HOS_SF1.pkl │ ├── tf_selector_SENSORA_HOS_SF2.pkl │ ├── tf_selector_SENSORA_SCM_SF1.pkl │ ├── tf_selector_SENSORA_SCM_SF2.pkl │ ├── tf_selector_SENSORC_FOURIER_SF1.pkl │ ├── tf_selector_SENSORC_FOURIER_SF2.pkl │ ├── tf_selector_SENSORC_FOURIER_SF3.pkl │ ├── tf_selector_SENSORC_FOURIER_SF4.pkl │ ├── tf_selector_SENSORC_HOS_SF1.pkl │ ├── tf_selector_SENSORC_HOS_SF2.pkl │ ├── tf_selector_SENSORC_HOS_SF3.pkl │ ├── tf_selector_SENSORC_HOS_SF4.pkl │ ├── tf_selector_SENSORC_SCM_SF1.pkl │ ├── tf_selector_SENSORC_SCM_SF2.pkl │ ├── tf_selector_SENSORC_SCM_SF3.pkl │ ├── tf_selector_SENSORC_SCM_SF4.pkl │ ├── tf_selector_SENSORV_FOURIER_SF1.pkl │ ├── tf_selector_SENSORV_FOURIER_SF2.pkl │ ├── tf_selector_SENSORV_FOURIER_SF3.pkl │ ├── tf_selector_SENSORV_FOURIER_SF4.pkl │ ├── tf_selector_SENSORV_HOS_SF1.pkl │ ├── tf_selector_SENSORV_HOS_SF2.pkl │ ├── tf_selector_SENSORV_HOS_SF3.pkl │ ├── tf_selector_SENSORV_HOS_SF4.pkl │ ├── tf_selector_SENSORV_SCM_SF1.pkl │ ├── tf_selector_SENSORV_SCM_SF2.pkl │ ├── tf_selector_SENSORV_SCM_SF3.pkl │ └── tf_selector_SENSORV_SCM_SF4.pkl ├── notebooks ├── notebook-01-data-inference.ipynb └── notebook-02-statistical_test.ipynb ├── results ├── SENSORA │ └── appended │ │ ├── conf_FOURIER_knn.csv │ │ ├── conf_FOURIER_mlp.csv │ │ ├── conf_FOURIER_naive_bayes.csv │ │ ├── conf_FOURIER_svm.csv │ │ ├── conf_HOS_knn.csv │ │ ├── conf_HOS_mlp.csv │ │ ├── conf_HOS_naive_bayes.csv │ │ ├── conf_HOS_svm.csv │ │ ├── conf_SCM_knn.csv │ │ ├── conf_SCM_mlp.csv │ │ ├── conf_SCM_naive_bayes.csv │ │ ├── conf_SCM_svm.csv │ │ ├── pkl │ │ ├── FOURIER_knn_acc.pkl │ │ ├── FOURIER_knn_fnr.pkl │ │ ├── FOURIER_knn_fnr_weighted.pkl │ │ ├── FOURIER_knn_fpr.pkl │ │ ├── FOURIER_knn_fpr_weighted.pkl │ │ ├── FOURIER_mlp_acc.pkl │ │ ├── FOURIER_mlp_fnr.pkl │ │ ├── FOURIER_mlp_fnr_weighted.pkl │ │ ├── FOURIER_mlp_fpr.pkl │ │ ├── FOURIER_mlp_fpr_weighted.pkl │ │ ├── FOURIER_naive_bayes_acc.pkl │ │ ├── FOURIER_naive_bayes_fnr.pkl │ │ ├── FOURIER_naive_bayes_fnr_weighted.pkl │ │ ├── FOURIER_naive_bayes_fpr.pkl │ │ ├── FOURIER_naive_bayes_fpr_weighted.pkl │ │ ├── FOURIER_svm_acc.pkl │ │ ├── FOURIER_svm_fnr.pkl │ │ ├── FOURIER_svm_fnr_weighted.pkl │ │ ├── FOURIER_svm_fpr.pkl │ │ ├── FOURIER_svm_fpr_weighted.pkl │ │ ├── HOS_knn_acc.pkl │ │ ├── HOS_knn_fnr.pkl │ │ ├── HOS_knn_fnr_weighted.pkl │ │ ├── HOS_knn_fpr.pkl │ │ ├── HOS_knn_fpr_weighted.pkl │ │ ├── HOS_mlp_acc.pkl │ │ ├── HOS_mlp_fnr.pkl │ │ ├── HOS_mlp_fnr_weighted.pkl │ │ ├── HOS_mlp_fpr.pkl │ │ ├── HOS_mlp_fpr_weighted.pkl │ │ ├── HOS_naive_bayes_acc.pkl │ │ ├── HOS_naive_bayes_fnr.pkl │ │ ├── HOS_naive_bayes_fnr_weighted.pkl │ │ ├── HOS_naive_bayes_fpr.pkl │ │ ├── HOS_naive_bayes_fpr_weighted.pkl │ │ ├── HOS_svm_acc.pkl │ │ ├── HOS_svm_fnr.pkl │ │ ├── HOS_svm_fnr_weighted.pkl │ │ ├── HOS_svm_fpr.pkl │ │ ├── HOS_svm_fpr_weighted.pkl │ │ ├── SCM_knn_acc.pkl │ │ ├── SCM_knn_fnr.pkl │ │ ├── SCM_knn_fnr_weighted.pkl │ │ ├── SCM_knn_fpr.pkl │ │ ├── SCM_knn_fpr_weighted.pkl │ │ ├── SCM_mlp_acc.pkl │ │ ├── SCM_mlp_fnr.pkl │ │ ├── SCM_mlp_fnr_weighted.pkl │ │ ├── SCM_mlp_fpr.pkl │ │ ├── SCM_mlp_fpr_weighted.pkl │ │ ├── SCM_naive_bayes_acc.pkl │ │ ├── SCM_naive_bayes_fnr.pkl │ │ ├── SCM_naive_bayes_fnr_weighted.pkl │ │ ├── SCM_naive_bayes_fpr.pkl │ │ ├── SCM_naive_bayes_fpr_weighted.pkl │ │ ├── SCM_svm_acc.pkl │ │ ├── SCM_svm_fnr.pkl │ │ ├── SCM_svm_fnr_weighted.pkl │ │ ├── SCM_svm_fpr.pkl │ │ └── SCM_svm_fpr_weighted.pkl │ │ ├── results_acc.csv │ │ └── results_std.csv ├── SENSORC │ ├── appended │ │ ├── conf_FOURIER_knn.csv │ │ ├── conf_FOURIER_mlp.csv │ │ ├── conf_FOURIER_naive_bayes.csv │ │ ├── conf_FOURIER_svm.csv │ │ ├── conf_HOS_knn.csv │ │ ├── conf_HOS_mlp.csv │ │ ├── conf_HOS_naive_bayes.csv │ │ ├── conf_HOS_svm.csv │ │ ├── conf_SCM_knn.csv │ │ ├── conf_SCM_mlp.csv │ │ ├── conf_SCM_naive_bayes.csv │ │ ├── conf_SCM_svm.csv │ │ ├── pkl │ │ │ ├── FOURIER_knn_acc.pkl │ │ │ ├── FOURIER_knn_fnr.pkl │ │ │ ├── FOURIER_knn_fnr_weighted.pkl │ │ │ ├── FOURIER_knn_fpr.pkl │ │ │ ├── FOURIER_knn_fpr_weighted.pkl │ │ │ ├── FOURIER_mlp_acc.pkl │ │ │ ├── FOURIER_mlp_fnr.pkl │ │ │ ├── FOURIER_mlp_fnr_weighted.pkl │ │ │ ├── FOURIER_mlp_fpr.pkl │ │ │ ├── FOURIER_mlp_fpr_weighted.pkl │ │ │ ├── FOURIER_naive_bayes_acc.pkl │ │ │ ├── FOURIER_naive_bayes_fnr.pkl │ │ │ ├── FOURIER_naive_bayes_fnr_weighted.pkl │ │ │ ├── FOURIER_naive_bayes_fpr.pkl │ │ │ ├── FOURIER_naive_bayes_fpr_weighted.pkl │ │ │ ├── FOURIER_svm_acc.pkl │ │ │ ├── FOURIER_svm_fnr.pkl │ │ │ ├── FOURIER_svm_fnr_weighted.pkl │ │ │ ├── FOURIER_svm_fpr.pkl │ │ │ ├── FOURIER_svm_fpr_weighted.pkl │ │ │ ├── HOS_knn_acc.pkl │ │ │ ├── HOS_knn_fnr.pkl │ │ │ ├── HOS_knn_fnr_weighted.pkl │ │ │ ├── HOS_knn_fpr.pkl │ │ │ ├── HOS_knn_fpr_weighted.pkl │ │ │ ├── HOS_mlp_acc.pkl │ │ │ ├── HOS_mlp_fnr.pkl │ │ │ ├── HOS_mlp_fnr_weighted.pkl │ │ │ ├── HOS_mlp_fpr.pkl │ │ │ ├── HOS_mlp_fpr_weighted.pkl │ │ │ ├── HOS_naive_bayes_acc.pkl │ │ │ ├── HOS_naive_bayes_fnr.pkl │ │ │ ├── HOS_naive_bayes_fnr_weighted.pkl │ │ │ ├── HOS_naive_bayes_fpr.pkl │ │ │ ├── HOS_naive_bayes_fpr_weighted.pkl │ │ │ ├── HOS_svm_acc.pkl │ │ │ ├── HOS_svm_fnr.pkl │ │ │ ├── HOS_svm_fnr_weighted.pkl │ │ │ ├── HOS_svm_fpr.pkl │ │ │ ├── HOS_svm_fpr_weighted.pkl │ │ │ ├── SCM_knn_acc.pkl │ │ │ ├── SCM_knn_fnr.pkl │ │ │ ├── SCM_knn_fnr_weighted.pkl │ │ │ ├── SCM_knn_fpr.pkl │ │ │ ├── SCM_knn_fpr_weighted.pkl │ │ │ ├── SCM_mlp_acc.pkl │ │ │ ├── SCM_mlp_fnr.pkl │ │ │ ├── SCM_mlp_fnr_weighted.pkl │ │ │ ├── SCM_mlp_fpr.pkl │ │ │ ├── SCM_mlp_fpr_weighted.pkl │ │ │ ├── SCM_naive_bayes_acc.pkl │ │ │ ├── SCM_naive_bayes_fnr.pkl │ │ │ ├── SCM_naive_bayes_fnr_weighted.pkl │ │ │ ├── SCM_naive_bayes_fpr.pkl │ │ │ ├── SCM_naive_bayes_fpr_weighted.pkl │ │ │ ├── SCM_svm_acc.pkl │ │ │ ├── SCM_svm_fnr.pkl │ │ │ ├── SCM_svm_fnr_weighted.pkl │ │ │ ├── SCM_svm_fpr.pkl │ │ │ └── SCM_svm_fpr_weighted.pkl │ │ ├── results_acc.csv │ │ └── results_std.csv │ └── union │ │ ├── conf_FOURIER_knn.csv │ │ ├── conf_FOURIER_mlp.csv │ │ ├── conf_FOURIER_naive_bayes.csv │ │ ├── conf_FOURIER_svm.csv │ │ ├── conf_HOS_knn.csv │ │ ├── conf_HOS_mlp.csv │ │ ├── conf_HOS_naive_bayes.csv │ │ ├── conf_HOS_svm.csv │ │ ├── conf_SCM_knn.csv │ │ ├── conf_SCM_mlp.csv │ │ ├── conf_SCM_naive_bayes.csv │ │ ├── conf_SCM_svm.csv │ │ ├── pkl │ │ ├── FOURIER_knn_acc.pkl │ │ ├── FOURIER_knn_fnr.pkl │ │ ├── FOURIER_knn_fnr_weighted.pkl │ │ ├── FOURIER_knn_fpr.pkl │ │ ├── FOURIER_knn_fpr_weighted.pkl │ │ ├── FOURIER_mlp_acc.pkl │ │ ├── FOURIER_mlp_fnr.pkl │ │ ├── FOURIER_mlp_fnr_weighted.pkl │ │ ├── FOURIER_mlp_fpr.pkl │ │ ├── FOURIER_mlp_fpr_weighted.pkl │ │ ├── FOURIER_naive_bayes_acc.pkl │ │ ├── FOURIER_naive_bayes_fnr.pkl │ │ ├── FOURIER_naive_bayes_fnr_weighted.pkl │ │ ├── FOURIER_naive_bayes_fpr.pkl │ │ ├── FOURIER_naive_bayes_fpr_weighted.pkl │ │ ├── FOURIER_svm_acc.pkl │ │ ├── FOURIER_svm_fnr.pkl │ │ ├── FOURIER_svm_fnr_weighted.pkl │ │ ├── FOURIER_svm_fpr.pkl │ │ ├── FOURIER_svm_fpr_weighted.pkl │ │ ├── HOS_knn_acc.pkl │ │ ├── HOS_knn_fnr.pkl │ │ ├── HOS_knn_fnr_weighted.pkl │ │ ├── HOS_knn_fpr.pkl │ │ ├── HOS_knn_fpr_weighted.pkl │ │ ├── HOS_mlp_acc.pkl │ │ ├── HOS_mlp_fnr.pkl │ │ ├── HOS_mlp_fnr_weighted.pkl │ │ ├── HOS_mlp_fpr.pkl │ │ ├── HOS_mlp_fpr_weighted.pkl │ │ ├── HOS_naive_bayes_acc.pkl │ │ ├── HOS_naive_bayes_fnr.pkl │ │ ├── HOS_naive_bayes_fnr_weighted.pkl │ │ ├── HOS_naive_bayes_fpr.pkl │ │ ├── HOS_naive_bayes_fpr_weighted.pkl │ │ ├── HOS_svm_acc.pkl │ │ ├── HOS_svm_fnr.pkl │ │ ├── HOS_svm_fnr_weighted.pkl │ │ ├── HOS_svm_fpr.pkl │ │ ├── HOS_svm_fpr_weighted.pkl │ │ ├── SCM_knn_acc.pkl │ │ ├── SCM_knn_fnr.pkl │ │ ├── SCM_knn_fnr_weighted.pkl │ │ ├── SCM_knn_fpr.pkl │ │ ├── SCM_knn_fpr_weighted.pkl │ │ ├── SCM_mlp_acc.pkl │ │ ├── SCM_mlp_fnr.pkl │ │ ├── SCM_mlp_fnr_weighted.pkl │ │ ├── SCM_mlp_fpr.pkl │ │ ├── SCM_mlp_fpr_weighted.pkl │ │ ├── SCM_naive_bayes_acc.pkl │ │ ├── SCM_naive_bayes_fnr.pkl │ │ ├── SCM_naive_bayes_fnr_weighted.pkl │ │ ├── SCM_naive_bayes_fpr.pkl │ │ ├── SCM_naive_bayes_fpr_weighted.pkl │ │ ├── SCM_svm_acc.pkl │ │ ├── SCM_svm_fnr.pkl │ │ ├── SCM_svm_fnr_weighted.pkl │ │ ├── SCM_svm_fpr.pkl │ │ └── SCM_svm_fpr_weighted.pkl │ │ ├── results_acc.csv │ │ └── results_std.csv ├── SENSORV │ ├── appended │ │ ├── conf_FOURIER_knn.csv │ │ ├── conf_FOURIER_mlp.csv │ │ ├── conf_FOURIER_naive_bayes.csv │ │ ├── conf_FOURIER_svm.csv │ │ ├── conf_HOS_knn.csv │ │ ├── conf_HOS_mlp.csv │ │ ├── conf_HOS_naive_bayes.csv │ │ ├── conf_HOS_svm.csv │ │ ├── conf_SCM_knn.csv │ │ ├── conf_SCM_mlp.csv │ │ ├── conf_SCM_naive_bayes.csv │ │ ├── conf_SCM_svm.csv │ │ ├── pkl │ │ │ ├── FOURIER_knn_acc.pkl │ │ │ ├── FOURIER_knn_fnr.pkl │ │ │ ├── FOURIER_knn_fnr_weighted.pkl │ │ │ ├── FOURIER_knn_fpr.pkl │ │ │ ├── FOURIER_knn_fpr_weighted.pkl │ │ │ ├── FOURIER_mlp_acc.pkl │ │ │ ├── FOURIER_mlp_fnr.pkl │ │ │ ├── FOURIER_mlp_fnr_weighted.pkl │ │ │ ├── FOURIER_mlp_fpr.pkl │ │ │ ├── FOURIER_mlp_fpr_weighted.pkl │ │ │ ├── FOURIER_naive_bayes_acc.pkl │ │ │ ├── FOURIER_naive_bayes_fnr.pkl │ │ │ ├── FOURIER_naive_bayes_fnr_weighted.pkl │ │ │ ├── FOURIER_naive_bayes_fpr.pkl │ │ │ ├── FOURIER_naive_bayes_fpr_weighted.pkl │ │ │ ├── FOURIER_svm_acc.pkl │ │ │ ├── FOURIER_svm_fnr.pkl │ │ │ ├── FOURIER_svm_fnr_weighted.pkl │ │ │ ├── FOURIER_svm_fpr.pkl │ │ │ ├── FOURIER_svm_fpr_weighted.pkl │ │ │ ├── HOS_knn_acc.pkl │ │ │ ├── HOS_knn_fnr.pkl │ │ │ ├── HOS_knn_fnr_weighted.pkl │ │ │ ├── HOS_knn_fpr.pkl │ │ │ ├── HOS_knn_fpr_weighted.pkl │ │ │ ├── HOS_mlp_acc.pkl │ │ │ ├── HOS_mlp_fnr.pkl │ │ │ ├── HOS_mlp_fnr_weighted.pkl │ │ │ ├── HOS_mlp_fpr.pkl │ │ │ ├── HOS_mlp_fpr_weighted.pkl │ │ │ ├── HOS_naive_bayes_acc.pkl │ │ │ ├── HOS_naive_bayes_fnr.pkl │ │ │ ├── HOS_naive_bayes_fnr_weighted.pkl │ │ │ ├── HOS_naive_bayes_fpr.pkl │ │ │ ├── HOS_naive_bayes_fpr_weighted.pkl │ │ │ ├── HOS_svm_acc.pkl │ │ │ ├── HOS_svm_fnr.pkl │ │ │ ├── HOS_svm_fnr_weighted.pkl │ │ │ ├── HOS_svm_fpr.pkl │ │ │ ├── HOS_svm_fpr_weighted.pkl │ │ │ ├── SCM_knn_acc.pkl │ │ │ ├── SCM_knn_fnr.pkl │ │ │ ├── SCM_knn_fnr_weighted.pkl │ │ │ ├── SCM_knn_fpr.pkl │ │ │ ├── SCM_knn_fpr_weighted.pkl │ │ │ ├── SCM_mlp_acc.pkl │ │ │ ├── SCM_mlp_fnr.pkl │ │ │ ├── SCM_mlp_fnr_weighted.pkl │ │ │ ├── SCM_mlp_fpr.pkl │ │ │ ├── SCM_mlp_fpr_weighted.pkl │ │ │ ├── SCM_naive_bayes_acc.pkl │ │ │ ├── SCM_naive_bayes_fnr.pkl │ │ │ ├── SCM_naive_bayes_fnr_weighted.pkl │ │ │ ├── SCM_naive_bayes_fpr.pkl │ │ │ ├── SCM_naive_bayes_fpr_weighted.pkl │ │ │ ├── SCM_svm_acc.pkl │ │ │ ├── SCM_svm_fnr.pkl │ │ │ ├── SCM_svm_fnr_weighted.pkl │ │ │ ├── SCM_svm_fpr.pkl │ │ │ └── SCM_svm_fpr_weighted.pkl │ │ ├── results_acc.csv │ │ └── results_std.csv │ └── union │ │ ├── conf_FOURIER_knn.csv │ │ ├── conf_FOURIER_mlp.csv │ │ ├── conf_FOURIER_naive_bayes.csv │ │ ├── conf_FOURIER_svm.csv │ │ ├── conf_HOS_knn.csv │ │ ├── conf_HOS_mlp.csv │ │ ├── conf_HOS_naive_bayes.csv │ │ ├── conf_HOS_svm.csv │ │ ├── conf_SCM_knn.csv │ │ ├── conf_SCM_mlp.csv │ │ ├── conf_SCM_naive_bayes.csv │ │ ├── conf_SCM_svm.csv │ │ ├── pkl │ │ ├── FOURIER_knn_acc.pkl │ │ ├── FOURIER_knn_fnr.pkl │ │ ├── FOURIER_knn_fnr_weighted.pkl │ │ ├── FOURIER_knn_fpr.pkl │ │ ├── FOURIER_knn_fpr_weighted.pkl │ │ ├── FOURIER_mlp_acc.pkl │ │ ├── FOURIER_mlp_fnr.pkl │ │ ├── FOURIER_mlp_fnr_weighted.pkl │ │ ├── FOURIER_mlp_fpr.pkl │ │ ├── FOURIER_mlp_fpr_weighted.pkl │ │ ├── FOURIER_naive_bayes_acc.pkl │ │ ├── FOURIER_naive_bayes_fnr.pkl │ │ ├── FOURIER_naive_bayes_fnr_weighted.pkl │ │ ├── FOURIER_naive_bayes_fpr.pkl │ │ ├── FOURIER_naive_bayes_fpr_weighted.pkl │ │ ├── FOURIER_svm_acc.pkl │ │ ├── FOURIER_svm_fnr.pkl │ │ ├── FOURIER_svm_fnr_weighted.pkl │ │ ├── FOURIER_svm_fpr.pkl │ │ ├── FOURIER_svm_fpr_weighted.pkl │ │ ├── HOS_knn_acc.pkl │ │ ├── HOS_knn_fnr.pkl │ │ ├── HOS_knn_fnr_weighted.pkl │ │ ├── HOS_knn_fpr.pkl │ │ ├── HOS_knn_fpr_weighted.pkl │ │ ├── HOS_mlp_acc.pkl │ │ ├── HOS_mlp_fnr.pkl │ │ ├── HOS_mlp_fnr_weighted.pkl │ │ ├── HOS_mlp_fpr.pkl │ │ ├── HOS_mlp_fpr_weighted.pkl │ │ ├── HOS_naive_bayes_acc.pkl │ │ ├── HOS_naive_bayes_fnr.pkl │ │ ├── HOS_naive_bayes_fnr_weighted.pkl │ │ ├── HOS_naive_bayes_fpr.pkl │ │ ├── HOS_naive_bayes_fpr_weighted.pkl │ │ ├── HOS_svm_acc.pkl │ │ ├── HOS_svm_fnr.pkl │ │ ├── HOS_svm_fnr_weighted.pkl │ │ ├── HOS_svm_fpr.pkl │ │ ├── HOS_svm_fpr_weighted.pkl │ │ ├── SCM_knn_acc.pkl │ │ ├── SCM_knn_fnr.pkl │ │ ├── SCM_knn_fnr_weighted.pkl │ │ ├── SCM_knn_fpr.pkl │ │ ├── SCM_knn_fpr_weighted.pkl │ │ ├── SCM_mlp_acc.pkl │ │ ├── SCM_mlp_fnr.pkl │ │ ├── SCM_mlp_fnr_weighted.pkl │ │ ├── SCM_mlp_fpr.pkl │ │ ├── SCM_mlp_fpr_weighted.pkl │ │ ├── SCM_naive_bayes_acc.pkl │ │ ├── SCM_naive_bayes_fnr.pkl │ │ ├── SCM_naive_bayes_fnr_weighted.pkl │ │ ├── SCM_naive_bayes_fpr.pkl │ │ ├── SCM_naive_bayes_fpr_weighted.pkl │ │ ├── SCM_svm_acc.pkl │ │ ├── SCM_svm_fnr.pkl │ │ ├── SCM_svm_fnr_weighted.pkl │ │ ├── SCM_svm_fpr.pkl │ │ └── SCM_svm_fpr_weighted.pkl │ │ ├── results_acc.csv │ │ └── results_std.csv └── embedded │ ├── jettson │ ├── SENSORA │ │ └── appended │ │ │ ├── conf_FOURIER_knn.csv │ │ │ ├── conf_FOURIER_mlp.csv │ │ │ ├── conf_FOURIER_naive_bayes.csv │ │ │ ├── conf_FOURIER_svm.csv │ │ │ ├── conf_HOS_knn.csv │ │ │ ├── conf_HOS_mlp.csv │ │ │ ├── conf_HOS_naive_bayes.csv │ │ │ ├── conf_HOS_svm.csv │ │ │ ├── conf_SCM_knn.csv │ │ │ ├── conf_SCM_mlp.csv │ │ │ ├── conf_SCM_naive_bayes.csv │ │ │ ├── conf_SCM_svm.csv │ │ │ ├── pkl │ │ │ ├── FOURIER_knn_acc.pkl │ │ │ ├── FOURIER_knn_fnr.pkl │ │ │ ├── FOURIER_knn_fnr_weighted.pkl │ │ │ ├── FOURIER_knn_fpr.pkl │ │ │ ├── FOURIER_knn_fpr_weighted.pkl │ │ │ ├── FOURIER_mlp_acc.pkl │ │ │ ├── FOURIER_mlp_fnr.pkl │ │ │ ├── FOURIER_mlp_fnr_weighted.pkl │ │ │ ├── FOURIER_mlp_fpr.pkl │ │ │ ├── FOURIER_mlp_fpr_weighted.pkl │ │ │ ├── FOURIER_naive_bayes_acc.pkl │ │ │ ├── FOURIER_naive_bayes_fnr.pkl │ │ │ ├── FOURIER_naive_bayes_fnr_weighted.pkl │ │ │ ├── FOURIER_naive_bayes_fpr.pkl │ │ │ ├── FOURIER_naive_bayes_fpr_weighted.pkl │ │ │ ├── FOURIER_svm_acc.pkl │ │ │ ├── FOURIER_svm_fnr.pkl │ │ │ ├── FOURIER_svm_fnr_weighted.pkl │ │ │ ├── FOURIER_svm_fpr.pkl │ │ │ ├── FOURIER_svm_fpr_weighted.pkl │ │ │ ├── HOS_knn_acc.pkl │ │ │ ├── HOS_knn_fnr.pkl │ │ │ ├── HOS_knn_fnr_weighted.pkl │ │ │ ├── HOS_knn_fpr.pkl │ │ │ ├── HOS_knn_fpr_weighted.pkl │ │ │ ├── HOS_mlp_acc.pkl │ │ │ ├── HOS_mlp_fnr.pkl │ │ │ ├── HOS_mlp_fnr_weighted.pkl │ │ │ ├── HOS_mlp_fpr.pkl │ │ │ ├── HOS_mlp_fpr_weighted.pkl │ │ │ ├── HOS_naive_bayes_acc.pkl │ │ │ ├── HOS_naive_bayes_fnr.pkl │ │ │ ├── HOS_naive_bayes_fnr_weighted.pkl │ │ │ ├── HOS_naive_bayes_fpr.pkl │ │ │ ├── HOS_naive_bayes_fpr_weighted.pkl │ │ │ ├── HOS_svm_acc.pkl │ │ │ ├── HOS_svm_fnr.pkl │ │ │ ├── HOS_svm_fnr_weighted.pkl │ │ │ ├── HOS_svm_fpr.pkl │ │ │ ├── HOS_svm_fpr_weighted.pkl │ │ │ ├── SCM_knn_acc.pkl │ │ │ ├── SCM_knn_fnr.pkl │ │ │ ├── SCM_knn_fnr_weighted.pkl │ │ │ ├── SCM_knn_fpr.pkl │ │ │ ├── SCM_knn_fpr_weighted.pkl │ │ │ ├── SCM_mlp_acc.pkl │ │ │ ├── SCM_mlp_fnr.pkl │ │ │ ├── SCM_mlp_fnr_weighted.pkl │ │ │ ├── SCM_mlp_fpr.pkl │ │ │ ├── SCM_mlp_fpr_weighted.pkl │ │ │ ├── SCM_naive_bayes_acc.pkl │ │ │ ├── SCM_naive_bayes_fnr.pkl │ │ │ ├── SCM_naive_bayes_fnr_weighted.pkl │ │ │ ├── SCM_naive_bayes_fpr.pkl │ │ │ ├── SCM_naive_bayes_fpr_weighted.pkl │ │ │ ├── SCM_svm_acc.pkl │ │ │ ├── SCM_svm_fnr.pkl │ │ │ ├── SCM_svm_fnr_weighted.pkl │ │ │ ├── SCM_svm_fpr.pkl │ │ │ └── SCM_svm_fpr_weighted.pkl │ │ │ ├── results_acc.csv │ │ │ └── results_std.csv │ ├── SENSORC │ │ └── union │ │ │ ├── conf_FOURIER_knn.csv │ │ │ ├── conf_FOURIER_mlp.csv │ │ │ ├── conf_FOURIER_naive_bayes.csv │ │ │ ├── conf_FOURIER_svm.csv │ │ │ ├── conf_HOS_knn.csv │ │ │ ├── conf_HOS_mlp.csv │ │ │ ├── conf_HOS_naive_bayes.csv │ │ │ ├── conf_HOS_svm.csv │ │ │ ├── conf_SCM_knn.csv │ │ │ ├── conf_SCM_mlp.csv │ │ │ ├── conf_SCM_naive_bayes.csv │ │ │ ├── conf_SCM_svm.csv │ │ │ ├── pkl │ │ │ ├── FOURIER_knn_acc.pkl │ │ │ ├── FOURIER_knn_fnr.pkl │ │ │ ├── FOURIER_knn_fnr_weighted.pkl │ │ │ ├── FOURIER_knn_fpr.pkl │ │ │ ├── FOURIER_knn_fpr_weighted.pkl │ │ │ ├── FOURIER_mlp_acc.pkl │ │ │ ├── FOURIER_mlp_fnr.pkl │ │ │ ├── FOURIER_mlp_fnr_weighted.pkl │ │ │ ├── FOURIER_mlp_fpr.pkl │ │ │ ├── FOURIER_mlp_fpr_weighted.pkl │ │ │ ├── FOURIER_naive_bayes_acc.pkl │ │ │ ├── FOURIER_naive_bayes_fnr.pkl │ │ │ ├── FOURIER_naive_bayes_fnr_weighted.pkl │ │ │ ├── FOURIER_naive_bayes_fpr.pkl │ │ │ ├── FOURIER_naive_bayes_fpr_weighted.pkl │ │ │ ├── FOURIER_svm_acc.pkl │ │ │ ├── FOURIER_svm_fnr.pkl │ │ │ ├── FOURIER_svm_fnr_weighted.pkl │ │ │ ├── FOURIER_svm_fpr.pkl │ │ │ ├── FOURIER_svm_fpr_weighted.pkl │ │ │ ├── HOS_knn_acc.pkl │ │ │ ├── HOS_knn_fnr.pkl │ │ │ ├── HOS_knn_fnr_weighted.pkl │ │ │ ├── HOS_knn_fpr.pkl │ │ │ ├── HOS_knn_fpr_weighted.pkl │ │ │ ├── HOS_mlp_acc.pkl │ │ │ ├── HOS_mlp_fnr.pkl │ │ │ ├── HOS_mlp_fnr_weighted.pkl │ │ │ ├── HOS_mlp_fpr.pkl │ │ │ ├── HOS_mlp_fpr_weighted.pkl │ │ │ ├── HOS_naive_bayes_acc.pkl │ │ │ ├── HOS_naive_bayes_fnr.pkl │ │ │ ├── HOS_naive_bayes_fnr_weighted.pkl │ │ │ ├── HOS_naive_bayes_fpr.pkl │ │ │ ├── HOS_naive_bayes_fpr_weighted.pkl │ │ │ ├── HOS_svm_acc.pkl │ │ │ ├── HOS_svm_fnr.pkl │ │ │ ├── HOS_svm_fnr_weighted.pkl │ │ │ ├── HOS_svm_fpr.pkl │ │ │ ├── HOS_svm_fpr_weighted.pkl │ │ │ ├── SCM_knn_acc.pkl │ │ │ ├── SCM_knn_fnr.pkl │ │ │ ├── SCM_knn_fnr_weighted.pkl │ │ │ ├── SCM_knn_fpr.pkl │ │ │ ├── SCM_knn_fpr_weighted.pkl │ │ │ ├── SCM_mlp_acc.pkl │ │ │ ├── SCM_mlp_fnr.pkl │ │ │ ├── SCM_mlp_fnr_weighted.pkl │ │ │ ├── SCM_mlp_fpr.pkl │ │ │ ├── SCM_mlp_fpr_weighted.pkl │ │ │ ├── SCM_naive_bayes_acc.pkl │ │ │ ├── SCM_naive_bayes_fnr.pkl │ │ │ ├── SCM_naive_bayes_fnr_weighted.pkl │ │ │ ├── SCM_naive_bayes_fpr.pkl │ │ │ ├── SCM_naive_bayes_fpr_weighted.pkl │ │ │ ├── SCM_svm_acc.pkl │ │ │ ├── SCM_svm_fnr.pkl │ │ │ ├── SCM_svm_fnr_weighted.pkl │ │ │ ├── SCM_svm_fpr.pkl │ │ │ └── SCM_svm_fpr_weighted.pkl │ │ │ ├── results_acc.csv │ │ │ └── results_std.csv │ └── SENSORV │ │ ├── appended │ │ ├── conf_FOURIER_knn.csv │ │ ├── conf_FOURIER_mlp.csv │ │ ├── conf_FOURIER_naive_bayes.csv │ │ ├── conf_FOURIER_svm.csv │ │ ├── conf_HOS_knn.csv │ │ ├── conf_HOS_mlp.csv │ │ ├── conf_HOS_naive_bayes.csv │ │ ├── conf_HOS_svm.csv │ │ ├── conf_SCM_knn.csv │ │ ├── conf_SCM_mlp.csv │ │ ├── conf_SCM_naive_bayes.csv │ │ ├── conf_SCM_svm.csv │ │ ├── pkl │ │ │ ├── FOURIER_knn_acc.pkl │ │ │ ├── FOURIER_knn_fnr.pkl │ │ │ ├── FOURIER_knn_fnr_weighted.pkl │ │ │ ├── FOURIER_knn_fpr.pkl │ │ │ ├── FOURIER_knn_fpr_weighted.pkl │ │ │ ├── FOURIER_mlp_acc.pkl │ │ │ ├── FOURIER_mlp_fnr.pkl │ │ │ ├── FOURIER_mlp_fnr_weighted.pkl │ │ │ ├── FOURIER_mlp_fpr.pkl │ │ │ ├── FOURIER_mlp_fpr_weighted.pkl │ │ │ ├── FOURIER_naive_bayes_acc.pkl │ │ │ ├── FOURIER_naive_bayes_fnr.pkl │ │ │ ├── FOURIER_naive_bayes_fnr_weighted.pkl │ │ │ ├── FOURIER_naive_bayes_fpr.pkl │ │ │ ├── FOURIER_naive_bayes_fpr_weighted.pkl │ │ │ ├── FOURIER_svm_acc.pkl │ │ │ ├── FOURIER_svm_fnr.pkl │ │ │ ├── FOURIER_svm_fnr_weighted.pkl │ │ │ ├── FOURIER_svm_fpr.pkl │ │ │ ├── FOURIER_svm_fpr_weighted.pkl │ │ │ ├── HOS_knn_acc.pkl │ │ │ ├── HOS_knn_fnr.pkl │ │ │ ├── HOS_knn_fnr_weighted.pkl │ │ │ ├── HOS_knn_fpr.pkl │ │ │ ├── HOS_knn_fpr_weighted.pkl │ │ │ ├── HOS_mlp_acc.pkl │ │ │ ├── HOS_mlp_fnr.pkl │ │ │ ├── HOS_mlp_fnr_weighted.pkl │ │ │ ├── HOS_mlp_fpr.pkl │ │ │ ├── HOS_mlp_fpr_weighted.pkl │ │ │ ├── HOS_naive_bayes_acc.pkl │ │ │ ├── HOS_naive_bayes_fnr.pkl │ │ │ ├── HOS_naive_bayes_fnr_weighted.pkl │ │ │ ├── HOS_naive_bayes_fpr.pkl │ │ │ ├── HOS_naive_bayes_fpr_weighted.pkl │ │ │ ├── HOS_svm_acc.pkl │ │ │ ├── HOS_svm_fnr.pkl │ │ │ ├── HOS_svm_fnr_weighted.pkl │ │ │ ├── HOS_svm_fpr.pkl │ │ │ ├── HOS_svm_fpr_weighted.pkl │ │ │ ├── SCM_knn_acc.pkl │ │ │ ├── SCM_knn_fnr.pkl │ │ │ ├── SCM_knn_fnr_weighted.pkl │ │ │ ├── SCM_knn_fpr.pkl │ │ │ ├── SCM_knn_fpr_weighted.pkl │ │ │ ├── SCM_mlp_acc.pkl │ │ │ ├── SCM_mlp_fnr.pkl │ │ │ ├── SCM_mlp_fnr_weighted.pkl │ │ │ ├── SCM_mlp_fpr.pkl │ │ │ ├── SCM_mlp_fpr_weighted.pkl │ │ │ ├── SCM_naive_bayes_acc.pkl │ │ │ ├── SCM_naive_bayes_fnr.pkl │ │ │ ├── SCM_naive_bayes_fnr_weighted.pkl │ │ │ ├── SCM_naive_bayes_fpr.pkl │ │ │ ├── SCM_naive_bayes_fpr_weighted.pkl │ │ │ ├── SCM_svm_acc.pkl │ │ │ ├── SCM_svm_fnr.pkl │ │ │ ├── SCM_svm_fnr_weighted.pkl │ │ │ ├── SCM_svm_fpr.pkl │ │ │ └── SCM_svm_fpr_weighted.pkl │ │ ├── results_acc.csv │ │ └── results_std.csv │ │ └── union │ │ ├── conf_FOURIER_knn.csv │ │ ├── conf_FOURIER_mlp.csv │ │ ├── conf_FOURIER_naive_bayes.csv │ │ ├── conf_FOURIER_svm.csv │ │ ├── conf_HOS_knn.csv │ │ ├── conf_HOS_mlp.csv │ │ ├── conf_HOS_naive_bayes.csv │ │ ├── conf_HOS_svm.csv │ │ ├── conf_SCM_knn.csv │ │ ├── conf_SCM_mlp.csv │ │ ├── conf_SCM_naive_bayes.csv │ │ ├── conf_SCM_svm.csv │ │ ├── pkl │ │ ├── FOURIER_knn_acc.pkl │ │ ├── FOURIER_knn_fnr.pkl │ │ ├── FOURIER_knn_fnr_weighted.pkl │ │ ├── FOURIER_knn_fpr.pkl │ │ ├── FOURIER_knn_fpr_weighted.pkl │ │ ├── FOURIER_mlp_acc.pkl │ │ ├── FOURIER_mlp_fnr.pkl │ │ ├── FOURIER_mlp_fnr_weighted.pkl │ │ ├── FOURIER_mlp_fpr.pkl │ │ ├── FOURIER_mlp_fpr_weighted.pkl │ │ ├── FOURIER_naive_bayes_acc.pkl │ │ ├── FOURIER_naive_bayes_fnr.pkl │ │ ├── FOURIER_naive_bayes_fnr_weighted.pkl │ │ ├── FOURIER_naive_bayes_fpr.pkl │ │ ├── FOURIER_naive_bayes_fpr_weighted.pkl │ │ ├── FOURIER_svm_acc.pkl │ │ ├── FOURIER_svm_fnr.pkl │ │ ├── FOURIER_svm_fnr_weighted.pkl │ │ ├── FOURIER_svm_fpr.pkl │ │ ├── FOURIER_svm_fpr_weighted.pkl │ │ ├── HOS_knn_acc.pkl │ │ ├── HOS_knn_fnr.pkl │ │ ├── HOS_knn_fnr_weighted.pkl │ │ ├── HOS_knn_fpr.pkl │ │ ├── HOS_knn_fpr_weighted.pkl │ │ ├── HOS_mlp_acc.pkl │ │ ├── HOS_mlp_fnr.pkl │ │ ├── HOS_mlp_fnr_weighted.pkl │ │ ├── HOS_mlp_fpr.pkl │ │ ├── HOS_mlp_fpr_weighted.pkl │ │ ├── HOS_naive_bayes_acc.pkl │ │ ├── HOS_naive_bayes_fnr.pkl │ │ ├── HOS_naive_bayes_fnr_weighted.pkl │ │ ├── HOS_naive_bayes_fpr.pkl │ │ ├── HOS_naive_bayes_fpr_weighted.pkl │ │ ├── HOS_svm_acc.pkl │ │ ├── HOS_svm_fnr.pkl │ │ ├── HOS_svm_fnr_weighted.pkl │ │ ├── HOS_svm_fpr.pkl │ │ ├── HOS_svm_fpr_weighted.pkl │ │ ├── SCM_knn_acc.pkl │ │ ├── SCM_knn_fnr.pkl │ │ ├── SCM_knn_fnr_weighted.pkl │ │ ├── SCM_knn_fpr.pkl │ │ ├── SCM_knn_fpr_weighted.pkl │ │ ├── SCM_mlp_acc.pkl │ │ ├── SCM_mlp_fnr.pkl │ │ ├── SCM_mlp_fnr_weighted.pkl │ │ ├── SCM_mlp_fpr.pkl │ │ ├── SCM_mlp_fpr_weighted.pkl │ │ ├── SCM_naive_bayes_acc.pkl │ │ ├── SCM_naive_bayes_fnr.pkl │ │ ├── SCM_naive_bayes_fnr_weighted.pkl │ │ ├── SCM_naive_bayes_fpr.pkl │ │ ├── SCM_naive_bayes_fpr_weighted.pkl │ │ ├── SCM_svm_acc.pkl │ │ ├── SCM_svm_fnr.pkl │ │ ├── SCM_svm_fnr_weighted.pkl │ │ ├── SCM_svm_fpr.pkl │ │ └── SCM_svm_fpr_weighted.pkl │ │ ├── results_acc.csv │ │ └── results_std.csv │ └── raspberry │ ├── SENSORA │ └── appended │ │ ├── conf_FOURIER_knn.csv │ │ ├── conf_FOURIER_mlp.csv │ │ ├── conf_FOURIER_naive_bayes.csv │ │ ├── conf_FOURIER_svm.csv │ │ ├── conf_HOS_knn.csv │ │ ├── conf_HOS_mlp.csv │ │ ├── conf_HOS_naive_bayes.csv │ │ ├── conf_HOS_svm.csv │ │ ├── conf_SCM_knn.csv │ │ ├── conf_SCM_mlp.csv │ │ ├── conf_SCM_naive_bayes.csv │ │ ├── conf_SCM_svm.csv │ │ ├── pkl │ │ ├── FOURIER_knn_acc.pkl │ │ ├── FOURIER_knn_fnr.pkl │ │ ├── FOURIER_knn_fnr_weighted.pkl │ │ ├── FOURIER_knn_fpr.pkl │ │ ├── FOURIER_knn_fpr_weighted.pkl │ │ ├── FOURIER_mlp_acc.pkl │ │ ├── FOURIER_mlp_fnr.pkl │ │ ├── FOURIER_mlp_fnr_weighted.pkl │ │ ├── FOURIER_mlp_fpr.pkl │ │ ├── FOURIER_mlp_fpr_weighted.pkl │ │ ├── FOURIER_naive_bayes_acc.pkl │ │ ├── FOURIER_naive_bayes_fnr.pkl │ │ ├── FOURIER_naive_bayes_fnr_weighted.pkl │ │ ├── FOURIER_naive_bayes_fpr.pkl │ │ ├── FOURIER_naive_bayes_fpr_weighted.pkl │ │ ├── FOURIER_svm_acc.pkl │ │ ├── FOURIER_svm_fnr.pkl │ │ ├── FOURIER_svm_fnr_weighted.pkl │ │ ├── FOURIER_svm_fpr.pkl │ │ ├── FOURIER_svm_fpr_weighted.pkl │ │ ├── HOS_knn_acc.pkl │ │ ├── HOS_knn_fnr.pkl │ │ ├── HOS_knn_fnr_weighted.pkl │ │ ├── HOS_knn_fpr.pkl │ │ ├── HOS_knn_fpr_weighted.pkl │ │ ├── HOS_mlp_acc.pkl │ │ ├── HOS_mlp_fnr.pkl │ │ ├── HOS_mlp_fnr_weighted.pkl │ │ ├── HOS_mlp_fpr.pkl │ │ ├── HOS_mlp_fpr_weighted.pkl │ │ ├── HOS_naive_bayes_acc.pkl │ │ ├── HOS_naive_bayes_fnr.pkl │ │ ├── HOS_naive_bayes_fnr_weighted.pkl │ │ ├── HOS_naive_bayes_fpr.pkl │ │ ├── HOS_naive_bayes_fpr_weighted.pkl │ │ ├── HOS_svm_acc.pkl │ │ ├── HOS_svm_fnr.pkl │ │ ├── HOS_svm_fnr_weighted.pkl │ │ ├── HOS_svm_fpr.pkl │ │ ├── HOS_svm_fpr_weighted.pkl │ │ ├── SCM_knn_acc.pkl │ │ ├── SCM_knn_fnr.pkl │ │ ├── SCM_knn_fnr_weighted.pkl │ │ ├── SCM_knn_fpr.pkl │ │ ├── SCM_knn_fpr_weighted.pkl │ │ ├── SCM_mlp_acc.pkl │ │ ├── SCM_mlp_fnr.pkl │ │ ├── SCM_mlp_fnr_weighted.pkl │ │ ├── SCM_mlp_fpr.pkl │ │ ├── SCM_mlp_fpr_weighted.pkl │ │ ├── SCM_naive_bayes_acc.pkl │ │ ├── SCM_naive_bayes_fnr.pkl │ │ ├── SCM_naive_bayes_fnr_weighted.pkl │ │ ├── SCM_naive_bayes_fpr.pkl │ │ ├── SCM_naive_bayes_fpr_weighted.pkl │ │ ├── SCM_svm_acc.pkl │ │ ├── SCM_svm_fnr.pkl │ │ ├── SCM_svm_fnr_weighted.pkl │ │ ├── SCM_svm_fpr.pkl │ │ └── SCM_svm_fpr_weighted.pkl │ │ ├── results_acc.csv │ │ └── results_std.csv │ ├── SENSORC │ ├── appended │ │ ├── conf_FOURIER_knn.csv │ │ ├── conf_FOURIER_mlp.csv │ │ ├── conf_FOURIER_naive_bayes.csv │ │ ├── conf_FOURIER_svm.csv │ │ ├── conf_HOS_knn.csv │ │ ├── conf_HOS_mlp.csv │ │ ├── conf_HOS_naive_bayes.csv │ │ ├── conf_HOS_svm.csv │ │ ├── conf_SCM_knn.csv │ │ ├── conf_SCM_mlp.csv │ │ ├── conf_SCM_naive_bayes.csv │ │ ├── conf_SCM_svm.csv │ │ ├── pkl │ │ │ ├── FOURIER_knn_acc.pkl │ │ │ ├── FOURIER_knn_fnr.pkl │ │ │ ├── FOURIER_knn_fnr_weighted.pkl │ │ │ ├── FOURIER_knn_fpr.pkl │ │ │ ├── FOURIER_knn_fpr_weighted.pkl │ │ │ ├── FOURIER_mlp_acc.pkl │ │ │ ├── FOURIER_mlp_fnr.pkl │ │ │ ├── FOURIER_mlp_fnr_weighted.pkl │ │ │ ├── FOURIER_mlp_fpr.pkl │ │ │ ├── FOURIER_mlp_fpr_weighted.pkl │ │ │ ├── FOURIER_naive_bayes_acc.pkl │ │ │ ├── FOURIER_naive_bayes_fnr.pkl │ │ │ ├── FOURIER_naive_bayes_fnr_weighted.pkl │ │ │ ├── FOURIER_naive_bayes_fpr.pkl │ │ │ ├── FOURIER_naive_bayes_fpr_weighted.pkl │ │ │ ├── FOURIER_svm_acc.pkl │ │ │ ├── FOURIER_svm_fnr.pkl │ │ │ ├── FOURIER_svm_fnr_weighted.pkl │ │ │ ├── FOURIER_svm_fpr.pkl │ │ │ ├── FOURIER_svm_fpr_weighted.pkl │ │ │ ├── HOS_knn_acc.pkl │ │ │ ├── HOS_knn_fnr.pkl │ │ │ ├── HOS_knn_fnr_weighted.pkl │ │ │ ├── HOS_knn_fpr.pkl │ │ │ ├── HOS_knn_fpr_weighted.pkl │ │ │ ├── HOS_mlp_acc.pkl │ │ │ ├── HOS_mlp_fnr.pkl │ │ │ ├── HOS_mlp_fnr_weighted.pkl │ │ │ ├── HOS_mlp_fpr.pkl │ │ │ ├── HOS_mlp_fpr_weighted.pkl │ │ │ ├── HOS_naive_bayes_acc.pkl │ │ │ ├── HOS_naive_bayes_fnr.pkl │ │ │ ├── HOS_naive_bayes_fnr_weighted.pkl │ │ │ ├── HOS_naive_bayes_fpr.pkl │ │ │ ├── HOS_naive_bayes_fpr_weighted.pkl │ │ │ ├── HOS_svm_acc.pkl │ │ │ ├── HOS_svm_fnr.pkl │ │ │ ├── HOS_svm_fnr_weighted.pkl │ │ │ ├── HOS_svm_fpr.pkl │ │ │ ├── HOS_svm_fpr_weighted.pkl │ │ │ ├── SCM_knn_acc.pkl │ │ │ ├── SCM_knn_fnr.pkl │ │ │ ├── SCM_knn_fnr_weighted.pkl │ │ │ ├── SCM_knn_fpr.pkl │ │ │ ├── SCM_knn_fpr_weighted.pkl │ │ │ ├── SCM_mlp_acc.pkl │ │ │ ├── SCM_mlp_fnr.pkl │ │ │ ├── SCM_mlp_fnr_weighted.pkl │ │ │ ├── SCM_mlp_fpr.pkl │ │ │ ├── SCM_mlp_fpr_weighted.pkl │ │ │ ├── SCM_naive_bayes_acc.pkl │ │ │ ├── SCM_naive_bayes_fnr.pkl │ │ │ ├── SCM_naive_bayes_fnr_weighted.pkl │ │ │ ├── SCM_naive_bayes_fpr.pkl │ │ │ ├── SCM_naive_bayes_fpr_weighted.pkl │ │ │ ├── SCM_svm_acc.pkl │ │ │ ├── SCM_svm_fnr.pkl │ │ │ ├── SCM_svm_fnr_weighted.pkl │ │ │ ├── SCM_svm_fpr.pkl │ │ │ └── SCM_svm_fpr_weighted.pkl │ │ ├── results_acc.csv │ │ └── results_std.csv │ └── union │ │ ├── conf_FOURIER_knn.csv │ │ ├── conf_FOURIER_mlp.csv │ │ ├── conf_FOURIER_naive_bayes.csv │ │ ├── conf_FOURIER_svm.csv │ │ ├── conf_HOS_knn.csv │ │ ├── conf_HOS_mlp.csv │ │ ├── conf_HOS_naive_bayes.csv │ │ ├── conf_HOS_svm.csv │ │ ├── conf_SCM_knn.csv │ │ ├── conf_SCM_mlp.csv │ │ ├── conf_SCM_naive_bayes.csv │ │ ├── conf_SCM_svm.csv │ │ ├── pkl │ │ ├── FOURIER_knn_acc.pkl │ │ ├── FOURIER_knn_fnr.pkl │ │ ├── FOURIER_knn_fnr_weighted.pkl │ │ ├── FOURIER_knn_fpr.pkl │ │ ├── FOURIER_knn_fpr_weighted.pkl │ │ ├── FOURIER_mlp_acc.pkl │ │ ├── FOURIER_mlp_fnr.pkl │ │ ├── FOURIER_mlp_fnr_weighted.pkl │ │ ├── FOURIER_mlp_fpr.pkl │ │ ├── FOURIER_mlp_fpr_weighted.pkl │ │ ├── FOURIER_naive_bayes_acc.pkl │ │ ├── FOURIER_naive_bayes_fnr.pkl │ │ ├── FOURIER_naive_bayes_fnr_weighted.pkl │ │ ├── FOURIER_naive_bayes_fpr.pkl │ │ ├── FOURIER_naive_bayes_fpr_weighted.pkl │ │ ├── FOURIER_svm_acc.pkl │ │ ├── FOURIER_svm_fnr.pkl │ │ ├── FOURIER_svm_fnr_weighted.pkl │ │ ├── FOURIER_svm_fpr.pkl │ │ ├── FOURIER_svm_fpr_weighted.pkl │ │ ├── HOS_knn_acc.pkl │ │ ├── HOS_knn_fnr.pkl │ │ ├── HOS_knn_fnr_weighted.pkl │ │ ├── HOS_knn_fpr.pkl │ │ ├── HOS_knn_fpr_weighted.pkl │ │ ├── HOS_mlp_acc.pkl │ │ ├── HOS_mlp_fnr.pkl │ │ ├── HOS_mlp_fnr_weighted.pkl │ │ ├── HOS_mlp_fpr.pkl │ │ ├── HOS_mlp_fpr_weighted.pkl │ │ ├── HOS_naive_bayes_acc.pkl │ │ ├── HOS_naive_bayes_fnr.pkl │ │ ├── HOS_naive_bayes_fnr_weighted.pkl │ │ ├── HOS_naive_bayes_fpr.pkl │ │ ├── HOS_naive_bayes_fpr_weighted.pkl │ │ ├── HOS_svm_acc.pkl │ │ ├── HOS_svm_fnr.pkl │ │ ├── HOS_svm_fnr_weighted.pkl │ │ ├── HOS_svm_fpr.pkl │ │ ├── HOS_svm_fpr_weighted.pkl │ │ ├── SCM_knn_acc.pkl │ │ ├── SCM_knn_fnr.pkl │ │ ├── SCM_knn_fnr_weighted.pkl │ │ ├── SCM_knn_fpr.pkl │ │ ├── SCM_knn_fpr_weighted.pkl │ │ ├── SCM_mlp_acc.pkl │ │ ├── SCM_mlp_fnr.pkl │ │ ├── SCM_mlp_fnr_weighted.pkl │ │ ├── SCM_mlp_fpr.pkl │ │ ├── SCM_mlp_fpr_weighted.pkl │ │ ├── SCM_naive_bayes_acc.pkl │ │ ├── SCM_naive_bayes_fnr.pkl │ │ ├── SCM_naive_bayes_fnr_weighted.pkl │ │ ├── SCM_naive_bayes_fpr.pkl │ │ ├── SCM_naive_bayes_fpr_weighted.pkl │ │ ├── SCM_svm_acc.pkl │ │ ├── SCM_svm_fnr.pkl │ │ ├── SCM_svm_fnr_weighted.pkl │ │ ├── SCM_svm_fpr.pkl │ │ └── SCM_svm_fpr_weighted.pkl │ │ ├── results_acc.csv │ │ └── results_std.csv │ └── SENSORV │ ├── appended │ ├── conf_FOURIER_knn.csv │ ├── conf_FOURIER_mlp.csv │ ├── conf_FOURIER_naive_bayes.csv │ ├── conf_FOURIER_svm.csv │ ├── conf_HOS_knn.csv │ ├── conf_HOS_mlp.csv │ ├── conf_HOS_naive_bayes.csv │ ├── conf_HOS_svm.csv │ ├── conf_SCM_knn.csv │ ├── conf_SCM_mlp.csv │ ├── conf_SCM_naive_bayes.csv │ ├── conf_SCM_svm.csv │ ├── pkl │ │ ├── FOURIER_knn_acc.pkl │ │ ├── FOURIER_knn_fnr.pkl │ │ ├── FOURIER_knn_fnr_weighted.pkl │ │ ├── FOURIER_knn_fpr.pkl │ │ ├── FOURIER_knn_fpr_weighted.pkl │ │ ├── FOURIER_mlp_acc.pkl │ │ ├── FOURIER_mlp_fnr.pkl │ │ ├── FOURIER_mlp_fnr_weighted.pkl │ │ ├── FOURIER_mlp_fpr.pkl │ │ ├── FOURIER_mlp_fpr_weighted.pkl │ │ ├── FOURIER_naive_bayes_acc.pkl │ │ ├── FOURIER_naive_bayes_fnr.pkl │ │ ├── FOURIER_naive_bayes_fnr_weighted.pkl │ │ ├── FOURIER_naive_bayes_fpr.pkl │ │ ├── FOURIER_naive_bayes_fpr_weighted.pkl │ │ ├── FOURIER_svm_acc.pkl │ │ ├── FOURIER_svm_fnr.pkl │ │ ├── FOURIER_svm_fnr_weighted.pkl │ │ ├── FOURIER_svm_fpr.pkl │ │ ├── FOURIER_svm_fpr_weighted.pkl │ │ ├── HOS_knn_acc.pkl │ │ ├── HOS_knn_fnr.pkl │ │ ├── HOS_knn_fnr_weighted.pkl │ │ ├── HOS_knn_fpr.pkl │ │ ├── HOS_knn_fpr_weighted.pkl │ │ ├── HOS_mlp_acc.pkl │ │ ├── HOS_mlp_fnr.pkl │ │ ├── HOS_mlp_fnr_weighted.pkl │ │ ├── HOS_mlp_fpr.pkl │ │ ├── HOS_mlp_fpr_weighted.pkl │ │ ├── HOS_naive_bayes_acc.pkl │ │ ├── HOS_naive_bayes_fnr.pkl │ │ ├── HOS_naive_bayes_fnr_weighted.pkl │ │ ├── HOS_naive_bayes_fpr.pkl │ │ ├── HOS_naive_bayes_fpr_weighted.pkl │ │ ├── HOS_svm_acc.pkl │ │ ├── HOS_svm_fnr.pkl │ │ ├── HOS_svm_fnr_weighted.pkl │ │ ├── HOS_svm_fpr.pkl │ │ ├── HOS_svm_fpr_weighted.pkl │ │ ├── SCM_knn_acc.pkl │ │ ├── SCM_knn_fnr.pkl │ │ ├── SCM_knn_fnr_weighted.pkl │ │ ├── SCM_knn_fpr.pkl │ │ ├── SCM_knn_fpr_weighted.pkl │ │ ├── SCM_mlp_acc.pkl │ │ ├── SCM_mlp_fnr.pkl │ │ ├── SCM_mlp_fnr_weighted.pkl │ │ ├── SCM_mlp_fpr.pkl │ │ ├── SCM_mlp_fpr_weighted.pkl │ │ ├── SCM_naive_bayes_acc.pkl │ │ ├── SCM_naive_bayes_fnr.pkl │ │ ├── SCM_naive_bayes_fnr_weighted.pkl │ │ ├── SCM_naive_bayes_fpr.pkl │ │ ├── SCM_naive_bayes_fpr_weighted.pkl │ │ ├── SCM_svm_acc.pkl │ │ ├── SCM_svm_fnr.pkl │ │ ├── SCM_svm_fnr_weighted.pkl │ │ ├── SCM_svm_fpr.pkl │ │ └── SCM_svm_fpr_weighted.pkl │ ├── results_acc.csv │ └── results_std.csv │ └── union │ ├── conf_FOURIER_knn.csv │ ├── conf_FOURIER_mlp.csv │ ├── conf_FOURIER_naive_bayes.csv │ ├── conf_FOURIER_svm.csv │ ├── conf_HOS_knn.csv │ ├── conf_HOS_mlp.csv │ ├── conf_HOS_naive_bayes.csv │ ├── conf_HOS_svm.csv │ ├── conf_SCM_knn.csv │ ├── conf_SCM_mlp.csv │ ├── conf_SCM_naive_bayes.csv │ ├── conf_SCM_svm.csv │ ├── pkl │ ├── FOURIER_knn_acc.pkl │ ├── FOURIER_knn_fnr.pkl │ ├── FOURIER_knn_fnr_weighted.pkl │ ├── FOURIER_knn_fpr.pkl │ ├── FOURIER_knn_fpr_weighted.pkl │ ├── FOURIER_mlp_acc.pkl │ ├── FOURIER_mlp_fnr.pkl │ ├── FOURIER_mlp_fnr_weighted.pkl │ ├── FOURIER_mlp_fpr.pkl │ ├── FOURIER_mlp_fpr_weighted.pkl │ ├── FOURIER_naive_bayes_acc.pkl │ ├── FOURIER_naive_bayes_fnr.pkl │ ├── FOURIER_naive_bayes_fnr_weighted.pkl │ ├── FOURIER_naive_bayes_fpr.pkl │ ├── FOURIER_naive_bayes_fpr_weighted.pkl │ ├── FOURIER_svm_acc.pkl │ ├── FOURIER_svm_fnr.pkl │ ├── FOURIER_svm_fnr_weighted.pkl │ ├── FOURIER_svm_fpr.pkl │ ├── FOURIER_svm_fpr_weighted.pkl │ ├── HOS_knn_acc.pkl │ ├── HOS_knn_fnr.pkl │ ├── HOS_knn_fnr_weighted.pkl │ ├── HOS_knn_fpr.pkl │ ├── HOS_knn_fpr_weighted.pkl │ ├── HOS_mlp_acc.pkl │ ├── HOS_mlp_fnr.pkl │ ├── HOS_mlp_fnr_weighted.pkl │ ├── HOS_mlp_fpr.pkl │ ├── HOS_mlp_fpr_weighted.pkl │ ├── HOS_naive_bayes_acc.pkl │ ├── HOS_naive_bayes_fnr.pkl │ ├── HOS_naive_bayes_fnr_weighted.pkl │ ├── HOS_naive_bayes_fpr.pkl │ ├── HOS_naive_bayes_fpr_weighted.pkl │ ├── HOS_svm_acc.pkl │ ├── HOS_svm_fnr.pkl │ ├── HOS_svm_fnr_weighted.pkl │ ├── HOS_svm_fpr.pkl │ ├── HOS_svm_fpr_weighted.pkl │ ├── SCM_knn_acc.pkl │ ├── SCM_knn_fnr.pkl │ ├── SCM_knn_fnr_weighted.pkl │ ├── SCM_knn_fpr.pkl │ ├── SCM_knn_fpr_weighted.pkl │ ├── SCM_mlp_acc.pkl │ ├── SCM_mlp_fnr.pkl │ ├── SCM_mlp_fnr_weighted.pkl │ ├── SCM_mlp_fpr.pkl │ ├── SCM_mlp_fpr_weighted.pkl │ ├── SCM_naive_bayes_acc.pkl │ ├── SCM_naive_bayes_fnr.pkl │ ├── SCM_naive_bayes_fnr_weighted.pkl │ ├── SCM_naive_bayes_fpr.pkl │ ├── SCM_naive_bayes_fpr_weighted.pkl │ ├── SCM_svm_acc.pkl │ ├── SCM_svm_fnr.pkl │ ├── SCM_svm_fnr_weighted.pkl │ ├── SCM_svm_fpr.pkl │ └── SCM_svm_fpr_weighted.pkl │ ├── results_acc.csv │ └── results_std.csv └── src ├── Pipfile ├── Pipfile.lock ├── README.md ├── __init__.py ├── config.py ├── dataset_concat.py ├── example-01.py ├── requirements.txt ├── run.sh ├── run_experiment_appended.py ├── run_experiment_union.py ├── save_pipeline_sensora_fourier.py ├── save_pipeline_sensora_hos.py ├── save_pipeline_sensora_scm.py ├── save_pipeline_sensorc_fourier.py ├── save_pipeline_sensorc_hos.py ├── save_pipeline_sensorc_scm.py ├── save_pipeline_sensorv_fourier.py ├── save_pipeline_sensorv_hos.py ├── save_pipeline_sensorv_scm.py ├── save_selector_and_scaler.py ├── test_clf_appended.py ├── test_clf_union.py ├── train_clf.py ├── transforms.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | data/raw/ 2 | *.zip -------------------------------------------------------------------------------- /Dissertation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/Dissertation.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/README.md -------------------------------------------------------------------------------- /paper-01-A_reliable_approach/Codes/MATLAB/Feature Extraction/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-01-A_reliable_approach/Codes/MATLAB/Feature Extraction/.DS_Store -------------------------------------------------------------------------------- /paper-01-A_reliable_approach/Codes/MATLAB/Feature Extraction/featureExtraction_fft.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-01-A_reliable_approach/Codes/MATLAB/Feature Extraction/featureExtraction_fft.m -------------------------------------------------------------------------------- /paper-01-A_reliable_approach/Codes/MATLAB/Feature Extraction/featureExtraction_goertzel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-01-A_reliable_approach/Codes/MATLAB/Feature Extraction/featureExtraction_goertzel.m -------------------------------------------------------------------------------- /paper-01-A_reliable_approach/Codes/MATLAB/Feature Extraction/featureExtraction_hos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-01-A_reliable_approach/Codes/MATLAB/Feature Extraction/featureExtraction_hos.m -------------------------------------------------------------------------------- /paper-01-A_reliable_approach/Codes/MATLAB/Feature Extraction/featureExtraction_scm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-01-A_reliable_approach/Codes/MATLAB/Feature Extraction/featureExtraction_scm.m -------------------------------------------------------------------------------- /paper-01-A_reliable_approach/Codes/MATLAB/Feature Extraction/scm.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-01-A_reliable_approach/Codes/MATLAB/Feature Extraction/scm.m -------------------------------------------------------------------------------- /paper-01-A_reliable_approach/Codes/MATLAB/Feature Extraction/scmprops.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-01-A_reliable_approach/Codes/MATLAB/Feature Extraction/scmprops.m -------------------------------------------------------------------------------- /paper-01-A_reliable_approach/Codes/MATLAB/filters/filter_movAvg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-01-A_reliable_approach/Codes/MATLAB/filters/filter_movAvg.m -------------------------------------------------------------------------------- /paper-01-A_reliable_approach/Codes/MATLAB/filters/filter_signal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-01-A_reliable_approach/Codes/MATLAB/filters/filter_signal.m -------------------------------------------------------------------------------- /paper-01-A_reliable_approach/datasets/v000_SCIG_SC_SENSORC_FOURIER_010-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-01-A_reliable_approach/datasets/v000_SCIG_SC_SENSORC_FOURIER_010-info.txt -------------------------------------------------------------------------------- /paper-01-A_reliable_approach/datasets/v000_SCIG_SC_SENSORC_FOURIER_010.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-01-A_reliable_approach/datasets/v000_SCIG_SC_SENSORC_FOURIER_010.csv -------------------------------------------------------------------------------- /paper-01-A_reliable_approach/datasets/v000_SCIG_SC_SENSORC_GOERTZEL_001-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-01-A_reliable_approach/datasets/v000_SCIG_SC_SENSORC_GOERTZEL_001-info.txt -------------------------------------------------------------------------------- /paper-01-A_reliable_approach/datasets/v000_SCIG_SC_SENSORC_GOERTZEL_001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-01-A_reliable_approach/datasets/v000_SCIG_SC_SENSORC_GOERTZEL_001.csv -------------------------------------------------------------------------------- /paper-01-A_reliable_approach/datasets/v000_SCIG_SC_SENSORC_HOS_001-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-01-A_reliable_approach/datasets/v000_SCIG_SC_SENSORC_HOS_001-info.txt -------------------------------------------------------------------------------- /paper-01-A_reliable_approach/datasets/v000_SCIG_SC_SENSORC_HOS_001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-01-A_reliable_approach/datasets/v000_SCIG_SC_SENSORC_HOS_001.csv -------------------------------------------------------------------------------- /paper-01-A_reliable_approach/datasets/v000_SCIG_SC_SENSORC_SCM_001-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-01-A_reliable_approach/datasets/v000_SCIG_SC_SENSORC_SCM_001-info.txt -------------------------------------------------------------------------------- /paper-01-A_reliable_approach/datasets/v000_SCIG_SC_SENSORC_SCM_001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-01-A_reliable_approach/datasets/v000_SCIG_SC_SENSORC_SCM_001.csv -------------------------------------------------------------------------------- /paper-01-A_reliable_approach/notebooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-01-A_reliable_approach/notebooks/README.md -------------------------------------------------------------------------------- /paper-01-A_reliable_approach/workspace-vscode.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-01-A_reliable_approach/workspace-vscode.code-workspace -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/.gitignore -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/README.md -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/data/csv/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/data/csv/README.MD -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/data/csv/classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/data/csv/classes.txt -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/data/csv/figs/bench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/data/csv/figs/bench.png -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/data/csv/figs/diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/data/csv/figs/diagram.pdf -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/data/csv/figs/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/data/csv/figs/diagram.png -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/data/csv/v000_SCIG_SC_SENSORA_FOURIER.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/data/csv/v000_SCIG_SC_SENSORA_FOURIER.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/data/csv/v000_SCIG_SC_SENSORA_HOS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/data/csv/v000_SCIG_SC_SENSORA_HOS.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/data/csv/v000_SCIG_SC_SENSORA_SCM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/data/csv/v000_SCIG_SC_SENSORA_SCM.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/data/csv/v000_SCIG_SC_SENSORC_FOURIER.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/data/csv/v000_SCIG_SC_SENSORC_FOURIER.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/data/csv/v000_SCIG_SC_SENSORC_HOS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/data/csv/v000_SCIG_SC_SENSORC_HOS.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/data/csv/v000_SCIG_SC_SENSORC_SCM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/data/csv/v000_SCIG_SC_SENSORC_SCM.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/data/csv/v000_SCIG_SC_SENSORV_FOURIER.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/data/csv/v000_SCIG_SC_SENSORV_FOURIER.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/data/csv/v000_SCIG_SC_SENSORV_HOS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/data/csv/v000_SCIG_SC_SENSORV_HOS.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/data/csv/v000_SCIG_SC_SENSORV_SCM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/data/csv/v000_SCIG_SC_SENSORV_SCM.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_FOURIER_knn_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_FOURIER_knn_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_FOURIER_mlp_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_FOURIER_mlp_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_FOURIER_svm_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_FOURIER_svm_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_HOS_knn_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_HOS_knn_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_HOS_mlp_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_HOS_mlp_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_HOS_naive_bayes_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_HOS_naive_bayes_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_HOS_svm_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_HOS_svm_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_SCM_knn_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_SCM_knn_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_SCM_mlp_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_SCM_mlp_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_SCM_naive_bayes_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_SCM_naive_bayes_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_SCM_svm_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORA_SCM_svm_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_FOURIER_knn_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_FOURIER_knn_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_FOURIER_knn_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_FOURIER_knn_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_FOURIER_mlp_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_FOURIER_mlp_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_FOURIER_mlp_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_FOURIER_mlp_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_FOURIER_naive_bayes_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_FOURIER_naive_bayes_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_FOURIER_svm_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_FOURIER_svm_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_FOURIER_svm_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_FOURIER_svm_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_HOS_knn_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_HOS_knn_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_HOS_knn_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_HOS_knn_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_HOS_mlp_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_HOS_mlp_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_HOS_mlp_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_HOS_mlp_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_HOS_naive_bayes_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_HOS_naive_bayes_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_HOS_naive_bayes_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_HOS_naive_bayes_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_HOS_svm_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_HOS_svm_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_HOS_svm_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_HOS_svm_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_SCM_knn_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_SCM_knn_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_SCM_knn_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_SCM_knn_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_SCM_mlp_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_SCM_mlp_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_SCM_mlp_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_SCM_mlp_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_SCM_naive_bayes_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_SCM_naive_bayes_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_SCM_naive_bayes_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_SCM_naive_bayes_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_SCM_svm_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_SCM_svm_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_SCM_svm_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORC_SCM_svm_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_FOURIER_knn_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_FOURIER_knn_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_FOURIER_knn_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_FOURIER_knn_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_FOURIER_mlp_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_FOURIER_mlp_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_FOURIER_mlp_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_FOURIER_mlp_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_FOURIER_naive_bayes_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_FOURIER_naive_bayes_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_FOURIER_svm_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_FOURIER_svm_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_FOURIER_svm_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_FOURIER_svm_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_HOS_knn_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_HOS_knn_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_HOS_knn_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_HOS_knn_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_HOS_mlp_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_HOS_mlp_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_HOS_mlp_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_HOS_mlp_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_HOS_naive_bayes_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_HOS_naive_bayes_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_HOS_naive_bayes_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_HOS_naive_bayes_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_HOS_svm_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_HOS_svm_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_HOS_svm_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_HOS_svm_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_SCM_knn_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_SCM_knn_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_SCM_knn_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_SCM_knn_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_SCM_mlp_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_SCM_mlp_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_SCM_mlp_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_SCM_mlp_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_SCM_naive_bayes_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_SCM_naive_bayes_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_SCM_naive_bayes_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_SCM_naive_bayes_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_SCM_svm_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_SCM_svm_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_SCM_svm_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/classifier/clf_SENSORV_SCM_svm_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORA_FOURIER.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORA_FOURIER.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORA_FOURIER_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORA_FOURIER_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORA_HOS_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORA_HOS_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORA_SCM_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORA_SCM_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORC_FOURIER_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORC_FOURIER_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORC_FOURIER_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORC_FOURIER_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORC_HOS_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORC_HOS_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORC_HOS_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORC_HOS_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORC_SCM_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORC_SCM_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORC_SCM_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORC_SCM_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORV_FOURIER_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORV_FOURIER_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORV_FOURIER_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORV_FOURIER_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORV_HOS_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORV_HOS_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORV_HOS_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORV_HOS_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORV_SCM_appended.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORV_SCM_appended.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORV_SCM_union.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/pipeline/tf_pipeline_SENSORV_SCM_union.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORA_FOURIER_SF1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORA_FOURIER_SF1.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORA_FOURIER_SF2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORA_FOURIER_SF2.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORA_HOS_SF1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORA_HOS_SF1.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORA_HOS_SF2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORA_HOS_SF2.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORA_SCM_SF1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORA_SCM_SF1.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORA_SCM_SF2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORA_SCM_SF2.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_FOURIER_SF1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_FOURIER_SF1.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_FOURIER_SF2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_FOURIER_SF2.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_FOURIER_SF3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_FOURIER_SF3.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_FOURIER_SF4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_FOURIER_SF4.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_HOS_SF1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_HOS_SF1.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_HOS_SF2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_HOS_SF2.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_HOS_SF3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_HOS_SF3.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_HOS_SF4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_HOS_SF4.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_SCM_SF1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_SCM_SF1.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_SCM_SF2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_SCM_SF2.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_SCM_SF3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_SCM_SF3.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_SCM_SF4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORC_SCM_SF4.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_FOURIER_SF1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_FOURIER_SF1.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_FOURIER_SF2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_FOURIER_SF2.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_FOURIER_SF3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_FOURIER_SF3.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_FOURIER_SF4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_FOURIER_SF4.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_HOS_SF1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_HOS_SF1.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_HOS_SF2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_HOS_SF2.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_HOS_SF3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_HOS_SF3.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_HOS_SF4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_HOS_SF4.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_SCM_SF1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_SCM_SF1.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_SCM_SF2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_SCM_SF2.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_SCM_SF3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_SCM_SF3.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_SCM_SF4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/scaler/tf_scaler_SENSORV_SCM_SF4.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORA_FOURIER_SF1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORA_FOURIER_SF1.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORA_FOURIER_SF2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORA_FOURIER_SF2.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORA_HOS_SF1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORA_HOS_SF1.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORA_HOS_SF2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORA_HOS_SF2.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORA_SCM_SF1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORA_SCM_SF1.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORA_SCM_SF2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORA_SCM_SF2.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_FOURIER_SF1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_FOURIER_SF1.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_FOURIER_SF2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_FOURIER_SF2.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_FOURIER_SF3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_FOURIER_SF3.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_FOURIER_SF4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_FOURIER_SF4.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_HOS_SF1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_HOS_SF1.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_HOS_SF2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_HOS_SF2.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_HOS_SF3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_HOS_SF3.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_HOS_SF4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_HOS_SF4.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_SCM_SF1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_SCM_SF1.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_SCM_SF2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_SCM_SF2.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_SCM_SF3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_SCM_SF3.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_SCM_SF4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORC_SCM_SF4.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_FOURIER_SF1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_FOURIER_SF1.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_FOURIER_SF2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_FOURIER_SF2.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_FOURIER_SF3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_FOURIER_SF3.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_FOURIER_SF4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_FOURIER_SF4.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_HOS_SF1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_HOS_SF1.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_HOS_SF2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_HOS_SF2.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_HOS_SF3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_HOS_SF3.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_HOS_SF4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_HOS_SF4.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_SCM_SF1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_SCM_SF1.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_SCM_SF2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_SCM_SF2.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_SCM_SF3.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_SCM_SF3.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_SCM_SF4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/models/selector/tf_selector_SENSORV_SCM_SF4.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/notebooks/notebook-01-data-inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/notebooks/notebook-01-data-inference.ipynb -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/notebooks/notebook-02-statistical_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/notebooks/notebook-02-statistical_test.ipynb -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_FOURIER_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_FOURIER_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_FOURIER_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_FOURIER_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_FOURIER_naive_bayes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_FOURIER_naive_bayes.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_FOURIER_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_FOURIER_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_HOS_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_HOS_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_HOS_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_HOS_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_HOS_naive_bayes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_HOS_naive_bayes.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_HOS_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_HOS_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_SCM_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_SCM_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_SCM_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_SCM_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_SCM_naive_bayes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_SCM_naive_bayes.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_SCM_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/conf_SCM_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_knn_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_knn_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_knn_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_knn_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_knn_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_knn_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_knn_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_knn_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_knn_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_knn_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_mlp_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_mlp_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_mlp_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_mlp_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_mlp_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_mlp_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_mlp_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_mlp_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_mlp_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_mlp_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_naive_bayes_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_naive_bayes_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_naive_bayes_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_naive_bayes_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_naive_bayes_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_naive_bayes_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_svm_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_svm_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_svm_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_svm_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_svm_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_svm_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_svm_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_svm_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_svm_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/FOURIER_svm_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_knn_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_knn_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_knn_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_knn_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_knn_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_knn_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_knn_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_knn_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_knn_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_knn_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_mlp_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_mlp_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_mlp_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_mlp_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_mlp_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_mlp_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_mlp_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_mlp_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_mlp_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_mlp_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_naive_bayes_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_naive_bayes_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_naive_bayes_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_naive_bayes_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_naive_bayes_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_naive_bayes_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_svm_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_svm_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_svm_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_svm_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_svm_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_svm_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_svm_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_svm_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_svm_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/HOS_svm_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_knn_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_knn_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_knn_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_knn_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_knn_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_knn_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_knn_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_knn_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_knn_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_knn_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_mlp_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_mlp_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_mlp_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_mlp_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_mlp_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_mlp_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_mlp_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_mlp_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_mlp_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_mlp_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_naive_bayes_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_naive_bayes_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_naive_bayes_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_naive_bayes_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_naive_bayes_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_naive_bayes_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_svm_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_svm_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_svm_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_svm_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_svm_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_svm_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_svm_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_svm_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_svm_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/pkl/SCM_svm_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/results_acc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/results_acc.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORA/appended/results_std.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORA/appended/results_std.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_FOURIER_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_FOURIER_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_FOURIER_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_FOURIER_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_FOURIER_naive_bayes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_FOURIER_naive_bayes.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_FOURIER_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_FOURIER_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_HOS_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_HOS_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_HOS_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_HOS_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_HOS_naive_bayes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_HOS_naive_bayes.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_HOS_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_HOS_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_SCM_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_SCM_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_SCM_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_SCM_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_SCM_naive_bayes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_SCM_naive_bayes.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_SCM_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/conf_SCM_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_knn_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_knn_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_knn_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_knn_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_knn_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_knn_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_knn_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_knn_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_knn_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_knn_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_mlp_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_mlp_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_mlp_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_mlp_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_mlp_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_mlp_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_mlp_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_mlp_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_mlp_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_mlp_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_naive_bayes_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_naive_bayes_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_naive_bayes_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_naive_bayes_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_naive_bayes_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_naive_bayes_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_svm_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_svm_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_svm_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_svm_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_svm_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_svm_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_svm_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_svm_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_svm_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/FOURIER_svm_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_knn_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_knn_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_knn_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_knn_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_knn_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_knn_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_knn_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_knn_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_knn_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_knn_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_mlp_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_mlp_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_mlp_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_mlp_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_mlp_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_mlp_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_mlp_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_mlp_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_mlp_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_mlp_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_naive_bayes_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_naive_bayes_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_naive_bayes_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_naive_bayes_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_naive_bayes_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_naive_bayes_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_svm_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_svm_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_svm_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_svm_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_svm_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_svm_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_svm_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_svm_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_svm_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/HOS_svm_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_knn_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_knn_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_knn_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_knn_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_knn_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_knn_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_knn_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_knn_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_knn_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_knn_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_mlp_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_mlp_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_mlp_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_mlp_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_mlp_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_mlp_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_mlp_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_mlp_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_mlp_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_mlp_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_naive_bayes_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_naive_bayes_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_naive_bayes_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_naive_bayes_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_naive_bayes_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_naive_bayes_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_svm_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_svm_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_svm_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_svm_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_svm_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_svm_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_svm_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_svm_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_svm_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/pkl/SCM_svm_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/results_acc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/results_acc.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/appended/results_std.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/appended/results_std.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_FOURIER_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_FOURIER_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_FOURIER_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_FOURIER_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_FOURIER_naive_bayes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_FOURIER_naive_bayes.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_FOURIER_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_FOURIER_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_HOS_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_HOS_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_HOS_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_HOS_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_HOS_naive_bayes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_HOS_naive_bayes.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_HOS_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_HOS_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_SCM_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_SCM_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_SCM_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_SCM_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_SCM_naive_bayes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_SCM_naive_bayes.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_SCM_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/conf_SCM_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_knn_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_knn_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_knn_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_knn_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_knn_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_knn_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_knn_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_knn_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_knn_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_knn_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_mlp_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_mlp_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_mlp_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_mlp_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_mlp_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_mlp_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_mlp_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_mlp_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_mlp_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_mlp_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_naive_bayes_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_naive_bayes_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_naive_bayes_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_naive_bayes_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_naive_bayes_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_naive_bayes_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_svm_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_svm_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_svm_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_svm_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_svm_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_svm_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_svm_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_svm_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_svm_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/FOURIER_svm_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_knn_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_knn_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_knn_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_knn_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_knn_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_knn_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_knn_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_knn_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_knn_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_knn_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_mlp_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_mlp_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_mlp_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_mlp_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_mlp_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_mlp_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_mlp_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_mlp_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_mlp_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_mlp_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_naive_bayes_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_naive_bayes_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_naive_bayes_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_naive_bayes_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_naive_bayes_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_naive_bayes_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_naive_bayes_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_naive_bayes_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_naive_bayes_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_naive_bayes_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_svm_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_svm_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_svm_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_svm_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_svm_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_svm_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_svm_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_svm_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_svm_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/HOS_svm_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_knn_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_knn_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_knn_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_knn_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_knn_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_knn_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_knn_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_knn_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_knn_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_knn_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_mlp_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_mlp_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_mlp_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_mlp_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_mlp_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_mlp_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_mlp_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_mlp_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_mlp_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_mlp_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_naive_bayes_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_naive_bayes_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_naive_bayes_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_naive_bayes_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_naive_bayes_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_naive_bayes_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_naive_bayes_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_naive_bayes_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_naive_bayes_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_naive_bayes_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_svm_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_svm_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_svm_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_svm_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_svm_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_svm_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_svm_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_svm_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_svm_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/pkl/SCM_svm_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/results_acc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/results_acc.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORC/union/results_std.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORC/union/results_std.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_FOURIER_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_FOURIER_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_FOURIER_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_FOURIER_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_FOURIER_naive_bayes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_FOURIER_naive_bayes.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_FOURIER_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_FOURIER_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_HOS_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_HOS_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_HOS_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_HOS_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_HOS_naive_bayes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_HOS_naive_bayes.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_HOS_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_HOS_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_SCM_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_SCM_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_SCM_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_SCM_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_SCM_naive_bayes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_SCM_naive_bayes.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_SCM_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/conf_SCM_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_knn_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_knn_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_knn_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_knn_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_knn_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_knn_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_knn_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_knn_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_knn_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_knn_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_mlp_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_mlp_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_mlp_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_mlp_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_mlp_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_mlp_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_mlp_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_mlp_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_mlp_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_mlp_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_naive_bayes_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_naive_bayes_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_naive_bayes_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_naive_bayes_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_naive_bayes_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_naive_bayes_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_svm_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_svm_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_svm_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_svm_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_svm_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_svm_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_svm_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_svm_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_svm_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/FOURIER_svm_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_knn_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_knn_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_knn_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_knn_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_knn_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_knn_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_knn_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_knn_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_knn_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_knn_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_mlp_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_mlp_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_mlp_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_mlp_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_mlp_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_mlp_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_mlp_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_mlp_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_mlp_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_mlp_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_naive_bayes_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_naive_bayes_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_naive_bayes_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_naive_bayes_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_naive_bayes_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_naive_bayes_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_svm_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_svm_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_svm_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_svm_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_svm_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_svm_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_svm_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_svm_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_svm_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/HOS_svm_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_knn_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_knn_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_knn_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_knn_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_knn_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_knn_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_knn_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_knn_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_knn_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_knn_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_mlp_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_mlp_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_mlp_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_mlp_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_mlp_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_mlp_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_mlp_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_mlp_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_mlp_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_mlp_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_naive_bayes_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_naive_bayes_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_naive_bayes_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_naive_bayes_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_naive_bayes_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_naive_bayes_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_svm_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_svm_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_svm_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_svm_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_svm_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_svm_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_svm_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_svm_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_svm_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/pkl/SCM_svm_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/results_acc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/results_acc.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/appended/results_std.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/appended/results_std.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_FOURIER_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_FOURIER_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_FOURIER_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_FOURIER_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_FOURIER_naive_bayes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_FOURIER_naive_bayes.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_FOURIER_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_FOURIER_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_HOS_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_HOS_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_HOS_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_HOS_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_HOS_naive_bayes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_HOS_naive_bayes.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_HOS_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_HOS_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_SCM_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_SCM_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_SCM_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_SCM_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_SCM_naive_bayes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_SCM_naive_bayes.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_SCM_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/conf_SCM_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_knn_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_knn_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_knn_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_knn_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_knn_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_knn_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_knn_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_knn_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_knn_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_knn_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_mlp_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_mlp_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_mlp_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_mlp_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_mlp_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_mlp_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_mlp_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_mlp_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_mlp_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_mlp_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_naive_bayes_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_naive_bayes_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_naive_bayes_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_naive_bayes_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_naive_bayes_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_naive_bayes_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_svm_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_svm_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_svm_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_svm_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_svm_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_svm_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_svm_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_svm_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_svm_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/FOURIER_svm_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_knn_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_knn_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_knn_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_knn_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_knn_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_knn_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_knn_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_knn_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_knn_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_knn_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_mlp_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_mlp_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_mlp_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_mlp_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_mlp_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_mlp_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_mlp_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_mlp_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_mlp_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_mlp_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_naive_bayes_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_naive_bayes_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_naive_bayes_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_naive_bayes_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_naive_bayes_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_naive_bayes_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_naive_bayes_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_naive_bayes_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_naive_bayes_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_naive_bayes_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_svm_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_svm_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_svm_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_svm_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_svm_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_svm_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_svm_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_svm_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_svm_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/HOS_svm_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_knn_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_knn_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_knn_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_knn_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_knn_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_knn_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_knn_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_knn_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_knn_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_knn_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_mlp_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_mlp_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_mlp_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_mlp_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_mlp_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_mlp_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_mlp_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_mlp_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_mlp_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_mlp_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_naive_bayes_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_naive_bayes_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_naive_bayes_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_naive_bayes_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_naive_bayes_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_naive_bayes_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_naive_bayes_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_naive_bayes_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_naive_bayes_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_naive_bayes_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_svm_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_svm_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_svm_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_svm_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_svm_fnr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_svm_fnr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_svm_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_svm_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_svm_fpr_weighted.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/pkl/SCM_svm_fpr_weighted.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/results_acc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/results_acc.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/SENSORV/union/results_std.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/SENSORV/union/results_std.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORA/appended/conf_HOS_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORA/appended/conf_HOS_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORA/appended/conf_HOS_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORA/appended/conf_HOS_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORA/appended/conf_HOS_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORA/appended/conf_HOS_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORA/appended/conf_SCM_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORA/appended/conf_SCM_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORA/appended/conf_SCM_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORA/appended/conf_SCM_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORA/appended/conf_SCM_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORA/appended/conf_SCM_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORA/appended/results_acc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORA/appended/results_acc.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORA/appended/results_std.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORA/appended/results_std.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/conf_FOURIER_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/conf_FOURIER_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/conf_FOURIER_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/conf_FOURIER_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/conf_FOURIER_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/conf_FOURIER_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/conf_HOS_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/conf_HOS_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/conf_HOS_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/conf_HOS_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/conf_HOS_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/conf_HOS_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/conf_SCM_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/conf_SCM_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/conf_SCM_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/conf_SCM_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/conf_SCM_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/conf_SCM_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/pkl/HOS_knn_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/pkl/HOS_knn_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/pkl/HOS_knn_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/pkl/HOS_knn_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/pkl/HOS_knn_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/pkl/HOS_knn_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/pkl/HOS_mlp_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/pkl/HOS_mlp_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/pkl/HOS_mlp_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/pkl/HOS_mlp_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/pkl/HOS_mlp_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/pkl/HOS_mlp_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/pkl/HOS_svm_acc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/pkl/HOS_svm_acc.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/pkl/HOS_svm_fnr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/pkl/HOS_svm_fnr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/pkl/HOS_svm_fpr.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/pkl/HOS_svm_fpr.pkl -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/results_acc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/results_acc.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/results_std.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORC/union/results_std.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/appended/results_acc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/appended/results_acc.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/appended/results_std.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/appended/results_std.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/union/conf_HOS_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/union/conf_HOS_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/union/conf_HOS_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/union/conf_HOS_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/union/conf_HOS_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/union/conf_HOS_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/union/conf_SCM_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/union/conf_SCM_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/union/conf_SCM_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/union/conf_SCM_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/union/conf_SCM_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/union/conf_SCM_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/union/results_acc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/union/results_acc.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/union/results_std.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/jettson/SENSORV/union/results_std.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORC/union/conf_HOS_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORC/union/conf_HOS_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORC/union/conf_HOS_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORC/union/conf_HOS_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORC/union/conf_HOS_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORC/union/conf_HOS_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORC/union/conf_SCM_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORC/union/conf_SCM_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORC/union/conf_SCM_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORC/union/conf_SCM_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORC/union/conf_SCM_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORC/union/conf_SCM_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORC/union/results_acc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORC/union/results_acc.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORC/union/results_std.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORC/union/results_std.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORV/union/conf_HOS_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORV/union/conf_HOS_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORV/union/conf_HOS_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORV/union/conf_HOS_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORV/union/conf_HOS_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORV/union/conf_HOS_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORV/union/conf_SCM_knn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORV/union/conf_SCM_knn.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORV/union/conf_SCM_mlp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORV/union/conf_SCM_mlp.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORV/union/conf_SCM_svm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORV/union/conf_SCM_svm.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORV/union/results_acc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORV/union/results_acc.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORV/union/results_std.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/results/embedded/raspberry/SENSORV/union/results_std.csv -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/Pipfile -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/Pipfile.lock -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/README.md -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/config.py -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/dataset_concat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/dataset_concat.py -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/example-01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/example-01.py -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/requirements.txt -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/run.sh -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/run_experiment_appended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/run_experiment_appended.py -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/run_experiment_union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/run_experiment_union.py -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/save_pipeline_sensora_fourier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/save_pipeline_sensora_fourier.py -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/save_pipeline_sensora_hos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/save_pipeline_sensora_hos.py -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/save_pipeline_sensora_scm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/save_pipeline_sensora_scm.py -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/save_pipeline_sensorc_fourier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/save_pipeline_sensorc_fourier.py -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/save_pipeline_sensorc_hos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/save_pipeline_sensorc_hos.py -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/save_pipeline_sensorc_scm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/save_pipeline_sensorc_scm.py -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/save_pipeline_sensorv_fourier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/save_pipeline_sensorv_fourier.py -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/save_pipeline_sensorv_hos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/save_pipeline_sensorv_hos.py -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/save_pipeline_sensorv_scm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/save_pipeline_sensorv_scm.py -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/save_selector_and_scaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/save_selector_and_scaler.py -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/test_clf_appended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/test_clf_appended.py -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/test_clf_union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/test_clf_union.py -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/train_clf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/train_clf.py -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/transforms.py -------------------------------------------------------------------------------- /paper-02-A_multi-sensor_architecture/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lapisco/Wind_turbine_failure_prediction/HEAD/paper-02-A_multi-sensor_architecture/src/utils.py --------------------------------------------------------------------------------