Skip to content

Commit

Permalink
reactivate action bag
Browse files Browse the repository at this point in the history
  • Loading branch information
thatguy11325 committed Mar 14, 2024
1 parent 27e52b5 commit d7b3237
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pokemonred_puffer/rewards/baseline.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def get_game_state_reward(self):
# "death_reward": self.died_count,
"badge": self.get_badges() * 5,
# "heal": self.total_healing_rew,
"explore": sum(self.seen_coords.values()) * 0.01,
"explore": sum(self.seen_coords.values()) * 0.012,
# "explore_maps": np.sum(self.seen_map_ids) * 0.0001,
"taught_cut": 4 * int(self.check_if_party_has_cut()),
"cut_coords": sum(self.cut_coords.values()) * 1.0,
Expand All @@ -51,7 +51,7 @@ def get_game_state_reward(self):
"pokemon_menu": self.seen_pokemon_menu * 0.1,
"stats_menu": self.seen_stats_menu * 0.1,
"bag_menu": self.seen_bag_menu * 0.1,
# "action_bag_menu": self.seen_action_bag_menu * 0.1,
"action_bag_menu": self.seen_action_bag_menu * 0.1,
# "blackout_check": self.blackout_check * 0.001,
}

Expand Down

0 comments on commit d7b3237

Please sign in to comment.