forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RLlib] RLModule API:
SelfSupervisedLossAPI
for RLModules that brin…
…g their own loss (algo independent). (ray-project#47581) Signed-off-by: ujjawal-khare <ujjawal.khare@dream11.com>
- Loading branch information
1 parent
6d9bef9
commit 3251d2c
Showing
2 changed files
with
7 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
from ray.rllib.core.rl_module.apis.inference_only_api import InferenceOnlyAPI | ||
from ray.rllib.core.rl_module.apis.self_supervised_loss_api import SelfSupervisedLossAPI | ||
from ray.rllib.core.rl_module.apis.target_network_api import TargetNetworkAPI | ||
from ray.rllib.core.rl_module.apis.value_function_api import ValueFunctionAPI | ||
|
||
|
||
__all__ = [ | ||
"InferenceOnlyAPI", | ||
"SelfSupervisedLossAPI", | ||
"TargetNetworkAPI", | ||
"ValueFunctionAPI", | ||
] |
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