├── .gitignore ├── Bioinformatics_Data ├── ABCPred.zip ├── ABCPred │ ├── ABCPred10.arff │ ├── ABCPred12.arff │ ├── ABCPred14.arff │ ├── ABCPred16.arff │ ├── ABCPred18.arff │ ├── ABCPred20.arff │ ├── NeuralNetworkepitopepredict.pdf │ └── ReadMe.txt ├── BCPred.zip ├── BCPred │ ├── BCPred12.nr80.arff │ ├── BCPred14.nr80.arff │ ├── BCPred16.nr80.arff │ ├── BCPred18.nr80.arff │ ├── BCPred20.nr80.arff │ ├── EpitopePredictwithStringKernels.pdf │ └── ReadMe.txt ├── FBCPred.zip ├── FBCPred │ ├── FlexLenBCPred.arff │ ├── FlexLenBCPred.nr80.arff │ ├── PredictingFlexibleLengthepitope.pdf │ └── ReadMe.txt ├── bcipepdatabase.zip ├── bcipepdatabase │ ├── bcipep.dat │ └── nonredundant_bcipep ├── howformat.zip └── incompletelearnepitopemarkup │ ├── AntiJen.how │ ├── HIV.how │ ├── Pellequer.how │ └── improvedmthdbcellepitopes.pdf ├── LICENSE.txt ├── Mines ├── README.txt ├── Rocks ├── Vowel_Recognition ├── aart.erl ├── abc_pred10 ├── abc_pred12 ├── abc_pred14 ├── abc_pred16 ├── abc_pred18 ├── abc_pred20 ├── actuators.erl ├── agent_evo_strat.erl ├── benchmark.erl ├── circuit.erl ├── classification_scape.erl ├── committee.erl ├── cortex.erl ├── data_extractor.erl ├── derivatives.erl ├── exoself.erl ├── forex_db.erl ├── forex_db.hrl ├── free_scale.erl ├── functions.erl ├── fx.erl ├── geometry.erl ├── graph.erl ├── info.erl ├── interactive_evolution.erl ├── logger.erl ├── metabolics.erl ├── mines ├── mines_vs_rocks ├── modular_constructor.erl ├── modular_mutator.erl ├── morphology.erl ├── neuron.erl ├── phenotypic_diversity.erl ├── plasticity.erl ├── polis.erl ├── population_monitor.erl ├── postprocessor.erl ├── preprocessor.erl ├── records.hrl ├── rocks ├── scape.erl ├── sector.erl ├── sensors.erl ├── signal_integrator.erl ├── sim_epitopes.erl ├── simulations.erl ├── specie_evo_strat.erl ├── specie_identifier.erl ├── technome_constructor.erl ├── technome_mutator.erl ├── template.erl ├── visor.erl ├── vowel_recognition ├── world.erl └── xor_table /.gitignore: -------------------------------------------------------------------------------- 1 | *.beam 2 | Mnesia* 3 | benchmarks/ 4 | fx_tables/ 5 | *~ 6 | *.dump 7 | Project_DX 8 | -------------------------------------------------------------------------------- /Bioinformatics_Data/ABCPred.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/ABCPred.zip -------------------------------------------------------------------------------- /Bioinformatics_Data/ABCPred/ABCPred10.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/ABCPred/ABCPred10.arff -------------------------------------------------------------------------------- /Bioinformatics_Data/ABCPred/ABCPred12.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/ABCPred/ABCPred12.arff -------------------------------------------------------------------------------- /Bioinformatics_Data/ABCPred/ABCPred14.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/ABCPred/ABCPred14.arff -------------------------------------------------------------------------------- /Bioinformatics_Data/ABCPred/ABCPred16.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/ABCPred/ABCPred16.arff -------------------------------------------------------------------------------- /Bioinformatics_Data/ABCPred/ABCPred18.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/ABCPred/ABCPred18.arff -------------------------------------------------------------------------------- /Bioinformatics_Data/ABCPred/ABCPred20.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/ABCPred/ABCPred20.arff -------------------------------------------------------------------------------- /Bioinformatics_Data/ABCPred/NeuralNetworkepitopepredict.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/ABCPred/NeuralNetworkepitopepredict.pdf -------------------------------------------------------------------------------- /Bioinformatics_Data/ABCPred/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/ABCPred/ReadMe.txt -------------------------------------------------------------------------------- /Bioinformatics_Data/BCPred.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/BCPred.zip -------------------------------------------------------------------------------- /Bioinformatics_Data/BCPred/BCPred12.nr80.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/BCPred/BCPred12.nr80.arff -------------------------------------------------------------------------------- /Bioinformatics_Data/BCPred/BCPred14.nr80.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/BCPred/BCPred14.nr80.arff -------------------------------------------------------------------------------- /Bioinformatics_Data/BCPred/BCPred16.nr80.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/BCPred/BCPred16.nr80.arff -------------------------------------------------------------------------------- /Bioinformatics_Data/BCPred/BCPred18.nr80.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/BCPred/BCPred18.nr80.arff -------------------------------------------------------------------------------- /Bioinformatics_Data/BCPred/BCPred20.nr80.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/BCPred/BCPred20.nr80.arff -------------------------------------------------------------------------------- /Bioinformatics_Data/BCPred/EpitopePredictwithStringKernels.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/BCPred/EpitopePredictwithStringKernels.pdf -------------------------------------------------------------------------------- /Bioinformatics_Data/BCPred/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/BCPred/ReadMe.txt -------------------------------------------------------------------------------- /Bioinformatics_Data/FBCPred.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/FBCPred.zip -------------------------------------------------------------------------------- /Bioinformatics_Data/FBCPred/FlexLenBCPred.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/FBCPred/FlexLenBCPred.arff -------------------------------------------------------------------------------- /Bioinformatics_Data/FBCPred/FlexLenBCPred.nr80.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/FBCPred/FlexLenBCPred.nr80.arff -------------------------------------------------------------------------------- /Bioinformatics_Data/FBCPred/PredictingFlexibleLengthepitope.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/FBCPred/PredictingFlexibleLengthepitope.pdf -------------------------------------------------------------------------------- /Bioinformatics_Data/FBCPred/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/FBCPred/ReadMe.txt -------------------------------------------------------------------------------- /Bioinformatics_Data/bcipepdatabase.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/bcipepdatabase.zip -------------------------------------------------------------------------------- /Bioinformatics_Data/bcipepdatabase/bcipep.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/bcipepdatabase/bcipep.dat -------------------------------------------------------------------------------- /Bioinformatics_Data/bcipepdatabase/nonredundant_bcipep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/bcipepdatabase/nonredundant_bcipep -------------------------------------------------------------------------------- /Bioinformatics_Data/howformat.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/howformat.zip -------------------------------------------------------------------------------- /Bioinformatics_Data/incompletelearnepitopemarkup/AntiJen.how: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/incompletelearnepitopemarkup/AntiJen.how -------------------------------------------------------------------------------- /Bioinformatics_Data/incompletelearnepitopemarkup/HIV.how: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/incompletelearnepitopemarkup/HIV.how -------------------------------------------------------------------------------- /Bioinformatics_Data/incompletelearnepitopemarkup/Pellequer.how: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/incompletelearnepitopemarkup/Pellequer.how -------------------------------------------------------------------------------- /Bioinformatics_Data/incompletelearnepitopemarkup/improvedmthdbcellepitopes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Bioinformatics_Data/incompletelearnepitopemarkup/improvedmthdbcellepitopes.pdf -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Mines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Mines -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/README.txt -------------------------------------------------------------------------------- /Rocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Rocks -------------------------------------------------------------------------------- /Vowel_Recognition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/Vowel_Recognition -------------------------------------------------------------------------------- /aart.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/aart.erl -------------------------------------------------------------------------------- /abc_pred10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/abc_pred10 -------------------------------------------------------------------------------- /abc_pred12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/abc_pred12 -------------------------------------------------------------------------------- /abc_pred14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/abc_pred14 -------------------------------------------------------------------------------- /abc_pred16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/abc_pred16 -------------------------------------------------------------------------------- /abc_pred18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/abc_pred18 -------------------------------------------------------------------------------- /abc_pred20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/abc_pred20 -------------------------------------------------------------------------------- /actuators.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/actuators.erl -------------------------------------------------------------------------------- /agent_evo_strat.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/agent_evo_strat.erl -------------------------------------------------------------------------------- /benchmark.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/benchmark.erl -------------------------------------------------------------------------------- /circuit.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/circuit.erl -------------------------------------------------------------------------------- /classification_scape.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/classification_scape.erl -------------------------------------------------------------------------------- /committee.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/committee.erl -------------------------------------------------------------------------------- /cortex.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/cortex.erl -------------------------------------------------------------------------------- /data_extractor.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/data_extractor.erl -------------------------------------------------------------------------------- /derivatives.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/derivatives.erl -------------------------------------------------------------------------------- /exoself.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/exoself.erl -------------------------------------------------------------------------------- /forex_db.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/forex_db.erl -------------------------------------------------------------------------------- /forex_db.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/forex_db.hrl -------------------------------------------------------------------------------- /free_scale.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/free_scale.erl -------------------------------------------------------------------------------- /functions.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/functions.erl -------------------------------------------------------------------------------- /fx.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/fx.erl -------------------------------------------------------------------------------- /geometry.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/geometry.erl -------------------------------------------------------------------------------- /graph.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/graph.erl -------------------------------------------------------------------------------- /info.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/info.erl -------------------------------------------------------------------------------- /interactive_evolution.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/interactive_evolution.erl -------------------------------------------------------------------------------- /logger.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/logger.erl -------------------------------------------------------------------------------- /metabolics.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/metabolics.erl -------------------------------------------------------------------------------- /mines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/mines -------------------------------------------------------------------------------- /mines_vs_rocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/mines_vs_rocks -------------------------------------------------------------------------------- /modular_constructor.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/modular_constructor.erl -------------------------------------------------------------------------------- /modular_mutator.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/modular_mutator.erl -------------------------------------------------------------------------------- /morphology.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/morphology.erl -------------------------------------------------------------------------------- /neuron.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/neuron.erl -------------------------------------------------------------------------------- /phenotypic_diversity.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/phenotypic_diversity.erl -------------------------------------------------------------------------------- /plasticity.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/plasticity.erl -------------------------------------------------------------------------------- /polis.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/polis.erl -------------------------------------------------------------------------------- /population_monitor.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/population_monitor.erl -------------------------------------------------------------------------------- /postprocessor.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/postprocessor.erl -------------------------------------------------------------------------------- /preprocessor.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/preprocessor.erl -------------------------------------------------------------------------------- /records.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/records.hrl -------------------------------------------------------------------------------- /rocks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/rocks -------------------------------------------------------------------------------- /scape.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/scape.erl -------------------------------------------------------------------------------- /sector.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/sector.erl -------------------------------------------------------------------------------- /sensors.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/sensors.erl -------------------------------------------------------------------------------- /signal_integrator.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/signal_integrator.erl -------------------------------------------------------------------------------- /sim_epitopes.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/sim_epitopes.erl -------------------------------------------------------------------------------- /simulations.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/simulations.erl -------------------------------------------------------------------------------- /specie_evo_strat.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/specie_evo_strat.erl -------------------------------------------------------------------------------- /specie_identifier.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/specie_identifier.erl -------------------------------------------------------------------------------- /technome_constructor.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/technome_constructor.erl -------------------------------------------------------------------------------- /technome_mutator.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/technome_mutator.erl -------------------------------------------------------------------------------- /template.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/template.erl -------------------------------------------------------------------------------- /visor.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/visor.erl -------------------------------------------------------------------------------- /vowel_recognition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/vowel_recognition -------------------------------------------------------------------------------- /world.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/world.erl -------------------------------------------------------------------------------- /xor_table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorticalComputer/DXNN/HEAD/xor_table --------------------------------------------------------------------------------