-
-
Notifications
You must be signed in to change notification settings - Fork 15
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
Evaluation route choice + renaming references of "congestion" game to route_choice for consistency #58
Conversation
hiazmani
commented
May 30, 2024
- Training code for route choice environment
- Renamed the "congestion game" environment (and relevant) files to route_choice for consistency
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you need to have a look under doc/
, too. There surely are mentions to the old name.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, thanks for handling this. The modifications for the json networks were made to separate the reward signal?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me
The modifications in the JSON networks are to allow traffic to flow on both directions of each edge. The original graphs allow for agents to use an edge A-B to travel from A to B or from B to A. This doesn't change much in the smaller graphs (Braess) because no route ever uses the edges in the reversed direction, but it does for the larger (city-inspired) graphs. I added the latency function (which allows for computing the rewards) to the backlinks as well to allow this. Also all the JSON files got "modified" according to Git because the parent directory got renamed from congestion to route_choice. |