├── .gitignore ├── ELFMiner.py ├── LICENSE ├── Pathway.txt ├── README.md ├── _config.yml ├── arff_headers └── all.txt ├── dataset ├── benign.csv ├── final.csv ├── final_final.csv ├── final_final_1.csv ├── final_final_1_ar.arff ├── final_final_1_c45.data ├── final_final_1_c45.names ├── join.ipynb ├── malware.csv ├── test.csv ├── test_after_feature_selection.csv ├── train.csv └── train_after_feature_selection.csv ├── docs ├── README.md └── _config.yml ├── elftools ├── __init__.py ├── common │ ├── __init__.py │ ├── construct_utils.py │ ├── exceptions.py │ ├── py3compat.py │ └── utils.py ├── construct │ ├── LICENSE │ ├── README │ ├── __init__.py │ ├── adapters.py │ ├── core.py │ ├── debug.py │ └── macros.py ├── dwarf │ ├── __init__.py │ ├── abbrevtable.py │ ├── aranges.py │ ├── callframe.py │ ├── compileunit.py │ ├── constants.py │ ├── descriptions.py │ ├── die.py │ ├── dwarf_expr.py │ ├── dwarfinfo.py │ ├── enums.py │ ├── lineprogram.py │ ├── locationlists.py │ ├── ranges.py │ └── structs.py └── elf │ ├── __init__.py │ ├── constants.py │ ├── descriptions.py │ ├── dynamic.py │ ├── elffile.py │ ├── enums.py │ ├── gnuversions.py │ ├── notes.py │ ├── relocation.py │ ├── sections.py │ ├── segments.py │ └── structs.py ├── feature_selection.ipynb ├── feature_selection ├── weka_features_toremove.txt └── weka_important_features.txt ├── keel ├── final_final_1_ar.arff └── results │ ├── calc_accuracy.py │ ├── gassist_adi │ └── result0s0.tst │ ├── results.txt │ ├── ucs │ └── result0s0.tst │ └── xcs │ └── result0s0.tst ├── models ├── J48.txt ├── JRip.txt ├── PART.txt ├── RandomForest.txt ├── images │ ├── J48_1.png │ ├── J48_2.png │ ├── JRip_1.png │ ├── JRip_2.png │ ├── PART_1.png │ ├── PART_2.png │ └── RandomForest_split.png ├── models │ ├── J48.model │ ├── JRip.model │ ├── PART.model │ └── Random_Forest.model ├── ppt │ ├── Section.png │ └── elf_header.png └── roc_jrip.arff ├── postprocessing.ipynb ├── prepare_dataset.ipynb ├── readelf3.py ├── requirements.txt ├── results.csv ├── results2.csv ├── results_final.csv ├── run_system.py ├── system ├── .classpath ├── .project ├── Makefile ├── evaluate.class ├── evaluate.java ├── feature_selection.py ├── final.arff ├── final.csv ├── final_feature_selection.csv ├── final_postprocessing.csv ├── postprocessing.py └── weka.jar ├── testing.csv ├── testing_1.arff └── testing_1.csv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/.gitignore -------------------------------------------------------------------------------- /ELFMiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/ELFMiner.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/LICENSE -------------------------------------------------------------------------------- /Pathway.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/Pathway.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/_config.yml -------------------------------------------------------------------------------- /arff_headers/all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/arff_headers/all.txt -------------------------------------------------------------------------------- /dataset/benign.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/dataset/benign.csv -------------------------------------------------------------------------------- /dataset/final.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/dataset/final.csv -------------------------------------------------------------------------------- /dataset/final_final.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/dataset/final_final.csv -------------------------------------------------------------------------------- /dataset/final_final_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/dataset/final_final_1.csv -------------------------------------------------------------------------------- /dataset/final_final_1_ar.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/dataset/final_final_1_ar.arff -------------------------------------------------------------------------------- /dataset/final_final_1_c45.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/dataset/final_final_1_c45.data -------------------------------------------------------------------------------- /dataset/final_final_1_c45.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/dataset/final_final_1_c45.names -------------------------------------------------------------------------------- /dataset/join.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/dataset/join.ipynb -------------------------------------------------------------------------------- /dataset/malware.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/dataset/malware.csv -------------------------------------------------------------------------------- /dataset/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/dataset/test.csv -------------------------------------------------------------------------------- /dataset/test_after_feature_selection.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/dataset/test_after_feature_selection.csv -------------------------------------------------------------------------------- /dataset/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/dataset/train.csv -------------------------------------------------------------------------------- /dataset/train_after_feature_selection.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/dataset/train_after_feature_selection.csv -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /elftools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/__init__.py -------------------------------------------------------------------------------- /elftools/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elftools/common/construct_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/common/construct_utils.py -------------------------------------------------------------------------------- /elftools/common/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/common/exceptions.py -------------------------------------------------------------------------------- /elftools/common/py3compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/common/py3compat.py -------------------------------------------------------------------------------- /elftools/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/common/utils.py -------------------------------------------------------------------------------- /elftools/construct/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/construct/LICENSE -------------------------------------------------------------------------------- /elftools/construct/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/construct/README -------------------------------------------------------------------------------- /elftools/construct/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/construct/__init__.py -------------------------------------------------------------------------------- /elftools/construct/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/construct/adapters.py -------------------------------------------------------------------------------- /elftools/construct/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/construct/core.py -------------------------------------------------------------------------------- /elftools/construct/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/construct/debug.py -------------------------------------------------------------------------------- /elftools/construct/macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/construct/macros.py -------------------------------------------------------------------------------- /elftools/dwarf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elftools/dwarf/abbrevtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/dwarf/abbrevtable.py -------------------------------------------------------------------------------- /elftools/dwarf/aranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/dwarf/aranges.py -------------------------------------------------------------------------------- /elftools/dwarf/callframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/dwarf/callframe.py -------------------------------------------------------------------------------- /elftools/dwarf/compileunit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/dwarf/compileunit.py -------------------------------------------------------------------------------- /elftools/dwarf/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/dwarf/constants.py -------------------------------------------------------------------------------- /elftools/dwarf/descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/dwarf/descriptions.py -------------------------------------------------------------------------------- /elftools/dwarf/die.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/dwarf/die.py -------------------------------------------------------------------------------- /elftools/dwarf/dwarf_expr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/dwarf/dwarf_expr.py -------------------------------------------------------------------------------- /elftools/dwarf/dwarfinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/dwarf/dwarfinfo.py -------------------------------------------------------------------------------- /elftools/dwarf/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/dwarf/enums.py -------------------------------------------------------------------------------- /elftools/dwarf/lineprogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/dwarf/lineprogram.py -------------------------------------------------------------------------------- /elftools/dwarf/locationlists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/dwarf/locationlists.py -------------------------------------------------------------------------------- /elftools/dwarf/ranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/dwarf/ranges.py -------------------------------------------------------------------------------- /elftools/dwarf/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/dwarf/structs.py -------------------------------------------------------------------------------- /elftools/elf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /elftools/elf/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/elf/constants.py -------------------------------------------------------------------------------- /elftools/elf/descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/elf/descriptions.py -------------------------------------------------------------------------------- /elftools/elf/dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/elf/dynamic.py -------------------------------------------------------------------------------- /elftools/elf/elffile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/elf/elffile.py -------------------------------------------------------------------------------- /elftools/elf/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/elf/enums.py -------------------------------------------------------------------------------- /elftools/elf/gnuversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/elf/gnuversions.py -------------------------------------------------------------------------------- /elftools/elf/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/elf/notes.py -------------------------------------------------------------------------------- /elftools/elf/relocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/elf/relocation.py -------------------------------------------------------------------------------- /elftools/elf/sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/elf/sections.py -------------------------------------------------------------------------------- /elftools/elf/segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/elf/segments.py -------------------------------------------------------------------------------- /elftools/elf/structs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/elftools/elf/structs.py -------------------------------------------------------------------------------- /feature_selection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/feature_selection.ipynb -------------------------------------------------------------------------------- /feature_selection/weka_features_toremove.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/feature_selection/weka_features_toremove.txt -------------------------------------------------------------------------------- /feature_selection/weka_important_features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/feature_selection/weka_important_features.txt -------------------------------------------------------------------------------- /keel/final_final_1_ar.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/keel/final_final_1_ar.arff -------------------------------------------------------------------------------- /keel/results/calc_accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/keel/results/calc_accuracy.py -------------------------------------------------------------------------------- /keel/results/gassist_adi/result0s0.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/keel/results/gassist_adi/result0s0.tst -------------------------------------------------------------------------------- /keel/results/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/keel/results/results.txt -------------------------------------------------------------------------------- /keel/results/ucs/result0s0.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/keel/results/ucs/result0s0.tst -------------------------------------------------------------------------------- /keel/results/xcs/result0s0.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/keel/results/xcs/result0s0.tst -------------------------------------------------------------------------------- /models/J48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/models/J48.txt -------------------------------------------------------------------------------- /models/JRip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/models/JRip.txt -------------------------------------------------------------------------------- /models/PART.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/models/PART.txt -------------------------------------------------------------------------------- /models/RandomForest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/models/RandomForest.txt -------------------------------------------------------------------------------- /models/images/J48_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/models/images/J48_1.png -------------------------------------------------------------------------------- /models/images/J48_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/models/images/J48_2.png -------------------------------------------------------------------------------- /models/images/JRip_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/models/images/JRip_1.png -------------------------------------------------------------------------------- /models/images/JRip_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/models/images/JRip_2.png -------------------------------------------------------------------------------- /models/images/PART_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/models/images/PART_1.png -------------------------------------------------------------------------------- /models/images/PART_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/models/images/PART_2.png -------------------------------------------------------------------------------- /models/images/RandomForest_split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/models/images/RandomForest_split.png -------------------------------------------------------------------------------- /models/models/J48.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/models/models/J48.model -------------------------------------------------------------------------------- /models/models/JRip.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/models/models/JRip.model -------------------------------------------------------------------------------- /models/models/PART.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/models/models/PART.model -------------------------------------------------------------------------------- /models/models/Random_Forest.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/models/models/Random_Forest.model -------------------------------------------------------------------------------- /models/ppt/Section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/models/ppt/Section.png -------------------------------------------------------------------------------- /models/ppt/elf_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/models/ppt/elf_header.png -------------------------------------------------------------------------------- /models/roc_jrip.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/models/roc_jrip.arff -------------------------------------------------------------------------------- /postprocessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/postprocessing.ipynb -------------------------------------------------------------------------------- /prepare_dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/prepare_dataset.ipynb -------------------------------------------------------------------------------- /readelf3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/readelf3.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/requirements.txt -------------------------------------------------------------------------------- /results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/results.csv -------------------------------------------------------------------------------- /results2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/results2.csv -------------------------------------------------------------------------------- /results_final.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/results_final.csv -------------------------------------------------------------------------------- /run_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/run_system.py -------------------------------------------------------------------------------- /system/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/system/.classpath -------------------------------------------------------------------------------- /system/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/system/.project -------------------------------------------------------------------------------- /system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/system/Makefile -------------------------------------------------------------------------------- /system/evaluate.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/system/evaluate.class -------------------------------------------------------------------------------- /system/evaluate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/system/evaluate.java -------------------------------------------------------------------------------- /system/feature_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/system/feature_selection.py -------------------------------------------------------------------------------- /system/final.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/system/final.arff -------------------------------------------------------------------------------- /system/final.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/system/final.csv -------------------------------------------------------------------------------- /system/final_feature_selection.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/system/final_feature_selection.csv -------------------------------------------------------------------------------- /system/final_postprocessing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/system/final_postprocessing.csv -------------------------------------------------------------------------------- /system/postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/system/postprocessing.py -------------------------------------------------------------------------------- /system/weka.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/system/weka.jar -------------------------------------------------------------------------------- /testing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/testing.csv -------------------------------------------------------------------------------- /testing_1.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/testing_1.arff -------------------------------------------------------------------------------- /testing_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shreyansh26/ELF-Miner/HEAD/testing_1.csv --------------------------------------------------------------------------------