├── README.md ├── data └── dataSample │ ├── 0A32eTdBKayjCWhZqDOQ.asm │ └── 0ACDbR5M3ZhBJajygTuf.asm └── src └── method ├── api_component ├── base_architecture.py ├── custom_training.py ├── parameters │ └── nn_1h_parameters.json ├── tfreader.py └── tfwriter.py ├── bytes_component ├── base_architecture.py ├── custom_training.py ├── parameters │ └── parameters_DeepConv.json ├── tfreader.py ├── tfwriter.py └── vocabulary │ ├── inverse_vocabulary_mapping.json │ └── vocabulary_mapping.json ├── hydra ├── custom_training.py ├── hydra_architecture.py ├── parameters │ └── hydra_parameters.json ├── tfreader.py └── tfwriter.py ├── opcodes_component ├── __init__.py ├── base_architecture.py ├── custom_training.py ├── parameters │ └── standard_cnn_parameters.json ├── tfreader.py ├── tfwriter.py └── vocabulary │ ├── mnemonics_inverse_vocabulary_mapping_min=3.json │ └── mnemonics_vocabulary_mapping_min=3.json └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/README.md -------------------------------------------------------------------------------- /data/dataSample/0A32eTdBKayjCWhZqDOQ.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/data/dataSample/0A32eTdBKayjCWhZqDOQ.asm -------------------------------------------------------------------------------- /data/dataSample/0ACDbR5M3ZhBJajygTuf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/data/dataSample/0ACDbR5M3ZhBJajygTuf.asm -------------------------------------------------------------------------------- /src/method/api_component/base_architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/api_component/base_architecture.py -------------------------------------------------------------------------------- /src/method/api_component/custom_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/api_component/custom_training.py -------------------------------------------------------------------------------- /src/method/api_component/parameters/nn_1h_parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/api_component/parameters/nn_1h_parameters.json -------------------------------------------------------------------------------- /src/method/api_component/tfreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/api_component/tfreader.py -------------------------------------------------------------------------------- /src/method/api_component/tfwriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/api_component/tfwriter.py -------------------------------------------------------------------------------- /src/method/bytes_component/base_architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/bytes_component/base_architecture.py -------------------------------------------------------------------------------- /src/method/bytes_component/custom_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/bytes_component/custom_training.py -------------------------------------------------------------------------------- /src/method/bytes_component/parameters/parameters_DeepConv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/bytes_component/parameters/parameters_DeepConv.json -------------------------------------------------------------------------------- /src/method/bytes_component/tfreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/bytes_component/tfreader.py -------------------------------------------------------------------------------- /src/method/bytes_component/tfwriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/bytes_component/tfwriter.py -------------------------------------------------------------------------------- /src/method/bytes_component/vocabulary/inverse_vocabulary_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/bytes_component/vocabulary/inverse_vocabulary_mapping.json -------------------------------------------------------------------------------- /src/method/bytes_component/vocabulary/vocabulary_mapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/bytes_component/vocabulary/vocabulary_mapping.json -------------------------------------------------------------------------------- /src/method/hydra/custom_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/hydra/custom_training.py -------------------------------------------------------------------------------- /src/method/hydra/hydra_architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/hydra/hydra_architecture.py -------------------------------------------------------------------------------- /src/method/hydra/parameters/hydra_parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/hydra/parameters/hydra_parameters.json -------------------------------------------------------------------------------- /src/method/hydra/tfreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/hydra/tfreader.py -------------------------------------------------------------------------------- /src/method/hydra/tfwriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/hydra/tfwriter.py -------------------------------------------------------------------------------- /src/method/opcodes_component/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/method/opcodes_component/base_architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/opcodes_component/base_architecture.py -------------------------------------------------------------------------------- /src/method/opcodes_component/custom_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/opcodes_component/custom_training.py -------------------------------------------------------------------------------- /src/method/opcodes_component/parameters/standard_cnn_parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/opcodes_component/parameters/standard_cnn_parameters.json -------------------------------------------------------------------------------- /src/method/opcodes_component/tfreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/opcodes_component/tfreader.py -------------------------------------------------------------------------------- /src/method/opcodes_component/tfwriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/opcodes_component/tfwriter.py -------------------------------------------------------------------------------- /src/method/opcodes_component/vocabulary/mnemonics_inverse_vocabulary_mapping_min=3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/opcodes_component/vocabulary/mnemonics_inverse_vocabulary_mapping_min=3.json -------------------------------------------------------------------------------- /src/method/opcodes_component/vocabulary/mnemonics_vocabulary_mapping_min=3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/opcodes_component/vocabulary/mnemonics_vocabulary_mapping_min=3.json -------------------------------------------------------------------------------- /src/method/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielgibert/mlw_classification_hydra/HEAD/src/method/utils.py --------------------------------------------------------------------------------