Open KK666-AI opened 3 years ago
action_interval=2 means that each 2*10 = 20 seconds, the agent makes a decision, you can try different integer action_interval values (for example, 1, 2,..), but please be notified the minimum action_interval = 1 (make a decision every 10 seconds).
thanks, i see. according to the setting, which action_interval
will be suitable for the problem? Any suggestions based on the best of your knowledge?
Dear author,
I notice that in the demo DQN example, there is a hyperparameter
action_interval
, its default value is 2. If that, it will break up the assumption of Markov Decision Process (MDP), i.e., thenext state
for each action is not the exactnext state
. Also, what's the suggestedaction_interval
will be good enough for the specific problem?