Engineer1999/Double-Deep-Q-Learning-for-Resource-Allocation

options for q learning network

Opened this issue · 1 comments

Hi, thank you very much for your sharing.
I have a question about the q learning network used in the code. Does it only use double deep q learning? Or can it choose other kinds? I find there are setups for the option of the network in the code.

flags.DEFINE_boolean('dueling', False, 'Whether to use dueling deep q-network')

flags.DEFINE_boolean('double_q', False, 'Whether to use double q-learning')

Thank you very much

As per best I know, it can select the different models by changing the boolean flag.