Skip to content

Commit

Permalink
해옫ㅇ -> 행동 오차 고침
Browse files Browse the repository at this point in the history
ㅈㄱㄴ
  • Loading branch information
keon authored Nov 20, 2017
1 parent 4d6e004 commit 1c20017
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 1-grid-world/2-value-iteration/value_iteration.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def value_iteration(self):
next_value_table[state[0]][state[1]] = round(max(value_list), 2)
self.value_table = next_value_table

# 현재 가치 함수로부터 해옫ㅇ을 반환
# 현재 가치 함수로부터 행동을 반환
def get_action(self, state):
action_list = []
max_value = -99999
Expand Down

0 comments on commit 1c20017

Please sign in to comment.