[RLlib]: Fix OPE docs. (#27460)

This commit is contained in:
Rohan Potdar 2022-08-11 12:44:22 +05:30 committed by GitHub
parent 894e19f791
commit 600b8d4729
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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},
},
},
)