Skip to content

Commit

Permalink
Fix epsilon annealing values
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaixhin committed Aug 18, 2016
1 parent 20181f3 commit dc25dad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion async/QAgent.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ local QAgent = require 'async/AsyncAgent'

local QAgent, super = classic.class('QAgent', 'AsyncAgent')

local EPSILON_ENDS = { 0.01, 0.1, 0.5}
local EPSILON_ENDS = { 0.1, 0.01, 0.5}
local EPSILON_PROBS = { 0.4, 0.7, 1 }


Expand Down

0 comments on commit dc25dad

Please sign in to comment.