├── .DS_Store ├── .gitattributes ├── .gitignore ├── README.md ├── checkpointSearch └── .gitignore ├── data ├── char_voc.pkl ├── code_voc.pkl ├── nl_voc.pkl ├── rule.pkl ├── rule2.pkl ├── rule4.pkl ├── rulead.pkl ├── temp.json ├── temp.txt ├── testdata.pkl └── testnl.pkl ├── experiment ├── fl.csv └── tcp.csv ├── location2 └── Chart │ └── 1 │ └── parsed_ochiai_result ├── model ├── Attention.py ├── CombinationLayer.py ├── ConvolutionForward.py ├── Dataset.py ├── DatasetSum.py ├── DenseLayer.py ├── Embedding.py ├── LayerNorm.py ├── Model.py ├── Multihead_Attention.py ├── Multihead_Combination.py ├── Radam.py ├── ScheduledOptim.py ├── Searchnode.py ├── SubLayerConnection.py ├── TokenEmbedding.py ├── Transfomer.py ├── TreeConv.py ├── TreeConvGen.py ├── decodeTrans.py ├── gcnn.py ├── gcnnnormal.py ├── gelu.py ├── graphTransformer.py ├── parse_dataflow.py ├── postionEmbedding.py ├── rightnTransfomer.py ├── run.py ├── stringfycode.py ├── sys.py └── vocab.py ├── mutants └── Chart-1.json ├── pictures ├── ablationfl.png ├── ablationtcp.png ├── beamsizefl.png ├── beamsizetcp.png ├── correlation.png ├── fl_1.png ├── fl_2.png ├── mutationfault.png ├── number.png ├── realfault.png ├── tcp_1.png └── tcp_2.png ├── result └── Chart-1.json └── test.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/README.md -------------------------------------------------------------------------------- /checkpointSearch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/checkpointSearch/.gitignore -------------------------------------------------------------------------------- /data/char_voc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/data/char_voc.pkl -------------------------------------------------------------------------------- /data/code_voc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/data/code_voc.pkl -------------------------------------------------------------------------------- /data/nl_voc.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/data/nl_voc.pkl -------------------------------------------------------------------------------- /data/rule.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/data/rule.pkl -------------------------------------------------------------------------------- /data/rule2.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/data/rule2.pkl -------------------------------------------------------------------------------- /data/rule4.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/data/rule4.pkl -------------------------------------------------------------------------------- /data/rulead.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/data/rulead.pkl -------------------------------------------------------------------------------- /data/temp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/data/temp.json -------------------------------------------------------------------------------- /data/temp.txt: -------------------------------------------------------------------------------- 1 | org.jfree.chart.axis.Axis 2 | -------------------------------------------------------------------------------- /data/testdata.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/data/testdata.pkl -------------------------------------------------------------------------------- /data/testnl.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/data/testnl.pkl -------------------------------------------------------------------------------- /experiment/fl.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/experiment/fl.csv -------------------------------------------------------------------------------- /experiment/tcp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/experiment/tcp.csv -------------------------------------------------------------------------------- /location2/Chart/1/parsed_ochiai_result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/location2/Chart/1/parsed_ochiai_result -------------------------------------------------------------------------------- /model/Attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/Attention.py -------------------------------------------------------------------------------- /model/CombinationLayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/CombinationLayer.py -------------------------------------------------------------------------------- /model/ConvolutionForward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/ConvolutionForward.py -------------------------------------------------------------------------------- /model/Dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/Dataset.py -------------------------------------------------------------------------------- /model/DatasetSum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/DatasetSum.py -------------------------------------------------------------------------------- /model/DenseLayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/DenseLayer.py -------------------------------------------------------------------------------- /model/Embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/Embedding.py -------------------------------------------------------------------------------- /model/LayerNorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/LayerNorm.py -------------------------------------------------------------------------------- /model/Model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/Model.py -------------------------------------------------------------------------------- /model/Multihead_Attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/Multihead_Attention.py -------------------------------------------------------------------------------- /model/Multihead_Combination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/Multihead_Combination.py -------------------------------------------------------------------------------- /model/Radam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/Radam.py -------------------------------------------------------------------------------- /model/ScheduledOptim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/ScheduledOptim.py -------------------------------------------------------------------------------- /model/Searchnode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/Searchnode.py -------------------------------------------------------------------------------- /model/SubLayerConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/SubLayerConnection.py -------------------------------------------------------------------------------- /model/TokenEmbedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/TokenEmbedding.py -------------------------------------------------------------------------------- /model/Transfomer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/Transfomer.py -------------------------------------------------------------------------------- /model/TreeConv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/TreeConv.py -------------------------------------------------------------------------------- /model/TreeConvGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/TreeConvGen.py -------------------------------------------------------------------------------- /model/decodeTrans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/decodeTrans.py -------------------------------------------------------------------------------- /model/gcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/gcnn.py -------------------------------------------------------------------------------- /model/gcnnnormal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/gcnnnormal.py -------------------------------------------------------------------------------- /model/gelu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/gelu.py -------------------------------------------------------------------------------- /model/graphTransformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/graphTransformer.py -------------------------------------------------------------------------------- /model/parse_dataflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/parse_dataflow.py -------------------------------------------------------------------------------- /model/postionEmbedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/postionEmbedding.py -------------------------------------------------------------------------------- /model/rightnTransfomer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/rightnTransfomer.py -------------------------------------------------------------------------------- /model/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/run.py -------------------------------------------------------------------------------- /model/stringfycode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/stringfycode.py -------------------------------------------------------------------------------- /model/sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/sys.py -------------------------------------------------------------------------------- /model/vocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/model/vocab.py -------------------------------------------------------------------------------- /mutants/Chart-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/mutants/Chart-1.json -------------------------------------------------------------------------------- /pictures/ablationfl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/pictures/ablationfl.png -------------------------------------------------------------------------------- /pictures/ablationtcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/pictures/ablationtcp.png -------------------------------------------------------------------------------- /pictures/beamsizefl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/pictures/beamsizefl.png -------------------------------------------------------------------------------- /pictures/beamsizetcp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/pictures/beamsizetcp.png -------------------------------------------------------------------------------- /pictures/correlation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/pictures/correlation.png -------------------------------------------------------------------------------- /pictures/fl_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/pictures/fl_1.png -------------------------------------------------------------------------------- /pictures/fl_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/pictures/fl_2.png -------------------------------------------------------------------------------- /pictures/mutationfault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/pictures/mutationfault.png -------------------------------------------------------------------------------- /pictures/number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/pictures/number.png -------------------------------------------------------------------------------- /pictures/realfault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/pictures/realfault.png -------------------------------------------------------------------------------- /pictures/tcp_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/pictures/tcp_1.png -------------------------------------------------------------------------------- /pictures/tcp_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/pictures/tcp_2.png -------------------------------------------------------------------------------- /result/Chart-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/result/Chart-1.json -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tianzhaotju/LEAM/HEAD/test.py --------------------------------------------------------------------------------