├── .gitattributes ├── README.md ├── __pycache__ └── mnist_placement.cpython-36.pyc ├── devices.py ├── mnist_placement.py ├── seq2seq_unroll.py ├── util ├── get_op.py ├── getuniquewords.py ├── mnist.txt ├── mnist_get_op.txt ├── mostfrequentwords.py ├── nmt_get_op.txt └── nmt_train.txt └── vocab /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrajeet95/Device-Placement-Optimization-with-Reinforcement-Learning/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrajeet95/Device-Placement-Optimization-with-Reinforcement-Learning/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/mnist_placement.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrajeet95/Device-Placement-Optimization-with-Reinforcement-Learning/HEAD/__pycache__/mnist_placement.cpython-36.pyc -------------------------------------------------------------------------------- /devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrajeet95/Device-Placement-Optimization-with-Reinforcement-Learning/HEAD/devices.py -------------------------------------------------------------------------------- /mnist_placement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrajeet95/Device-Placement-Optimization-with-Reinforcement-Learning/HEAD/mnist_placement.py -------------------------------------------------------------------------------- /seq2seq_unroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrajeet95/Device-Placement-Optimization-with-Reinforcement-Learning/HEAD/seq2seq_unroll.py -------------------------------------------------------------------------------- /util/get_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrajeet95/Device-Placement-Optimization-with-Reinforcement-Learning/HEAD/util/get_op.py -------------------------------------------------------------------------------- /util/getuniquewords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrajeet95/Device-Placement-Optimization-with-Reinforcement-Learning/HEAD/util/getuniquewords.py -------------------------------------------------------------------------------- /util/mnist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrajeet95/Device-Placement-Optimization-with-Reinforcement-Learning/HEAD/util/mnist.txt -------------------------------------------------------------------------------- /util/mnist_get_op.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrajeet95/Device-Placement-Optimization-with-Reinforcement-Learning/HEAD/util/mnist_get_op.txt -------------------------------------------------------------------------------- /util/mostfrequentwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrajeet95/Device-Placement-Optimization-with-Reinforcement-Learning/HEAD/util/mostfrequentwords.py -------------------------------------------------------------------------------- /util/nmt_get_op.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrajeet95/Device-Placement-Optimization-with-Reinforcement-Learning/HEAD/util/nmt_get_op.txt -------------------------------------------------------------------------------- /util/nmt_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrajeet95/Device-Placement-Optimization-with-Reinforcement-Learning/HEAD/util/nmt_train.txt -------------------------------------------------------------------------------- /vocab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrajeet95/Device-Placement-Optimization-with-Reinforcement-Learning/HEAD/vocab --------------------------------------------------------------------------------