├── .gitignore ├── DeseqRunner.py ├── README.md ├── classification ├── BaselineClassifiers.py ├── ThresholdClassifier.py └── __init__ ├── combine ├── __init__.py ├── combine_prediction.py └── combine_subset.py ├── data_class.py ├── emsemble ├── Emsemble.py ├── HomogeneousEmsemble.py └── __init__.py ├── feature_selection ├── AGA.py ├── EmsembleFS.py ├── MSVMRFE.py ├── RFRFE.py ├── Relief.py ├── __init__.py └── mRMR.py ├── pipeline ├── Pipeline.py └── __init__.py └── run_trials.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helenzhao093/MLMethods/HEAD/.gitignore -------------------------------------------------------------------------------- /DeseqRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helenzhao093/MLMethods/HEAD/DeseqRunner.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helenzhao093/MLMethods/HEAD/README.md -------------------------------------------------------------------------------- /classification/BaselineClassifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helenzhao093/MLMethods/HEAD/classification/BaselineClassifiers.py -------------------------------------------------------------------------------- /classification/ThresholdClassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helenzhao093/MLMethods/HEAD/classification/ThresholdClassifier.py -------------------------------------------------------------------------------- /classification/__init__: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /combine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /combine/combine_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helenzhao093/MLMethods/HEAD/combine/combine_prediction.py -------------------------------------------------------------------------------- /combine/combine_subset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helenzhao093/MLMethods/HEAD/combine/combine_subset.py -------------------------------------------------------------------------------- /data_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helenzhao093/MLMethods/HEAD/data_class.py -------------------------------------------------------------------------------- /emsemble/Emsemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helenzhao093/MLMethods/HEAD/emsemble/Emsemble.py -------------------------------------------------------------------------------- /emsemble/HomogeneousEmsemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helenzhao093/MLMethods/HEAD/emsemble/HomogeneousEmsemble.py -------------------------------------------------------------------------------- /emsemble/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature_selection/AGA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helenzhao093/MLMethods/HEAD/feature_selection/AGA.py -------------------------------------------------------------------------------- /feature_selection/EmsembleFS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helenzhao093/MLMethods/HEAD/feature_selection/EmsembleFS.py -------------------------------------------------------------------------------- /feature_selection/MSVMRFE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helenzhao093/MLMethods/HEAD/feature_selection/MSVMRFE.py -------------------------------------------------------------------------------- /feature_selection/RFRFE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helenzhao093/MLMethods/HEAD/feature_selection/RFRFE.py -------------------------------------------------------------------------------- /feature_selection/Relief.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helenzhao093/MLMethods/HEAD/feature_selection/Relief.py -------------------------------------------------------------------------------- /feature_selection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /feature_selection/mRMR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helenzhao093/MLMethods/HEAD/feature_selection/mRMR.py -------------------------------------------------------------------------------- /pipeline/Pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helenzhao093/MLMethods/HEAD/pipeline/Pipeline.py -------------------------------------------------------------------------------- /pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /run_trials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helenzhao093/MLMethods/HEAD/run_trials.py --------------------------------------------------------------------------------