Skip to content

Commit

Permalink
Slight changes to initial print statements to re-trigger tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nicku-a committed Nov 14, 2023
1 parent 9b64931 commit 7f45fd0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tutorials/AgileRL/agilerl_maddpg.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

if __name__ == "__main__":
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
print("===== AgileRL Online Multi-Agent Demo =====")
print("===== AgileRL MADDPG Demo =====")

# Define the network configuration
NET_CONFIG = {
Expand Down
2 changes: 1 addition & 1 deletion tutorials/AgileRL/agilerl_matd3.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

if __name__ == "__main__":
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
print("===== AgileRL Online Multi-Agent Demo =====")
print("===== AgileRL MATD3 Demo =====")

# Define the network configuration
NET_CONFIG = {
Expand Down

0 comments on commit 7f45fd0

Please sign in to comment.