eugenevinitsky / sequential_social_dilemma_games

Repo for reproduction of sequential social dilemmas
MIT License
380 stars 134 forks source link

Adjusted cleanup colors for river, stream, and waste cells so that rivers appear light-grey-blue and wastes appear brown when rendered. Fixes #176 #177

Open ldfrancis opened 4 years ago

ldfrancis commented 4 years ago

When the env is rendered, river and stream cells appear brown while waste cells appear light-grey-blue. This results from the rgb color list assigned to this cells in the cleanup color dictionary https://github.com/eugenevinitsky/sequential_social_dilemma_games/blob/9d1809f7b755f38a3a3883e41c4e72eb44bad629/social_dilemmas/envs/cleanup.py#L12-L16

The rgb list, [99, 156, 194], is light grey-blue while [113, 75, 24] is brown. The color dictionary was modified to depict the correct rgb color for light grey-blue and brown (i.e swapping the current values for light grey-blue and brown).

ldfrancis commented 4 years ago

@eugenevinitsky, Please can you help review this?

eugenevinitsky commented 4 years ago

Hi, sorry about this. I don't check this repo very often; unfortunately the colors are correct on my machine. Any ideas why that might be?