-
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 e…
…xample; 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
- Loading branch information
Showing
23 changed files
with
537 additions
and
330 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 |
---|---|---|
@@ -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.