├── Data ├── Dataset └── data │ ├── ar1.csv │ ├── ar3.csv │ ├── ar4.csv │ ├── ar5.csv │ ├── ar6.csv │ ├── cm1.csv │ ├── corr.png │ ├── kc1.csv │ ├── kc2.csv │ ├── mc1.csv │ ├── mc2.csv │ ├── pc1.csv │ ├── pc2.csv │ ├── pc3.csv │ └── pc4.csv ├── README.md ├── logistic_regression_ensembler.py ├── models.py ├── performance_check.py └── preprocessingfile.py /Data/Dataset: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Data/data/ar1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/Data/data/ar1.csv -------------------------------------------------------------------------------- /Data/data/ar3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/Data/data/ar3.csv -------------------------------------------------------------------------------- /Data/data/ar4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/Data/data/ar4.csv -------------------------------------------------------------------------------- /Data/data/ar5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/Data/data/ar5.csv -------------------------------------------------------------------------------- /Data/data/ar6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/Data/data/ar6.csv -------------------------------------------------------------------------------- /Data/data/cm1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/Data/data/cm1.csv -------------------------------------------------------------------------------- /Data/data/corr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/Data/data/corr.png -------------------------------------------------------------------------------- /Data/data/kc1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/Data/data/kc1.csv -------------------------------------------------------------------------------- /Data/data/kc2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/Data/data/kc2.csv -------------------------------------------------------------------------------- /Data/data/mc1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/Data/data/mc1.csv -------------------------------------------------------------------------------- /Data/data/mc2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/Data/data/mc2.csv -------------------------------------------------------------------------------- /Data/data/pc1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/Data/data/pc1.csv -------------------------------------------------------------------------------- /Data/data/pc2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/Data/data/pc2.csv -------------------------------------------------------------------------------- /Data/data/pc3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/Data/data/pc3.csv -------------------------------------------------------------------------------- /Data/data/pc4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/Data/data/pc4.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/README.md -------------------------------------------------------------------------------- /logistic_regression_ensembler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/logistic_regression_ensembler.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/models.py -------------------------------------------------------------------------------- /performance_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/performance_check.py -------------------------------------------------------------------------------- /preprocessingfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghJasmeet585/Software-Defect-Prediction/HEAD/preprocessingfile.py --------------------------------------------------------------------------------