[RLlib] Small SlateQ example fix. (#26948)

This commit is contained in:
Artur Niederfahrenhorst 2022-07-25 15:12:42 +02:00 committed by GitHub
parent 41c9ef709a
commit b1594260ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -181,7 +181,7 @@ def main():
if args.run == "DQN":
trainer = dqn.DQN(config=config)
else:
trainer = slateq.SlateQTrainer(config=config)
trainer = slateq.SlateQ(config=config)
for i in range(10):
result = trainer.train()
print(pretty_print(result))