├── .gitignore ├── LICENSE ├── README.md ├── chess ├── README_CHESS.md ├── launch │ ├── test_models.sh │ └── train_models.sh ├── make_table.py ├── models │ ├── feed_forward_net.py │ └── recurrent_net.py ├── train.py ├── utils.py └── warmup.py ├── data └── README_DATA.md ├── mazes ├── README_MAZES.md ├── launch │ └── train_models.sh ├── make_table.py ├── models │ ├── recur_resnet_segment.py │ └── resnet_segment.py ├── train.py ├── utils.py └── warmup.py ├── prefix_sums ├── README_PREFIXSUMS.md ├── launch │ ├── test_models.sh │ └── train_models.sh ├── make_table.py ├── models │ ├── feed_forward_dilated_net.py │ ├── feed_forward_net.py │ ├── recurrent_dilated_net.py │ └── recurrent_net.py ├── run_tests.py ├── train.py ├── utils.py └── warmup.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/README.md -------------------------------------------------------------------------------- /chess/README_CHESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/chess/README_CHESS.md -------------------------------------------------------------------------------- /chess/launch/test_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/chess/launch/test_models.sh -------------------------------------------------------------------------------- /chess/launch/train_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/chess/launch/train_models.sh -------------------------------------------------------------------------------- /chess/make_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/chess/make_table.py -------------------------------------------------------------------------------- /chess/models/feed_forward_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/chess/models/feed_forward_net.py -------------------------------------------------------------------------------- /chess/models/recurrent_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/chess/models/recurrent_net.py -------------------------------------------------------------------------------- /chess/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/chess/train.py -------------------------------------------------------------------------------- /chess/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/chess/utils.py -------------------------------------------------------------------------------- /chess/warmup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/chess/warmup.py -------------------------------------------------------------------------------- /data/README_DATA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/data/README_DATA.md -------------------------------------------------------------------------------- /mazes/README_MAZES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/mazes/README_MAZES.md -------------------------------------------------------------------------------- /mazes/launch/train_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/mazes/launch/train_models.sh -------------------------------------------------------------------------------- /mazes/make_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/mazes/make_table.py -------------------------------------------------------------------------------- /mazes/models/recur_resnet_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/mazes/models/recur_resnet_segment.py -------------------------------------------------------------------------------- /mazes/models/resnet_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/mazes/models/resnet_segment.py -------------------------------------------------------------------------------- /mazes/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/mazes/train.py -------------------------------------------------------------------------------- /mazes/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/mazes/utils.py -------------------------------------------------------------------------------- /mazes/warmup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/mazes/warmup.py -------------------------------------------------------------------------------- /prefix_sums/README_PREFIXSUMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/prefix_sums/README_PREFIXSUMS.md -------------------------------------------------------------------------------- /prefix_sums/launch/test_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/prefix_sums/launch/test_models.sh -------------------------------------------------------------------------------- /prefix_sums/launch/train_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/prefix_sums/launch/train_models.sh -------------------------------------------------------------------------------- /prefix_sums/make_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/prefix_sums/make_table.py -------------------------------------------------------------------------------- /prefix_sums/models/feed_forward_dilated_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/prefix_sums/models/feed_forward_dilated_net.py -------------------------------------------------------------------------------- /prefix_sums/models/feed_forward_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/prefix_sums/models/feed_forward_net.py -------------------------------------------------------------------------------- /prefix_sums/models/recurrent_dilated_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/prefix_sums/models/recurrent_dilated_net.py -------------------------------------------------------------------------------- /prefix_sums/models/recurrent_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/prefix_sums/models/recurrent_net.py -------------------------------------------------------------------------------- /prefix_sums/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/prefix_sums/run_tests.py -------------------------------------------------------------------------------- /prefix_sums/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/prefix_sums/train.py -------------------------------------------------------------------------------- /prefix_sums/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/prefix_sums/utils.py -------------------------------------------------------------------------------- /prefix_sums/warmup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/prefix_sums/warmup.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aks2203/easy-to-hard/HEAD/requirements.txt --------------------------------------------------------------------------------