├── .gitignore ├── LICENSE.md ├── README.md ├── environment.yml ├── figures ├── a3c-entropy.png ├── a3c.png ├── bad-noisynet-a3c.png ├── collapse-noisynet-a3c.png └── good-noisynet-a3c.png ├── main.py ├── model.py ├── optim.py ├── test.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/NoisyNet-A3C/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/NoisyNet-A3C/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/NoisyNet-A3C/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/NoisyNet-A3C/HEAD/environment.yml -------------------------------------------------------------------------------- /figures/a3c-entropy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/NoisyNet-A3C/HEAD/figures/a3c-entropy.png -------------------------------------------------------------------------------- /figures/a3c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/NoisyNet-A3C/HEAD/figures/a3c.png -------------------------------------------------------------------------------- /figures/bad-noisynet-a3c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/NoisyNet-A3C/HEAD/figures/bad-noisynet-a3c.png -------------------------------------------------------------------------------- /figures/collapse-noisynet-a3c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/NoisyNet-A3C/HEAD/figures/collapse-noisynet-a3c.png -------------------------------------------------------------------------------- /figures/good-noisynet-a3c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/NoisyNet-A3C/HEAD/figures/good-noisynet-a3c.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/NoisyNet-A3C/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/NoisyNet-A3C/HEAD/model.py -------------------------------------------------------------------------------- /optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/NoisyNet-A3C/HEAD/optim.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/NoisyNet-A3C/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/NoisyNet-A3C/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kaixhin/NoisyNet-A3C/HEAD/utils.py --------------------------------------------------------------------------------