├── .gitignore ├── LICENSE ├── RBFDQN.py ├── README.md ├── bandit ├── ackley_problem.py ├── main.py └── xsinx_problem.py ├── buffer_class.py ├── buffer_profile.py ├── convert_rbf.py ├── plot.py ├── plot_n.py ├── rbf_hyper_parameters ├── 00.hyper ├── 10.hyper ├── 20.hyper ├── 30.hyper ├── 40.hyper ├── 50.hyper ├── 60.hyper ├── 70.hyper ├── 80.hyper ├── 81.hyper ├── 82.hyper ├── 83.hyper └── 84.hyper ├── requirements.txt └── utils_for_q_learning.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /RBFDQN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/RBFDQN.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/README.md -------------------------------------------------------------------------------- /bandit/ackley_problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/bandit/ackley_problem.py -------------------------------------------------------------------------------- /bandit/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/bandit/main.py -------------------------------------------------------------------------------- /bandit/xsinx_problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/bandit/xsinx_problem.py -------------------------------------------------------------------------------- /buffer_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/buffer_class.py -------------------------------------------------------------------------------- /buffer_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/buffer_profile.py -------------------------------------------------------------------------------- /convert_rbf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/convert_rbf.py -------------------------------------------------------------------------------- /plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/plot.py -------------------------------------------------------------------------------- /plot_n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/plot_n.py -------------------------------------------------------------------------------- /rbf_hyper_parameters/00.hyper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/rbf_hyper_parameters/00.hyper -------------------------------------------------------------------------------- /rbf_hyper_parameters/10.hyper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/rbf_hyper_parameters/10.hyper -------------------------------------------------------------------------------- /rbf_hyper_parameters/20.hyper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/rbf_hyper_parameters/20.hyper -------------------------------------------------------------------------------- /rbf_hyper_parameters/30.hyper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/rbf_hyper_parameters/30.hyper -------------------------------------------------------------------------------- /rbf_hyper_parameters/40.hyper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/rbf_hyper_parameters/40.hyper -------------------------------------------------------------------------------- /rbf_hyper_parameters/50.hyper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/rbf_hyper_parameters/50.hyper -------------------------------------------------------------------------------- /rbf_hyper_parameters/60.hyper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/rbf_hyper_parameters/60.hyper -------------------------------------------------------------------------------- /rbf_hyper_parameters/70.hyper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/rbf_hyper_parameters/70.hyper -------------------------------------------------------------------------------- /rbf_hyper_parameters/80.hyper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/rbf_hyper_parameters/80.hyper -------------------------------------------------------------------------------- /rbf_hyper_parameters/81.hyper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/rbf_hyper_parameters/81.hyper -------------------------------------------------------------------------------- /rbf_hyper_parameters/82.hyper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/rbf_hyper_parameters/82.hyper -------------------------------------------------------------------------------- /rbf_hyper_parameters/83.hyper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/rbf_hyper_parameters/83.hyper -------------------------------------------------------------------------------- /rbf_hyper_parameters/84.hyper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/rbf_hyper_parameters/84.hyper -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils_for_q_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kavosh8/RBFDQN_pytorch/HEAD/utils_for_q_learning.py --------------------------------------------------------------------------------