Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions sbx/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os

from sbx.bro import BRO
from sbx.crossq import CrossQ
from sbx.ddpg import DDPG
from sbx.dqn import DQN
Expand Down Expand Up @@ -29,5 +30,6 @@ def DroQ(*args, **kwargs):
"SAC",
"TD3",
"TQC",
"BRO",
"CrossQ",
]
3 changes: 3 additions & 0 deletions sbx/bro/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from sbx.bro.bro import BRO

__all__ = ["BRO"]
Loading