├── ClevrBatcher.py ├── MOE.py ├── Net.py ├── Preprocess.py ├── README.md ├── images ├── dynamic.png ├── iep.png └── moe.png ├── lib ├── __pycache__ │ ├── nlp.cpython-36.pyc │ └── utils.cpython-36.pyc ├── nlp.py ├── svim.sh └── utils.py ├── model ├── ExecutionEngine.py ├── Program.py ├── ProgramGenerator.py ├── ResNetFeatureExtractor.py ├── ResNetTrunc.py └── Tree.py ├── preprocess ├── PreprocessData.py ├── ProgramVocab.py ├── QAVocab.py └── __pycache__ │ ├── PreprocessData.cpython-36.pyc │ └── PreprocessQA.cpython-36.pyc ├── svim.sh └── vis └── PlotResults.py /ClevrBatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/ClevrBatcher.py -------------------------------------------------------------------------------- /MOE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/MOE.py -------------------------------------------------------------------------------- /Net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/Net.py -------------------------------------------------------------------------------- /Preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/Preprocess.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/README.md -------------------------------------------------------------------------------- /images/dynamic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/images/dynamic.png -------------------------------------------------------------------------------- /images/iep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/images/iep.png -------------------------------------------------------------------------------- /images/moe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/images/moe.png -------------------------------------------------------------------------------- /lib/__pycache__/nlp.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/lib/__pycache__/nlp.cpython-36.pyc -------------------------------------------------------------------------------- /lib/__pycache__/utils.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/lib/__pycache__/utils.cpython-36.pyc -------------------------------------------------------------------------------- /lib/nlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/lib/nlp.py -------------------------------------------------------------------------------- /lib/svim.sh: -------------------------------------------------------------------------------- 1 | TERM=xterm-256color vim $1 2 | -------------------------------------------------------------------------------- /lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/lib/utils.py -------------------------------------------------------------------------------- /model/ExecutionEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/model/ExecutionEngine.py -------------------------------------------------------------------------------- /model/Program.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/model/Program.py -------------------------------------------------------------------------------- /model/ProgramGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/model/ProgramGenerator.py -------------------------------------------------------------------------------- /model/ResNetFeatureExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/model/ResNetFeatureExtractor.py -------------------------------------------------------------------------------- /model/ResNetTrunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/model/ResNetTrunc.py -------------------------------------------------------------------------------- /model/Tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/model/Tree.py -------------------------------------------------------------------------------- /preprocess/PreprocessData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/preprocess/PreprocessData.py -------------------------------------------------------------------------------- /preprocess/ProgramVocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/preprocess/ProgramVocab.py -------------------------------------------------------------------------------- /preprocess/QAVocab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/preprocess/QAVocab.py -------------------------------------------------------------------------------- /preprocess/__pycache__/PreprocessData.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/preprocess/__pycache__/PreprocessData.cpython-36.pyc -------------------------------------------------------------------------------- /preprocess/__pycache__/PreprocessQA.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/preprocess/__pycache__/PreprocessQA.cpython-36.pyc -------------------------------------------------------------------------------- /svim.sh: -------------------------------------------------------------------------------- 1 | TERM=xterm-256color vim $1 2 | -------------------------------------------------------------------------------- /vis/PlotResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarez5341/Efficient-Dynamic-Batching/HEAD/vis/PlotResults.py --------------------------------------------------------------------------------