Skip to content

Commit

Permalink
[RLlib]: Fix OPE docs. (ray-project#27460)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rohan138 committed Aug 11, 2022
1 parent 894e19f commit 600b8d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/source/rllib/rllib-offline.rst
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,11 @@ We can now train a DQN algorithm offline and evaluate it using OPE:
"wis": {"type": WeightedImportanceSampling},
"dm_fqe": {
"type": DirectMethod,
"q_model_config": {"type": FQETorchModel, "tau": 0.05},
"q_model_config": {"type": FQETorchModel, "polyak_coef": 0.05},
},
"dr_fqe": {
"type": DoublyRobust,
"q_model_config": {"type": FQETorchModel, "tau": 0.05},
"q_model_config": {"type": FQETorchModel, "polyak_coef": 0.05},
},
},
)
Expand Down

0 comments on commit 600b8d4

Please sign in to comment.