-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Refine explore strategy, add prioritized sampling support; add DDQN example; add DQN test (#590) * Runnable. Should setup a benchmark and test performance. * Refine logic * Test DQN on GYM passed * Refine explore strategy * Minor * Minor * Add Dueling DQN in CIM scenario * Resolve PR comments * Add one more explanation * fix env_sampler eval info list issue * update version to 0.3.2a4 --------- Co-authored-by: Huoran Li <[email protected]> Co-authored-by: Jinyu Wang <[email protected]>
- Loading branch information
1 parent
b3c6a58
commit 2977097
Showing
25 changed files
with
541 additions
and
334 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
# Licensed under the MIT license. | ||
|
||
|
||
__version__ = "0.3.2a3" | ||
__version__ = "0.3.2a4" | ||
|
||
__data_version__ = "0.2" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,10 @@ | ||
# Copyright (c) Microsoft Corporation. | ||
# Licensed under the MIT license. | ||
|
||
from .scheduling import AbsExplorationScheduler, LinearExplorationScheduler, MultiLinearExplorationScheduler | ||
from .strategies import epsilon_greedy, gaussian_noise, uniform_noise | ||
from .strategies import EpsilonGreedy, ExploreStrategy, LinearExploration | ||
|
||
__all__ = [ | ||
"AbsExplorationScheduler", | ||
"LinearExplorationScheduler", | ||
"MultiLinearExplorationScheduler", | ||
"epsilon_greedy", | ||
"gaussian_noise", | ||
"uniform_noise", | ||
"ExploreStrategy", | ||
"EpsilonGreedy", | ||
"LinearExploration", | ||
] |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.