Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update cql.py #15

Merged
merged 1 commit into from
Feb 10, 2024
Merged
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: 0 additions & 2 deletions algorithms/offline/cql.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,6 @@ class TrainConfig:
normalize: bool = True # Normalize states
normalize_reward: bool = False # Normalize reward
q_n_hidden_layers: int = 3 # Number of hidden layers in Q networks
reward_scale: float = 1.0 # Reward scale for normalization
reward_bias: float = 0.0 # Reward bias for normalization
bc_steps: int = int(0) # Number of BC steps at start
reward_scale: float = 5.0 # Reward scale for normalization
reward_bias: float = -1.0 # Reward bias for normalization
Expand Down
Loading